/* ===== BASE STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-black: #000000;
    --brand-bar: #292929;
    --brand-accent: #ffffff;
    /* Replaced yellow with brand white */
    --accent: #ffffff;
    --accent-dim: #e0e0e0;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-300: #b0b0b0;
    --gray-500: #6b6b6b;
    --gray-700: #3a3a3a;
    --gray-900: #1a1a1a;
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--white);
    background-color: var(--brand-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a:hover{
    color:unset;
}

.section-padding {
    padding: 60px 0;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1300px;
    }
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    transition: var(--transition-smooth);
    /*background:#fff;*/
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #fff;*/

    transition: var(--transition-smooth);
    z-index: -1;
}

.site-header.scrolled::before {
    background: #fff;

}

.site-header.scrolled {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 69px;
    width: auto;
    /*background:#fff;*/
    transition: var(--transition-fast);
    margin-top: -1px;
}



/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-nav a {
    position: relative;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    border-radius: 100px;
    border: 1px solid #000;
    transition: var(--transition-fast);
    box-shadow: 0 2px 2px #2e2e2e;
}

/*.header-nav a::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 2px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%) scaleX(0);*/
/*    width: 20px;*/
/*    height: 2px;*/
/*    background: #000;*/
/*    border-radius: 2px;*/
/*    transition: var(--transition-fast);*/
/*}*/



.header-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.header-nav a.active {
    color: #000;
}

.header-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    /*background: var(--accent);*/
    color: var(--brand-black);
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--white);
    color: var(--brand-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-cta .cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--brand-black);
    color: var(--accent);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.btn-cta:hover .cta-icon {
    background: var(--accent);
    color: var(--brand-black);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span {

    background: #fff;

}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO / BANNER SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay over video */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: 0.1;
}

/* Mesh Gradient Accent */
.hero-gradient-accent {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: floatGlow 8s ease-in-out infinite;
}

