:root {
    --primary-color: #1A5C3A;
    --primary-dark: #134428;
    --primary-light: #267A4E;
    --accent-color: #80EF80;
    --text-primary: #1C1C1E;
    --text-secondary: #3A3A3C;
    --text-light: #6C6C70;
    --bg-white: #FFFFFF;
    --bg-gray: #F5F3EE;
    --bg-light: #FAF8F3;
    --border-color: #E8E2D9;
    --shadow-sm: 0 2px 8px rgba(26, 92, 58, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 92, 58, 0.10);
    --shadow-lg: 0 8px 32px rgba(26, 92, 58, 0.14);
    --shadow-xl: 0 16px 48px rgba(26, 92, 58, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Text selection color */
::selection {
    background: rgba(26, 92, 58, 0.18);
    color: var(--text-primary);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-image: url('../assets/images/background.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===========================
   Navigation
=========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    line-height: 1;
}

.logo-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-secondary);
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   Hero Section
=========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(1px);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-gray);
    border: 1px solid var(--border-color);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-consultation {
    background: #FFD700;
    color: #000000;
    border-color: transparent;
}

.btn-consultation:hover {
    background: #FFC700;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-call {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--text-primary);
    outline-offset: 3px;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Enhanced Hero Decoration - With Slideshow Background */
.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    overflow: hidden;
}

.bg-slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.bg-active {
    opacity: 1;
}

.bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0px) brightness(1);
}

.hero-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 15%,
        rgba(255, 255, 255, 0.2) 40%,
        transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.slideshow-indicators {
    display: none;
}

.indicator {
    display: none;
}

