/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --primary-pale: #b7e4c7;
    --secondary: #f0ebe3;
    --secondary-dark: #e3ddd4;
    --accent: #e07a5f;
    --accent-dark: #c45d43;
    --accent-light: #f2a891;
    --cream: #faf8f5;
    --sand: #d4c5a9;
    --terracotta: #c67d5b;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --white: #ffffff;
    --shadow-warm: 0 8px 32px rgba(45, 106, 79, 0.10);
    --shadow-warm-lg: 0 16px 48px rgba(45, 106, 79, 0.12);
    --shadow-accent: 0 8px 32px rgba(224, 122, 95, 0.15);
    --radius-blob-1: 30% 70% 70% 30% / 30% 30% 70% 70%;
    --radius-blob-2: 60% 40% 30% 70% / 60% 30% 70% 40%;
    --radius-blob-3: 40% 60% 65% 35% / 55% 35% 65% 45%;
    --radius-blob-4: 70% 30% 50% 50% / 40% 60% 40% 60%;
    --radius-soft: 24px;
    --radius-medium: 16px;
    --radius-pill: 999px;
    --font-display: 'Comfortaa', cursive;
    --font-body: 'Nunito', sans-serif;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================
   RESET & BASE
   ================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
}

/* Selection color */
::selection {
    background: var(--primary-pale);
    color: var(--primary-dark);
}

/* ================================================
   SCROLLBAR
   ================================================ */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes floatUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
    0% { opacity: 0; transform: translateY(60px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes blobMorph1 {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 36% 64% / 53% 67% 33% 47%; }
    50% { border-radius: 42% 58% 70% 30% / 45% 55% 45% 55%; }
    75% { border-radius: 65% 35% 45% 55% / 35% 65% 35% 65%; }
}

@keyframes blobMorph2 {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    33% { border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%; }
    66% { border-radius: 55% 45% 40% 60% / 55% 45% 55% 45%; }
}

@keyframes blobMorph3 {
    0%, 100% { border-radius: 40% 60% 65% 35% / 55% 35% 65% 45%; }
    50% { border-radius: 55% 45% 40% 60% / 40% 60% 40% 60%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   NAVIGATION
   ================================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.main-nav.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(45, 106, 79, 0.08);
    padding: 10px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent);
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: all var(--transition-smooth);
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(45, 106, 79, 0.08);
}

.nav-link-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
}

.nav-link-cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.3);
}

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

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

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 32px 60px;
    background: linear-gradient(
        165deg,
        var(--cream) 0%,
        var(--secondary) 40%,
        rgba(183, 228, 199, 0.2) 70%,
        var(--cream) 100%
    );
}

.hero-blob {
    position: absolute;
    z-index: 0;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
    background: radial-gradient(ellipse at 30% 40%, rgba(45, 106, 79, 0.12), rgba(45, 106, 79, 0.03));
    animation: blobMorph1 12s ease-in-out infinite;
    border-radius: var(--radius-blob-1);
}

.hero-blob-2 {
    width: 350px;
    height: 350px;
    bottom: -50px;
    left: -100px;
    background: radial-gradient(ellipse at 60% 50%, rgba(224, 122, 95, 0.1), rgba(224, 122, 95, 0.02));
    animation: blobMorph2 15s ease-in-out infinite;
    border-radius: var(--radius-blob-2);
}

.hero-blob-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 15%;
    background: radial-gradient(ellipse at 50% 50%, rgba(183, 228, 199, 0.2), transparent);
    animation: blobMorph3 10s ease-in-out infinite;
    border-radius: var(--radius-blob-3);
}

.hero-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(224, 122, 95, 0.12);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(224, 122, 95, 0.2);
    border-radius: var(--radius-pill);
    z-index: -1;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image-blob {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    overflow: hidden;
    animation: blobMorph1 16s ease-in-out infinite;
    border-radius: var(--radius-blob-1);
    box-shadow: var(--shadow-warm-lg);
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-warm);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 2;
    animation: breathe 4s ease-in-out infinite;
}

.hero-float-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-warm);
    transition: all var(--transition-smooth);
}