.hero-gradient-accent-2 {
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 30px;
    padding-top: 80px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #000;
    border-radius: 100px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

.hero-badge span {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-badge .badge-highlight {
    color: #000;
    font-weight: 700;
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-title-line-2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.7s forwards;
}

.text-accent {
    color: var(--accent);
}

/* Sparkle icon */
.sparkle-icon {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.sparkle-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
    animation: sparkleRotate 4s ease-in-out infinite;
}

@keyframes sparkleRotate {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(10deg) scale(1.15);
    }

    75% {
        transform: rotate(-5deg) scale(0.95);
    }
}

/* Oval Image */
.hero-oval-wrapper {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    vertical-align: middle;
}

.hero-oval {
    width: 120px;
    height: 55px;
    border-radius: 100px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.hero-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Logo */

.logo-reveal {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Curtain layer */
.logo-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    transform: translateY(0%);
    animation: curtainPremium 1.2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}



/* Logo */
.hero-logo-img {
    display: block;
    width: 220px;
    position: relative;
    z-index: 1;

    opacity: 0;
    transform: translateY(20px) scale(0.98);

    animation: logoFadeUp 2.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
    animation-delay: 0.25s;
}

/* Curtain movement */
@keyframes curtainPremium {
    0% {
        transform: translateY(0%);
    }
    80% {
        transform: translateY(105%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Logo smooth entry */
@keyframes logoFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo-wrapper {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-logo-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    /*filter: brightness(0) invert(1);*/
    transition: var(--transition-fast);
}

/* Hero Description */
.hero-description {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
    font-weight:600;
    color: #000;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.9s forwards;
}

/* Hero CTA */
.hero-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 1.1s forwards;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--brand-black);
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
    color: var(--brand-black);
}

.btn-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--brand-black);
    color: var(--accent);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.btn-hero:hover .btn-hero-icon {
    transform: rotate(45deg);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    color: #000;
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #000;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.5s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 3px;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

/* ===== CURTAIN REVEAL ANIMATION ===== */
.curtain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: curtainReveal 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
    pointer-events: none;
}

.curtain-overlay .curtain-logo {
    max-width: 220px;
    width: 60%;
    filter: brightness(0) invert(1);
    opacity: 1;
    animation: curtainLogoFade 0.8s ease 0.2s forwards;
}

@keyframes curtainReveal {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes curtainLogoFade {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .site-header {
        padding: 0 24px;
    }

    .hero-logo-img {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 40px;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-nav.open {
        right: 0;
    }

    .header-nav a {
        font-size: 1rem;
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        color:#fff;
    }
    .header-nav a.active {
    color: #fff;
}

    .hamburger {
        display: flex;
    }

    .btn-cta.desktop-only {
        display: none;
    }

    .hero-logo-img {
        max-width: 280px;
    }

    .hero-content {
        padding: 0 20px;
        padding-top: 80px;
    }

    .hero-badge {
        padding: 6px 16px;
    }

    .hero-badge span {
        font-size: 0.72rem;
    }

    .hero-cta-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-description {
        font-size: 0.95rem;
    }



    .sparkle-icon svg {
        width: 25px;
        height: 25px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0 16px;
    }

    .header-inner {
        height: 65px;
    }

    .header-logo img {
        height: 35px;
    }

    .hero-title,
    .hero-title-line-2 {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 0.88rem;
        margin-bottom: 30px;
    }

    .btn-hero,
    .btn-outline {
        padding: 14px 28px;
        font-size: 0.82rem;
    }
}

/* ========================================
   CLIENT LOGO SECTION
   ======================================== */
.client-section {
    padding: 60px 0;
    background-color: var(--brand-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.client-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.client-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logo-item {
    flex: 0 0 auto;
    max-width: 160px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.client-logo-item img {
    height: 100%;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
    transition: var(--transition-fast);
}

.client-logo-item:hover img {
    filter: grayscale(100%) brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .client-section {
        padding: 50px 0;
    }

    .client-logos-wrapper {
        justify-content: center;
        gap: 35px;
    }

    .client-logo-item {
        max-width: 130px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .client-section {
        padding: 40px 0;
    }

    .client-logos-wrapper {
        gap: 25px;
    }

    .client-logo-item {
        max-width: 100px;
        height: 28px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    position: relative;
    padding: 60px 40px;
    background: var(--brand-black);
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* --- Left Column --- */
.about-left {
    padding-top: 10px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.about-label span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.about-heading {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.about-heading-italic {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.about-desc {
    font-size: 19px;
    color: #dadada;
    line-height: 28px;
    margin-bottom: 40px;
    max-width: 340px;
    font-weight: 400;
}

/* Stats */
.about-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.about-stat-number {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.about-stat-text {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Divider */
.about-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

/* Team Avatars */
.about-avatars {
    display: flex;
    align-items: center;
}

.about-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--brand-black);
    object-fit: cover;
    margin-left: -10px;
    transition: var(--transition-fast);
}

.about-avatars img:first-child {
    margin-left: 0;
}

.about-avatars img:hover {
    transform: translateY(-4px);
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.3);
}

.avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-bar);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-left: -10px;
    border: 2px solid var(--brand-black);
}

/* --- Center Column — Image --- */
.about-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

/* --- Right Column --- */
.about-right {
    padding-top: 10px;
}

/* Year + Awards Block */
.about-year-block {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 35px;
    position: relative;
}

.about-year-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid #292929;
    background: transparent;
    position: relative;
}

.year-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.year-value {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.about-awards-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--white);
    margin-left: -9px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.about-awards-circle:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.awards-label {
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

.awards-value {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-black);
    line-height: 1;
}

/* Service Cards */
.about-service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    background: var(--brand-bar);
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.about-service-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.about-service-card:hover .service-card-icon {
    background: var(--white);
    color: var(--brand-black);
}

.service-card-content h4 {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.service-card-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 0;
}

/* About CTA Button */
.btn-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--brand-bar);
    color: var(--white);
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 10px;
}

.btn-about-cta:hover {
    background: var(--white);
    color: var(--brand-black);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.btn-about-cta:hover .btn-about-icon {
    background: var(--brand-black);
    color: var(--white);
}

/* --- About Responsive --- */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 30px;
    }

    .about-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-center {
        order: -1;
        grid-column: 1 / -1;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-center {
        order: 0;
    }

    .about-image-wrapper {
        max-width: 100%;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .about-year-block {
        justify-content: center;
    }

    .about-year-circle {
        width: 130px;
        height: 130px;
    }

    .year-value {
        font-size: 2.4rem;
    }

    .about-awards-circle {
        width: 100px;
        height: 100px;
    }

    .awards-value {
        font-size: 1.6rem;
    }

    .btn-about-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-heading {
        font-size: 1.5rem;
    }

    .about-stat-number {
        font-size: 2.2rem;
    }

    .about-year-circle {
        width: 110px;
        height: 110px;
    }

    .year-value {
        font-size: 2rem;
    }

    .about-awards-circle {
        width: 85px;
        height: 85px;
    }

    .awards-value {
        font-size: 1.3rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    position: relative;
    padding: 40px 40px 60px;
    background: var(--brand-black);
    overflow: hidden;
}

.services-outer {
    max-width: 1400px;
    margin: 0 auto;
}

.services-inner {
    position: relative;
    background: var(--brand-bar);
    border-radius: 30px;
    padding: 60px 60px 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Decorative Shape */
.services-deco-shape {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    display: none;
}

.services-deco-shape::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Section Label */
.services-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: center;
    width: 100%;
}

.services-label span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

/* Services Heading */
.services-heading-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.services-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.services-heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.services-heading-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.services-heading-thumbs {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.services-heading-thumbs img {
    width: 50px;
    height: 34px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-heading-italic {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
}

/* Services Carousel */
.services-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.services-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

/* Service Card */
.services-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    scroll-snap-align: start;
}

.services-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
}

.services-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-card:hover .services-card-img img {
    transform: scale(1.08);
}

.services-card-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.services-card:hover .services-card-icon {
    background: var(--white);
    color: var(--brand-black);
    border-color: var(--white);
}

.services-card-arrow {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-black);
    font-size: 0.75rem;
    transition: var(--transition-fast);
    opacity: 0;
    transform: translateY(8px);
}

.services-card:hover .services-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

.services-card-arrow:hover {
    background: var(--brand-bar);
    color: var(--white);
    transform: rotate(45deg) !important;
}

.services-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.services-card-desc {
    font-size: 0.95rem;
    color: #dadada;
    line-height: 1.6;
    margin: 0;
}

/* Carousel Navigation Buttons */
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-nav-btn:hover {
    background: var(--white);
    color: var(--brand-black);
    border-color: var(--white);
}

.services-nav-prev {
    left: -20px;
}

.services-nav-next {
    right: -20px;
}

/* Bottom CTA Bar */
.services-cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    max-width: 550px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.services-cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    background: var(--white);
    color: var(--brand-black);
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
}

.services-cta-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.services-cta-link {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition-fast);
}

.services-cta-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Services Responsive --- */
@media (max-width: 1024px) {
    .services-section {
        padding: 30px 24px 80px;
    }

    .services-inner {
        padding: 50px 40px 40px;
        border-radius: 24px;
    }

    .services-heading,
    .services-heading-text,
    .services-heading-italic {
        font-size: 2rem;
    }

    .services-card {
        flex: 0 0 calc(50% - 12px);
    }

    .services-nav-prev {
        left: 8px;
    }

    .services-nav-next {
        right: 8px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 20px 16px 60px;
    }

    .services-inner {
        padding: 40px 24px 30px;
        border-radius: 20px;
    }

    .services-heading,
    .services-heading-text,
    .services-heading-italic {
        font-size: 1.6rem;
    }

    .services-heading-thumbs img {
        width: 36px;
        height: 26px;
    }

    .services-card {
        flex: 0 0 85%;
        min-width: 240px;
    }

    .services-card-img {
        height: 180px;
    }

    .services-cta-bar {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px;
        text-align: center;
    }

    .services-nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {

    .services-heading,
    .services-heading-text,
    .services-heading-italic {
        font-size: 1.3rem;
    }

    .services-card {
        flex: 0 0 90%;
    }

    .services-heading-row {
        gap: 8px;
    }
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonial-section {
    position: relative;
    padding: 0px 20px;
    background-color: var(--brand-black);
    background-image: url('../assets/images/testimonials/bg-graph.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 600px;
    text-align: center;
    overflow: hidden;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.testimonial-label svg {
    fill: var(--brand-accent);
}

.testimonial-label span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-heading {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--white);
}

.testimonial-heading .text-brand {
    color: var(--brand-accent);
}

/* Overlapping Avatars */
.testimonial-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.avatar-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin: 0 -10px;
    transition: var(--transition-fast);
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-item.center {
    width: 90px;
    height: 90px;
    z-index: 2;
    border-color: var(--brand-accent);
    transform: translateY(-5px);
}

.avatar-item:hover {
    transform: scale(1.1) translateY(-5px);
    z-index: 3;
}

/* Quote and Text */
.testimonial-content {
    position: relative;
    padding: 0 40px;
}

.testimonial-quote-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stars */
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.testimonial-stars i {
    color: var(--brand-accent);
    font-size: 0.9rem;
}

/* Info */
.testimonial-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 30px 20px;
        background-size: 400px;
    }

    .testimonial-heading {
        font-size: 25px;
    }

    .testimonial-text {
        font-size: 1rem;
        padding: 0;
    }

    .avatar-item {
        width: 50px;
        height: 50px;
    }

    .avatar-item.center {
        width: 70px;
        height: 70px;
    }
}

/* Slick Slider Custom Styles */
.testimonial-slider .slick-dots {
    bottom: -40px;
}

.testimonial-slider .slick-dots li {
    margin: 0 4px;
}

.testimonial-slider .slick-dots li button:before {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition-fast);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    background: var(--brand-accent);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--brand-accent);
}

.testimonial-slide {
    outline: none;
    cursor: grab;
}

.testimonial-slide:active {
    cursor: grabbing;
}

/* Ensure fade transition is smooth */
.testimonial-slider .slick-list {
    overflow: visible;
}

/* Animations for slick active slide */
.testimonial-slide .testimonial-heading,
.testimonial-slide .testimonial-avatars,
.testimonial-slide .testimonial-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.testimonial-slide.slick-active .testimonial-heading,
.testimonial-slide.slick-active .testimonial-avatars,
.testimonial-slide.slick-active .testimonial-content {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-slide.slick-active .testimonial-heading {
    transition-delay: 0.2s;
}

.testimonial-slide.slick-active .testimonial-avatars {
    transition-delay: 0.4s;
}

.testimonial-slide.slick-active .testimonial-content {
    transition-delay: 0.6s;
}

/* ========================================
   GLOBAL ANIMATIONS (Intersection Observer)
   ======================================== */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 0 0;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-black);
    padding-top: 60px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 25px;
}

.contact-label span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.contact-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 45px;
    color: var(--white);
}

.contact-details {
    display: flex;
    gap: 60px;
    margin-bottom: 29px;
    position: absolute;
    bottom: 0;
    left: 47px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    padding-left: 20px;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 35px;
    background: #7a7373;
}

.item-label {
    font-size: 0.85rem;
    color: rgb(255 255 255 / 72%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-value {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.contact-image-box {
    position: relative;
    max-width: 520px;
    border-radius: 20px;
    overflow: visible;
    /* to allow arrow to float out slightly */
    margin-top: 20px;
}

.contact-main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}



.contact-arrow {
    position: absolute;
    top: -30px;
    right: -20px;
    z-index: 2;
    animation: floatArrow 4s ease-in-out infinite;
}

@keyframes floatArrow {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(15px) rotate(5deg);
    }
}

/* --- Contact Form Wrapper --- */
.contact-form-wrapper {
    background-color: var(--brand-bar);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.form-title {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.form-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 400px;
}

.form-group-custom {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group-custom input,
.form-group-custom textarea, .form-group-custom select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 0;
    color: var(--white);
    font-size: 1.05rem;
    font-family: "Figtree", sans-serif;
    transition: var(--transition-fast);
}

.form-group-custom option{
    color:#000;
}



.form-group-custom input:focus,
.form-group-custom textarea:focus {
    outline: none;
    border-bottom-color: var(--brand-accent);
}

.form-group-custom input::placeholder,
.form-group-custom textarea::placeholder {
    color: #fff;
}

/* Date Picker Styling */
.form-group-date {
    position: relative;
}

.form-group-date input[type="date"] {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 0;
    color: var(--white);
    font-size: 1.05rem;
    font-family: "Figtree", sans-serif;
    transition: var(--transition-fast);
    cursor: pointer;
    color-scheme: dark;
}

.form-group-date input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.form-group-date input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group-date input[type="date"]:focus {
    outline: none;
}

.form-group-date .date-label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.05rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group-date input[type="date"]:focus~.date-label,
.form-group-date input[type="date"]:valid~.date-label {
    top: 2px;
    transform: translateY(0);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.btn-appointment {
    width: 100%;
    padding: 18px 30px;
    background-color: var(--brand-black);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 15px;
}

.btn-appointment:hover {
    background-color: var(--white);
    color: var(--brand-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

/* --- Contact Responsive --- */
@media (max-width: 1200px) {
    .contact-form-wrapper {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-left-col {
        margin-bottom: 0px;
    }

    .contact-details {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 24px;
    }

    .contact-details {
        flex-direction: column;
        gap: 25px;
    }

    .contact-item {
        padding-left: 0;
    }

    .contact-item::before {
        display: none;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }

    .contact-arrow {
        display: none;
    }
}

.contact-container {
    background-color: #151515;
    border-color: #FFFFFF0D;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 20px;
}

.contact-image-box::before {
    background-image: linear-gradient(180deg, #00000052 33%, #000000 89%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-image-box {
    border-radius: 20px;
    overflow: hidden;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 60px 0;
    background-color: var(--brand-black);
    position: relative;
    overflow: hidden;
}

.blog-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.blog-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 20px;
}

.blog-label span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: 0;
}

.blog-header-right {
    max-width: 400px;
}

.blog-header-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--brand-bar);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-date-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #000000e0;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.blog-meta-category {
    color: #ffffff;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.blog-card-title a {
    color: var(--white);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--gray-300);
}

.blog-card-footer {
    margin-top: auto;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-fast);
    text-decoration: none;
}

.read-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #ffffff;
    color: #000000;
    border-radius: 6px;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.btn-read-more:hover .read-more-icon {
    background: var(--white);
    transform: translateX(5px);
}

/* Responsive Blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-section {
        padding: 60px 0;
    }
}

/* ===== FOOTER SECTION ===== */
.site-footer {
    position: relative;
    padding: 0 0 30px;
    background-color: var(--brand-black);
    color: var(--white);
    overflow: hidden;
    z-index: 10;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    background: #fff;
    padding: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--white);
    color: var(--brand-black);
    transform: translateY(-5px);
    border-color: var(--white);
}

.footer-divider-top {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 50%, transparent);
    margin-bottom: 60px;
}

.footer-main {
    margin-bottom: 60px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--gray-300);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact-item .footer-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-item .footer-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--gray-300);
}