/* ===========================
   Sections – shared
=========================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   About Section
=========================== */
.about {
    position: relative;
    background-image: url('../assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.company-background {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.background-video {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.background-video video {
    width: 100%;
    height: auto;
    display: block;
}

.background-description {
    padding: 20px;
}

.background-description h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.background-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background: white;
    padding: 30px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-year {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.about-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* ===========================
   Mission and Vision
=========================== */
.philosophy {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    text-align: center;
    padding: 80px 0;
}

.philosophy-title {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.mission-box,
.vision-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-box h3,
.vision-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-box p,
.vision-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===========================
   Services Section
=========================== */
.services {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 100px 0;
}

/* ---- Service Group ---- */
.svc-group {
    margin-bottom: 56px;
}

.svc-group:last-child {
    margin-bottom: 0;
}

/* Group header bar */
.svc-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 0;
}

.svc-group-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.svc-group-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(26, 92, 58, 0.1);
    border: 1px solid rgba(26, 92, 58, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.svc-group-title {
    font-family: 'Barlow', sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.svc-group-title span {
    color: var(--primary-color);
}

.svc-group-count {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ---- Service Rows ---- */
.svc-items {
    display: flex;
    flex-direction: column;
}

.svc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 20px 22px 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: background 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Left accent sweep */
.svc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.svc-item:hover::before {
    transform: scaleY(1);
}

.svc-item:hover {
    background: rgba(26, 92, 58, 0.025);
    padding-left: 28px;
}

/* Step number */
.svc-num {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.4;
    min-width: 26px;
    flex-shrink: 0;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.svc-item:hover .svc-num {
    opacity: 1;
}

/* Icon box */
.svc-icon {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.svc-item:hover .svc-icon {
    border-color: rgba(26, 92, 58, 0.5);
    color: var(--primary-color);
    background: rgba(26, 92, 58, 0.06);
}

/* Content */
.svc-body {
    flex: 1;
    min-width: 0;
}

.svc-body h4 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.svc-body p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Category tag */
.svc-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(26, 92, 58, 0.09);
    border: 1px solid rgba(26, 92, 58, 0.25);
    padding: 4px 10px;
    border-radius: 50px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.svc-item:hover .svc-tag {
    background: rgba(26, 92, 58, 0.15);
    border-color: rgba(26, 92, 58, 0.45);
}

/* Chevron */
.svc-chevron {
    color: var(--border-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.svc-item:hover .svc-chevron {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .svc-group-count {
        display: none;
    }

    .svc-item {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .svc-tag,
    .svc-chevron {
        display: none;
    }

    .svc-num {
        order: -1;
    }

    .svc-icon {
        order: -1;
    }

    .svc-body {
        width: 100%;
    }
}

/* ===========================
   Values Section
=========================== */
.values {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   Objectives Section
=========================== */
.objectives {
    background: rgba(248, 248, 248, 0.6);
    backdrop-filter: blur(3px);
}

.objectives-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.objective-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.objective-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--bg-gray);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.objective-step h3 {
    font-size: 18px;
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 300;
}

/* ===========================
   Appointment Section
=========================== */
.appointment {
    background: rgba(248, 248, 248, 0.6);
    backdrop-filter: blur(3px);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.appointment-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.appointment-info > p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
}

/* Social Media Buttons */
.social-media-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.facebook-btn {
    background: #1877F2;
    color: white;
}

.facebook-btn:hover {
    background: #0d65d9;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tiktok-btn {
    background: #000000;
    color: white;
}

.tiktok-btn:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.appointment-form-container {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.appointment-form h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.12);
    background: white;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 1px;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===========================
   Footer
=========================== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-main {
    color: white;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand .logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.footer-brand .footer-logo {
    display: block;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-company-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1;
}

.footer-company-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-brand .logo-sub {
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent-color);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-column a:hover {
    color: white;
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===========================
   Projects Carousel Section
   Image-first: full bleed photo
   Info panel as bottom overlay
=========================== */
.projects-carousel {
    padding: 100px 0 80px;
    position: relative;
    background-image: url('../assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.projects-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 243, 238, 0.88);
    z-index: 0;
}

.projects-carousel .container {
    position: relative;
    z-index: 1;
}

.carousel-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.carousel-section-header .section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.carousel-section-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.carousel-section-header .section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto;
}

.projects-cta {
    text-align: center;
    margin-top: 44px;
}

/* ── Clean Slider ─────────────────────────────────────── */
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 52px;
}

.card-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
    max-height: 70vh;
}

.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}



/* ── Single Card ─────────────────────────────────────── */
.carousel-card {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    overflow: hidden;
    cursor: default;
    background: white;
    display: flex;
    flex-direction: row;
    visibility: visible;
    opacity: 1;
    transform: none;
    filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    height: 500px;
}

.carousel-card.active { opacity: 1; visibility: visible; }
.carousel-card.prev   { opacity: 1; visibility: visible; }
.carousel-card.next   { opacity: 1; visibility: visible; }
.carousel-card.far-prev { opacity: 1; visibility: visible; pointer-events: auto; }
.carousel-card.far-next { opacity: 1; visibility: visible; pointer-events: auto; }

/* ── Card Image ──────────────────────────────────────── */
.card-image-wrap {
    position: relative;
    width: 60%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--border-color);
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: auto;
    user-select: none;
    transition: transform 0.7s ease;
    cursor: pointer;
}

.card-carousel:hover .carousel-card .card-image-wrap img {
    transform: scale(1.03);
}

.card-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(19, 68, 40, 0.55) 0%,
        rgba(19, 68, 40, 0.15) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.card-carousel:hover .card-image-wrap::after {
    opacity: 1;
}

.card-view-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.card-carousel:hover .card-view-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Card Body — right panel beside the image ───── */
.card-body {
    position: relative;
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    pointer-events: none;
    background: white;
    border-left: 1px solid var(--border-color);
}


.card-play-btn { display: none; }

.card-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
    font-family: 'Barlow', sans-serif;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.card-status-proposal {
    background: rgba(200, 150, 62, 0.92);
    color: #fff;
}

.card-status-turnover {
    background: rgba(26, 92, 58, 0.92);
    color: #fff;
}

.card-status-before {
    background: rgba(60, 60, 60, 0.85);
    color: #fff;
}

.card-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    text-shadow: none;
}

.card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 100%;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.author-avatar-fallback {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: white;
    font-family: 'Barlow', sans-serif;
    flex-shrink: 0;
}

.author-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
    background: var(--border-color);
}

.author-info { display: flex; flex-direction: column; }
.author-name { font-size: 13px; font-weight: 700; color: var(--text-primary); line-height: 1.2; font-family: 'Barlow', sans-serif; }
.author-role { font-size: 11px; color: var(--text-secondary); line-height: 1.2; font-family: 'Barlow', sans-serif; }

/* ── Slide counter ───────────────────────────────────── */
.carousel-counter {
    position: absolute;
    top: 18px; right: 22px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 20;
    letter-spacing: 0.5px;
    pointer-events: none;
}

/* ── Dots ────────────────────────────────────────────── */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover:not(.active) { background: var(--text-light); }

/* ── Arrow nav ───────────────────────────────────────── */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    pointer-events: none;
    z-index: 20;
}

.carousel-nav-btn {
    pointer-events: all;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: white;
    backdrop-filter: blur(8px);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    position: relative;
    z-index: 20;
    box-shadow: var(--shadow-md);
    -webkit-user-select: none;
    user-select: none;
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ===========================
   Animations
=========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes decorationPulse {
    0%, 100% {
        transform: translate(10%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(15%, -52%) scale(1.05);
        opacity: 0.4;
    }
}

/* ===========================
   Responsive Design
=========================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
        overflow: hidden;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 0;
        display: block;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        width: 100%;
        background: transparent;
        padding: 0;
        border-radius: 0;
    }

    .hero-visual {
        height: 0;
        width: 0;
        position: absolute;
        display: none;
    }

    .hero-decoration {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
    }

    .hero-decoration::after {
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.6) 40%,
            rgba(255, 255, 255, 0.3) 70%,
            transparent 100%);
    }

    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Carousel tablet: horizontal scroll */
    .projects-carousel {
        padding: 70px 0;
    }

    .carousel-wrapper {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .card-carousel {
        height: auto;
        perspective: none;
        border-radius: 0;
        box-shadow: none;
        max-height: none !important;
    }

    .carousel-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 20px 20px 30px;
        justify-content: flex-start;
        transform-style: flat;
        -webkit-overflow-scrolling: touch;
        transform: none !important;
    }

    .carousel-track::-webkit-scrollbar { height: 4px; }
    .carousel-track::-webkit-scrollbar-track { background: rgba(189, 186, 186, 0.05); border-radius: 10px; }
    .carousel-track::-webkit-scrollbar-thumb { background: #808080; border-radius: 10px; }

    .carousel-card {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        min-width: 260px;
        width: 260px;
        height: auto !important;
        flex-direction: column !important;
        flex-shrink: 0;
        scroll-snap-align: center;
        z-index: auto !important;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    /* Image stacks on top */
    .card-image-wrap {
        position: relative !important;
        width: 100% !important;
        height: 180px !important;
        flex-shrink: 0 !important;
    }

    .card-image-wrap img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        opacity: 1 !important;
        display: block !important;
        pointer-events: none !important;
    }

    .card-body {
        position: relative !important;
        bottom: auto !important;
        height: auto !important;
        border-left: none !important;
        border-top: 1px solid var(--border-color) !important;
        padding: 16px !important;
    }

    .carousel-dots,
    .carousel-nav { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: -600px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 75vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px 32px 36px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        transition: top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 998;
        align-items: flex-start;
        justify-content: flex-start;
        display: flex;
        overflow-y: auto;
    }

    .nav-links.active {
        top: 90px;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 600;
        padding: 16px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary);
        transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--primary-color);
        padding-left: 8px;
    }

    .nav-link-cta {
        background: var(--primary-color);
        color: white;
        padding: 12px 24px;
        text-align: center;
        margin-top: 16px;
        width: 100%;
        border-radius: 8px;
        font-weight: 600;
        border-bottom: none !important;
    }

    .nav-link-cta:hover {
        background: var(--primary-dark);
        color: white;
        transform: none;
        padding-left: 0;
        box-shadow: var(--shadow-md);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 100vh;
        overflow: hidden;
    }

    .hero .container {
        display: block;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        margin-bottom: 0;
        background: transparent;
        padding: 0;
        border-radius: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-visual {
        height: 0;
        width: 0;
        position: absolute;
        display: none;
    }

    .hero-decoration {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
    }

    .hero-decoration::after {
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 35%,
            rgba(255, 255, 255, 0.4) 60%,
            transparent 100%);
    }

    .bg-slide img {
        border-radius: 0;
    }

    .objectives-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .appointment-form-container {
        padding: 32px 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .company-background {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .background-description h3 {
        font-size: 24px;
    }
    
    .background-description p {
        font-size: 15px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero {
        padding: 90px 0 60px;
        min-height: 100vh;
        overflow: hidden;
    }

    .hero .container {
        display: block;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-visual {
        height: 0;
        width: 0;
        position: absolute;
        display: none;
    }

    .hero-decoration {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
    }

    .hero-decoration::after {
        background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.75) 30%,
            rgba(255, 255, 255, 0.5) 55%,
            rgba(255, 255, 255, 0.2) 80%,
            transparent 100%);
    }

    .bg-slide img {
        border-radius: 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-tag {
        font-size: 11px;
    }

    .about-card {
        padding: 24px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    /* Carousel small mobile */
    .carousel-card { height: 340px; }
    .card-title { font-size: 18px; }

    .carousel-section-header .section-title {
        font-size: 28px;
    }
}

/* ===========================
   Testimonials Section
=========================== */
.testimonials {
    background: rgba(248, 248, 248, 0.6);
    backdrop-filter: blur(3px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-light);
}

.loading-text {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
    grid-column: 1 / -1;
}

/* Feedback Button */
.feedback-btn {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 24px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 32px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.modal-footer .btn-secondary,
.modal-footer .btn-primary {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-footer .btn-secondary {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.modal-footer .btn-secondary:hover {
    background: var(--border-color);
}

.modal-footer .btn-primary {
    background: var(--primary-color);
    color: white;
}

.modal-footer .btn-primary:hover {
    background: var(--primary-dark);
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    font-size: 32px;
    margin-top: 8px;
}

.star {
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}

.star.active,
.star:hover {
    color: #FFD700;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-btn {
        bottom: 84px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
}

/* ===========================
   Scroll to Top Button
=========================== */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top span {
    line-height: 1;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}

/* ===========================
   Lightbox
=========================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.lightbox-content.zoomed {
    cursor: zoom-out;
    max-width: none;
    max-height: none;
    transform: scale(2);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.lightbox-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 32px;
        width: 40px;
        height: 40px;
    }
}

/* ===========================
   Stats Counter Section
=========================== */
.stats-counter {
    background: var(--primary-color);
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 48px;
    flex: 1;
    min-width: 160px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-plus {
    font-family: 'Barlow', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-top: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 0;
    }
    .stat-item {
        padding: 20px 24px;
        min-width: 140px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-divider {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 20px 16px;
    }
}

/* ===========================
   How It Works Section
=========================== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

/* ---- Process Flow Grid ---- */
.process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
    position: relative;
}

/* Horizontal connecting line through all nodes */
.process-flow::before {
    content: '';
    position: absolute;
    top: 26px; /* vertically centered through nodes */
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        rgba(26, 92, 58, 0.5) 50%,
        rgba(26, 92, 58, 0.2) 100%
    );
    z-index: 0;
}

/* ---- Each Step Unit ---- */
.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Short vertical stem from node to card */
.proc-step::after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(26, 92, 58, 0.6), rgba(0, 0, 0, 0.06));
    flex-shrink: 0;
    order: 2;
}

/* ---- Node Wrap + Circle ---- */
.proc-node-wrap {
    position: relative;
    z-index: 1;
    order: 1;
}

.proc-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.proc-step:hover .proc-node {
    box-shadow: 0 0 22px rgba(26, 92, 58, 0.4), var(--shadow-md);
    transform: scale(1.08);
}

.proc-node span {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

/* ---- Process Card ---- */
.proc-card {
    order: 3;
    width: 100%;
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 36px 28px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.proc-step:hover .proc-card {
    transform: translateY(4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 92, 58, 0.4);
}

/* Ghost large background number */
.proc-ghost-num {
    font-family: 'Playfair Display', serif;
    font-size: 7.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    bottom: -18px;
    right: 4px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.35s ease;
}

.proc-step:hover .proc-ghost-num {
    color: rgba(26, 92, 58, 0.09);
}

/* Icon box */
.proc-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(26, 92, 58, 0.4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    margin-bottom: 22px;
    transition: all 0.35s ease;
    flex-shrink: 0;
    background: rgba(26, 92, 58, 0.05);
}

.proc-step:hover .proc-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 18px rgba(26, 92, 58, 0.3);
}

/* Card title */
.proc-card h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Card description */
.proc-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

/* Animated bottom accent bar */
.proc-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
}

.proc-step:hover .proc-bar {
    transform: scaleX(1);
}

/* CTA */
.steps-cta {
    text-align: center;
    margin-top: 56px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .process-flow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-flow::before {
        display: none;
    }

    .proc-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 0;
    }

    .proc-step::after {
        display: none;
    }

    .proc-node-wrap {
        order: 1;
        flex-shrink: 0;
        padding-top: 28px;
        padding-left: 20px;
        padding-right: 0;
    }

    /* Vertical stem from node to card */
    .proc-node-wrap::after {
        content: '';
        display: none;
    }

    /* Vertical connecting line on left side */
    .proc-step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 80px;
        left: 45px;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, rgba(26,92,58,0.5), transparent);
        z-index: 0;
    }

    .proc-card {
        order: 2;
        border: none;
        border-left: 1px solid rgba(0, 0, 0, 0.06);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        flex: 1;
        padding: 24px 20px 32px;
    }

    .proc-ghost-num {
        font-size: 5rem;
    }
}

/* ===========================
   FAQ Section
=========================== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(26, 92, 58, 0.3);
}

.faq-item.open {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-item.open .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* ===========================
   Floating Messenger Button
=========================== */
.messenger-float-btn {
    position: fixed;
    bottom: 168px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #0084FF, #0068CC);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.messenger-float-btn svg {
    width: 26px;
    height: 26px;
    display: block;
}

.messenger-float-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 132, 255, 0.5);
}

.messenger-tooltip {
    position: absolute;
    right: 68px;
    background: #1a1a1a;
    color: white;
    font-family: 'Barlow', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.messenger-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
}

.messenger-float-btn:hover .messenger-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .messenger-float-btn {
        bottom: 148px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    .messenger-tooltip {
        display: none;
    }
}

/* ===========================
   Service Detail Modal
=========================== */
.svc-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.svc-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.svc-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 940px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(24px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-modal-overlay.open .svc-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.svc-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.svc-modal-close:hover {
    background: var(--bg-light);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

/* Two-panel layout */
.svc-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    height: 100%;
    max-height: 90vh;
}

/* ---- Left: Info panel ---- */
.svc-modal-info {
    padding: 44px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
}

.svc-modal-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.svc-modal-icon-wrap {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(26, 92, 58, 0.4);
    border-radius: 12px;
    background: rgba(26, 92, 58, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.svc-modal-cat-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(26, 92, 58, 0.1);
    border: 1px solid rgba(26, 92, 58, 0.3);
    padding: 4px 12px;
    border-radius: 50px;
}

.svc-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.svc-modal-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Feature list */
.svc-modal-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    flex: 1;
}

.svc-modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.svc-modal-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(26, 92, 58, 0.12);
    border: 1px solid rgba(26, 92, 58, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23134428' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    flex-shrink: 0;
}

/* CTA button */
.svc-modal-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    text-decoration: none;
}

/* ---- Right: Gallery panel ---- */
.svc-modal-gallery {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.svc-gallery-main-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.svc-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.svc-gallery-main-wrap:hover .svc-gallery-main-img {
    transform: scale(1.03);
}

.svc-gallery-project-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Thumbnail strip */
.svc-gallery-thumbs {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: white;
    border-top: 1px solid var(--border-color);
    overflow-x: auto;
    flex-shrink: 0;
}

.svc-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    padding: 0;
    background: none;
    opacity: 0.65;
}

.svc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-thumb:hover {
    opacity: 0.9;
}

.svc-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
}

/* ---- Mobile ---- */
@media (max-width: 768px) {
    .svc-modal {
        max-height: 95vh;
        border-radius: 16px;
    }

    .svc-modal-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        max-height: 95vh;
        overflow-y: auto;
    }

    .svc-modal-info {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 32px 24px;
        overflow-y: visible;
    }

    .svc-modal-gallery {
        min-height: 300px;
    }

    .svc-gallery-main-wrap {
        height: 220px;
        flex: none;
    }

    .svc-modal-title {
        font-size: 1.4rem;
    }
}