.hero-scroll-indicator a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-warm-lg);
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats-section {
    padding: 60px 32px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    border-radius: 0 0 50% 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--cream);
    border-radius: 50% 50% 0 0;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-soft);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
    font-size: 0.7em;
    color: var(--accent-light);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary-pale);
    font-weight: 500;
}

/* ================================================
   SECTION COMMON
   ================================================ */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.section-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(224, 122, 95, 0.1);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.section-blob {
    position: absolute;
    z-index: 0;
}

.section-blob-left {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -200px;
    background: radial-gradient(ellipse, rgba(45, 106, 79, 0.06), transparent);
    animation: blobMorph2 14s ease-in-out infinite;
    border-radius: var(--radius-blob-2);
}

.section-blob-right {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: -150px;
    background: radial-gradient(ellipse, rgba(224, 122, 95, 0.06), transparent);
    animation: blobMorph3 12s ease-in-out infinite;
    border-radius: var(--radius-blob-3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 32px;
    box-shadow: var(--shadow-warm);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 32px 32px 0 0;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.08);
    border-radius: var(--radius-blob-4);
    margin-bottom: 24px;
    animation: blobMorph3 8s ease-in-out infinite;
    transition: all var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
    background: rgba(224, 122, 95, 0.12);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--text-medium);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
}

.service-detail-btn {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    transition: all var(--transition-smooth);
    position: relative;
}

.service-detail-btn::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-smooth);
    border-radius: var(--radius-pill);
}

.service-detail-btn:hover::after {
    width: 100%;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-section {
    padding: 120px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-blob {
    overflow: hidden;
    animation: blobMorph2 14s ease-in-out infinite;
    border-radius: var(--radius-blob-2);
    box-shadow: var(--shadow-warm-lg);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    animation: blobMorph1 12s ease-in-out infinite;
    border-radius: var(--radius-blob-1);
    z-index: 2;
    border: 4px solid var(--white);
}

.about-img-secondary .about-img {
    min-height: 200px;
}

.about-text-col .section-badge {
    text-align: left;
}

.about-text-col .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ================================================
   TRUST SECTION
   ================================================ */
.trust-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.trust-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-warm);
    transition: all var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-warm-lg);
}

.trust-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ================================================
   GALLERY BREAK
   ================================================ */
.gallery-break {
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

.gallery-blob-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(ellipse, rgba(45, 106, 79, 0.06), transparent);
    border-radius: var(--radius-blob-1);
    animation: blobMorph1 18s ease-in-out infinite;
    z-index: 0;
}

.gallery-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-warm);
    transition: all var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-1 {
    border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
    animation: blobMorph2 16s ease-in-out infinite;
}

.gallery-item-2 {
    border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
    animation: blobMorph3 14s ease-in-out infinite;
}

/* ================================================
   TEAM SECTION
   ================================================ */
.team-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.team-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: 28px;
    text-align: center;
    box-shadow: var(--shadow-warm);
    transition: all var(--transition-smooth);
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-name {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.team-role {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: 120px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.testimonial-blob-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    background: radial-gradient(ellipse, rgba(224, 122, 95, 0.06), transparent);
    border-radius: var(--radius-blob-3);
    animation: blobMorph3 16s ease-in-out infinite;
    z-index: 0;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.testimonial-card > * {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--primary-pale);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

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

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-pale);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ================================================
   CASES SECTION
   ================================================ */
.cases-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

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

.case-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-warm);
    transition: all var(--transition-smooth);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-warm-lg);
}

.case-header {
    padding: 32px 32px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.case-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.case-title {
    font-size: 1.3rem;
    color: var(--white);
}

.case-body {
    padding: 28px 32px 32px;
}

.case-body p {
    font-size: 0.92rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.case-body p strong {
    color: var(--primary-dark);
}

.case-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-dark);
}

.case-stat {
    text-align: center;
    flex: 1;
}

.case-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}

.case-stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 120px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.contact-blob-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(ellipse, rgba(45, 106, 79, 0.06), transparent);
    border-radius: var(--radius-blob-1);
    animation: blobMorph1 14s ease-in-out infinite;
    z-index: 0;
}

.contact-blob-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    background: radial-gradient(ellipse, rgba(224, 122, 95, 0.06), transparent);
    border-radius: var(--radius-blob-2);
    animation: blobMorph2 12s ease-in-out infinite;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

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

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-warm);
    transition: all var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-warm-lg);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.08);
    border-radius: 16px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--primary);
}