.footer-newsletter-desc {
    color: var(--gray-300);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.newsletter-input-group {
    position: relative;
    width: 100%;
}

.newsletter-input-group input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    background: var(--brand-bar);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-input-group input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-newsletter {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: calc(100% - 10px);
    background: #d4ff5b;
    /* Using a subtle lime from reference but keeping it unique, wait user said no green */
    background: var(--white);
    color: var(--brand-black);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-newsletter:hover {
    background: var(--gray-300);
    transform: scale(0.95);
}

.footer-bottom {
    text-align: center;
}

.footer-divider-bottom {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.footer-copyright a {
    color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
}



/* pricing */

.page-hero {
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}
.page-hero p{
        color: #fff !important;
    }

.breadcrumb-custom {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    color: var(--text-light);
    font-size: 15px;
}

.breadcrumb-custom li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb-custom li a:hover {
    color: var(--primary);
}

.breadcrumb-custom li.active {
    color: #fff;
}

.breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, .3);
}

/* ── PRICING SECTION ── */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

.section-title span {
    color: var(--primary);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 56px;
}

.toggle-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-light);
    cursor: pointer;
    transition: color .2s;
}

.toggle-label.active {
    color: var(--white);
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.switch input {
    display: none;
}

.slider-sw {
    position: absolute;
    inset: 0;
    background: rgba(255, 92, 53, .25);
    border-radius: 28px;
    cursor: pointer;
    transition: background .3s;
}

.slider-sw::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 4px;
    left: 4px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform .3s;
}