.contact-info-card small {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 32px;
    box-shadow: var(--shadow-warm-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.required {
    color: var(--accent);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 14px 20px;
    border: 2px solid var(--secondary-dark);
    border-radius: 16px;
    background: var(--cream);
    color: var(--text-dark);
    transition: all var(--transition-smooth);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

.form-error {
    font-size: 0.8rem;
    color: var(--accent);
    min-height: 18px;
    font-weight: 500;
}

.form-consent {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
    margin-top: 8px;
}

.form-success {
    text-align: center;
    padding: 24px;
    background: rgba(45, 106, 79, 0.06);
    border-radius: 20px;
    animation: fadeInScale 0.5s ease;
}

.form-success p {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-top: 12px;
    font-weight: 500;
}

/* ================================================
   FOOTER
   ================================================ */
.main-footer {
    background: var(--primary-dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03), transparent);
    border-radius: var(--radius-blob-1);
    animation: blobMorph1 20s ease-in-out infinite;
    z-index: 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(240, 235, 227, 0.7);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col li {
    font-size: 0.9rem;
    color: rgba(240, 235, 227, 0.6);
}

.footer-links-col a {
    color: rgba(240, 235, 227, 0.6);
    transition: color var(--transition-smooth);
}

.footer-links-col a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(240, 235, 227, 0.4);
}

.footer-bottom a {
    color: rgba(240, 235, 227, 0.5);
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* ================================================
   MODALS
   ================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 67, 50, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 32px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-warm-lg);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--white);
}

.modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    padding-right: 40px;
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.modal-content h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.modal-content ul,
.modal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.modal-content ul {
    list-style: disc;
}

.modal-content ol {
    list-style: decimal;
}

.modal-content li {
    font-size: 0.92rem;
    color: var(--text-medium);
    margin-bottom: 6px;
    line-height: 1.6;
}

.modal-cta {
    margin-top: 16px;
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    padding: 24px 32px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-radius: 24px 24px 0 0;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-decline {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--primary-light);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

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

.btn-cookie-settings {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    color: var(--text-medium);
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: underline;
}

.btn-cookie-settings:hover {
    color: var(--primary);
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--secondary-dark);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-setting-item {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-description {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-float-1 {
        left: 10px;
    }

    .hero-float-2 {
        right: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-text-col .section-badge,
    .about-text-col .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-highlights {
        align-items: center;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .hero-section {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image-blob {
        max-width: 320px;
    }

    .hero-float-card {
        display: none;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .cookie-settings-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    .about-img-secondary {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -10px;
    }
}

/* ================================================
   LEGAL PAGE STYLES (shared)
   ================================================ */
.legal-page {
    min-height: 100vh;
    background: var(--cream);
}

.legal-nav {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(45, 106, 79, 0.06);
}

.legal-nav .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-back {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(45, 106, 79, 0.08);
    transition: all var(--transition-smooth);
}

.legal-back:hover {
    background: var(--primary);
    color: var(--white);
}

.legal-hero {
    padding: 80px 32px 40px;
    text-align: center;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    background: radial-gradient(ellipse, rgba(45, 106, 79, 0.06), transparent);
    border-radius: var(--radius-blob-1);
    animation: blobMorph1 14s ease-in-out infinite;
}

.legal-hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 12px;
    color: var(--primary-dark);
    position: relative;
}

.legal-hero p {
    font-size: 1rem;
    color: var(--text-medium);
    position: relative;
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 60px 32px 120px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary-dark);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-pale);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary);
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 0.93rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
}

.legal-content table th,
.legal-content table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--secondary-dark);
}

.legal-content table th {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
}

.legal-content table td {
    background: var(--white);
    color: var(--text-medium);
}

.legal-content table tr:last-child td {
    border-bottom: none;
}

.legal-footer {
    background: var(--primary-dark);
    padding: 24px 32px;
    text-align: center;
}

.legal-footer p {
    font-size: 0.8rem;
    color: rgba(240, 235, 227, 0.5);
}

.legal-footer a {
    color: rgba(240, 235, 227, 0.6);
}