.switch input:checked+.slider-sw::before {
    transform: translateX(28px);
}

.switch input:checked+.slider-sw {
    background: rgba(255, 92, 53, .35);
}

/* ── Card base ───────────────────────────────────────── */
.pricing-card {
  background: #0d1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 28px 24px 70px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  --accent: #00d4ff;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ── Tier accent colors ───────────────────────────────── */
.pricing-card:nth-child(1) { --accent: #00d4ff; }
.pricing-card:nth-child(2) { --accent: #00ff41; }
.pricing-card.featured      { --accent: #ffaa00; }

.pricing-card.tier-1 { --accent: #00d4ff; }
.pricing-card.tier-2 { --accent: #00ff41; }
.pricing-card.tier-3 { --accent: #ffaa00; }

/* ── Corner bracket decorations ──────────────────────── */
.pc-corner {
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: var(--accent);
  border-style: solid;
}
.pc-corner.tl { top: 0; left: 0;  border-width: 3px 0 0 3px; }
.pc-corner.tr { top: 0; right: 0; border-width: 3px 3px 0 0; }
.pc-corner.bl { bottom: 0; left: 0;  border-width: 0 0 3px 3px; }
.pc-corner.br { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

/* ── Card header row ─────────────────────────────────── */
.card-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

/* ── Icon circle ─────────────────────────────────────── */
.plan-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.plan-icon svg {
  width: 24px;
  height: 24px;
}

/* ── Plan name & sub ─────────────────────────────────── */
.card-plan-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.card-plan-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

/* ── Divider ─────────────────────────────────────────── */
.divider-line {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  opacity: 0.35;
  margin: 16px 0;
}

/* ── Feature list from {!! description !!} ───────────── */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
}

.pricing-card ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ── Price badge (bottom-right) ──────────────────────── */
.price-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--accent);
  padding: 10px 18px;
  border-radius: 4px 0 4px 0;
  text-align: center;
  min-width: 90px;
}

.price-amount {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.price-period {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Popular badge ───────────────────────────────────── */
.popular-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 3px 10px;
    background: #ffaa00;
}

/* team section */
.team-wrapper {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    background: #1c1c1c;
}

.team-img {
    position: relative;
    z-index: 1;
    height:500px;
}

.team-img img {
    mask-image: url(../assets/images/team-mask1.png);
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:768px){
    .team-img{
        height:300px;
    }
    .team-img img{
        height:100%;
        width:100%;
        object-fit:cover;
    }
    
}


.team-detail {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.team-detail h2 {
    font-size: 24px;
    margin-bottom: 0;
}





/* Responsive Footer */
@media (max-width: 991px) {
    .footer-col {
        margin-bottom: 40px;
    }


}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-divider-top {
        margin-bottom: 40px;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-grid-section {
    padding: 100px 0;
    background-color: var(--brand-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-item {
    background-color: var(--brand-bar);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    transition: var(--transition-fast);
}

.service-card-item:hover .service-icon-box {
    background: var(--white);
    color: var(--brand-black);
    transform: scale(1.1) rotate(5deg);
}

.service-card-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card-item p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.service-learn-more i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.service-card-item:hover .service-learn-more {
    gap: 15px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--brand-bar);
    position: relative;
    overflow: hidden;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    color: var(--brand-black);
    padding: 20px 30px;
    border-radius: 20px;
    font-family: "Bai Jamjuree", sans-serif;
    text-align: center;
}

.why-choose-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.why-choose-badge .text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.why-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-text p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--brand-black);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--brand-bar);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 30px;
    transition: var(--transition-smooth);
}

.process-step:hover .process-number {
    background: var(--white);
    color: var(--brand-black);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.process-step h4 {
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .process-grid::before {
        display: none;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SERVICE DETAILS PAGE STYLES
   ======================================== */

.service-details-section {
    padding: 100px 0;
    background-color: var(--brand-black);
}

.service-details-row {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.service-main-content {
    flex: 1;
    min-width: 0;
}

.service-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.service-detail-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--white);
}

.service-detail-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 35px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--brand-bar);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
}

.feature-item-inline i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--brand-bar);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-list-widget {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list-widget li {
    margin-bottom: 15px;
}

.services-list-widget li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    color: var(--gray-300);
    font-weight: 600;
    transition: var(--transition-fast);
}

.services-list-widget li a:hover,
.services-list-widget li a.active {
    background: var(--white);
    color: var(--brand-black);
    transform: translateX(5px);
}

.services-list-widget li a i {
    font-size: 0.8rem;
}

.cta-widget {
    background: linear-gradient(135deg, var(--brand-bar) 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-widget .icon-box {
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--brand-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.cta-widget h4 {
    margin-bottom: 15px;
}

.cta-widget p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 25px;
}

.btn-sidebar-cta {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: var(--white);
    color: var(--brand-black);
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-sidebar-cta:hover {
    background: var(--gray-300);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .service-sidebar {
        width: 100%;
    }

    .service-features-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-intro-section {
    padding: 100px 0;
    background-color: var(--brand-black);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-intro-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.about-intro-image:hover img {
    transform: scale(1.05);
}

.about-intro-text h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.about-intro-text p {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: var(--brand-bar);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
    transition: var(--transition-smooth);
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--brand-black);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--gray-300);
    line-height: 1.7;
}

/* Core Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--brand-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--brand-bar);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    display: inline-block;
}

.value-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
}

/* Counter Section */
.counter-box {
    padding: 30px 0;
    background: var(--white);
    color: var(--brand-black);
}

.counter-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.counter-item {
    flex: 1;
}

.counter-number {
    display: block;
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 2.4em;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.6);
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 18px;
    color: #fff;
    width: 35px;
    height: 35px;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #888;
}

.info-content a {
    font-size: 14px;
    color: #e9e9e9;
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    color: #828384;
}

.custom-tabs .nav-link {
    border: none;
    color: #777;
    font-weight: 500;
}

.custom-tabs .nav-link.active {
    color: #000;
    border-bottom: 2px solid #fff;
}

@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-intro-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .counter-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .page-hero h1 {
    font-size: 33px;
    }
    
    
    
    .header-nav a::after{
        display:none;
    }
    .wrapContact{
        display:none;
    }
    .section-title{
        font-size:1.5625rem;
    }
    .contact-title {
    font-size: 1.5625rem;
    }
    .services-cta-bar{
        background:none;
        border:none;
    }
    .blog-title{
        font-size:1.5625rem;
    }
    .footer-main {
    margin-bottom: 0;
    }
    .service-detail-title{
        font-size:1.5625rem;
    }
    .sidebar-widget{
        display:none;
    }
    .service-main-content ul{
        padding-left:15px;
    }
}