:root {
    --color-primary: #f4e225;
    --color-bg-light: #f8f8f5;
    --color-bg-dark: #222110;
    --color-watercolor-blue: #a5d8ff;
    --color-watercolor-pink: #ffc4d6;
    --color-watercolor-green: #c4f0c5;

    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;

    --color-red-100: #fee2e2;
    --color-red-500: #ef4444;
    --color-blue-100: #dbeafe;
    --color-blue-500: #3b82f6;
    --color-green-100: #dcfce7;
    --color-green-500: #22c55e;
    --color-purple-100: #f3e8ff;
    --color-purple-500: #a855f7;
    --color-yellow-100: #fef9c3;
    --color-yellow-300: #fde047;
    --color-yellow-600: #ca8a04;
    --color-orange-100: #ffedd5;
    --color-orange-500: #f97316;
    --color-orange-400: #fb923c;

    --font-display: "Spline Sans", sans-serif;

    --radius-sm: 16px;
    /* rounded     (1rem) */
    --radius-md: 32px;
    /* rounded-lg  (2rem) */
    --radius-lg: 48px;
    /* rounded-xl  (3rem) */
    --radius-full: 9999px;
}











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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-light);
    font-family: var(--font-display);
    color: var(--color-gray-800);
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-primary);
    color: #000000;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-thumb{
    background-color: #fa3131;
}
::-webkit-scrollbar-thumb:hover{
    background-color: black;
}










/* ============================================================
   SHARED WATERCOLOR BLOB ANIMATIONS
   ============================================================ */
.watercolor-blob {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
}

.watercolor-blob-2 {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

@keyframes bounce-anim {
    0%,
    100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(-12px);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}












/* ============================================================
   SIDEBAR
   ============================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu::-webkit-scrollbar {
    width: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
}

.mobile-menu::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    background-color: #000000;
    color: #ffffff;
    /* border-bottom: 1px solid var(--color-gray-200); */
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-top: 7px;
    color: #ffffff;
}

.mobile-nav {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray-800);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.mobile-nav-link:hover {
    background-color: var(--color-gray-100);
    color: var(--color-primary);
}

.mobile-menu-footer {
    padding: 10px;
    border-top: 1px solid var(--color-gray-200);
}

.mobile-phone {
    display: block;
    width: 170px;
    margin: auto;
    background-color: var(--color-primary);
    color: #000;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 10px;
    text-align: center;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    text-decoration: none;
}

.mobile-lang-switcher {
    display: flex;
    gap: 5px;
    justify-content: center;
    /* align-items: center; */
    background-color: var(--color-gray-100);
    padding: 4px;
    border-radius: var(--radius-full);
    width: 170px;
    margin: auto;
}

@media (min-width: 640px) {
    .mobile-lang-switcher {
        font-size: 12px;
    }
}

.mobile-lang-btn {
    padding: 5px 10px;
    border: none;
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-lang-btn:hover {
    background-color: rgba(150, 150, 150, 0.5);
    border-radius: var(--radius-full);
}

.mobile-lang-btn.active {
    background-color: var(--color-primary);
}



/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(216, 216, 216, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(10px);        /* add background blur */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}












/* ============================================================
   HEADER (NAVIGATION)
   ============================================================ */
.nav-wrapper {
    position: fixed;
    width: 100%;
    z-index: 50;
    top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .nav-wrapper {
        padding-left: 32px;
        padding-right: 32px;
    }
}

.nav-inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(244, 226, 37, 0.2);
    padding: 0px 10px 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Brand */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo {
    width: 50px;
    /* height: 45px; */
}

.nav-brand-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.025em;
}

.nav-brand-highlight {
    color: #fa3131;
}


/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone-btn {
    background-color: #fa3131;
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    display: inline-block;
    white-space: nowrap;
}

.nav-phone-btn:hover {
    background-color: #cb1515;
    transform: scale(1.05);
}

@media (min-width: 640px) {
    .nav-phone-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

.nav-menu-btn {
    color: var(--color-gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-menu-btn:hover {
    color: var(--color-primary);
}














/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 128px;
    padding-bottom: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}



/* Background Blobs */
.hero-bg-blob-yellow {
    position: absolute;
    top: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background-color: rgba(244, 226, 37, 0.2);
    filter: blur(100px);
    border-radius: var(--radius-full);
    transform: translateX(33%) translateY(-25%);
    z-index: -10;
    pointer-events: none;
}

.hero-bg-blob-blue {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background-color: rgba(165, 216, 255, 0.3);
    filter: blur(80px);
    border-radius: var(--radius-full);
    transform: translateX(-25%) translateY(25%);
    z-index: -10;
    pointer-events: none;
}

.hero-bg-blob-pink {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 196, 214, 0.2);
    filter: blur(90px);
    border-radius: var(--radius-full);
    transform: translateX(-50%) translateY(-50%);
    z-index: -10;
    pointer-events: none;
}



/* Hero Grid */
.hero-container {
    display: grid;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hero Content (Left) */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .hero-content {
        padding-left: 32px;
    }
}

.hero-badge-text {
    /* letter-spacing: 0.1em;  */
    text-transform: uppercase;
    color: var(--color-gray-600);
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transform: rotate(-5deg);
    width: 200px;
    font-size: 15px;
    font-weight: 600;
}

.hero-badge-number {
    color: var(--color-primary);
    margin-left: 5px;
    font-size: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    /* line-height: 1.2; */
    position: relative;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 60px;
    }
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
}

.hero-title-highlight-text {
    position: relative;
    z-index: 10;
}

.hero-title-underline {
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: -4px;
    left: 0;
    z-index: 0;
    color: var(--color-primary);
}

.hero-description {
    font-size: 17px;
    color: var(--color-gray-600);
    max-width: 512px;
    line-height: 1.75;
}

.hero-subtitle {
    font-size: 15px;
    font-style: italic;
    color: var(--color-gray-600);
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
}

.hero-cta-btn {
    background-color: var(--color-primary);
    color: #000000;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.hero-cta-btn:hover {
    background-color: #c8b809;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.hero-cta-btn .material-icons-round {
    transition: transform 0.2s;
}

.hero-cta-btn:hover .material-icons-round {
    transform: translateX(4px);
}

/* Hero Image (Right) */
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob-gradient {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient( to top right, rgba(244, 226, 37, 0.3), rgba(165, 216, 255, 0.3));
    z-index: 0;
}

.hero-blob-white {
    position: absolute;
    width: 105%;
    height: 105%;
    background-color: #ffffff;
    z-index: 10;
    opacity: 0.9;
}

.hero-img-wrapper {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 448px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

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



/* Floating Cards */
.hero-float-heart {
    position: absolute;
    right: -16px;
    top: 80px;
    z-index: 30;
    background-color: #ffffff;
    padding: 13px 13px 7px 13px;
    border: 1px solid #fa3131a1;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    animation: bounce-anim 3s infinite;
}

.hero-float-heart .material-icons-round {
    color: #fa3131;
    font-size: 40px;
}

.hero-float-247 {
    position: absolute;
    left: -32px;
    bottom: 80px;
    z-index: 30;
    background-color: #ffffff;
    padding: 12px;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    animation: bounce-anim 4s infinite;
}

@media screen and (max-width: 768px) {
    .hero-float-247 {
        left: 0px;
        bottom: 50px;
    }
}

.hero-float-247-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-float-247-number {
    font-weight: 700;
    font-size: 24px;
}

.hero-float-247-label {
    font-size: 12px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}













/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
    position: relative;
}

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

.section-tag {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 16px;
}

.section-title-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-orange-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 96px;
    height: 8px;
    background-color: rgba(244, 226, 37, 0.3);
    margin: 0 auto;
    border-radius: var(--radius-full);
}


/* Feature Cards Grid */
.features-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 32px;
    border-radius: 32px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-gray-100);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(244, 226, 37, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

/* Accent corners for each card */
.feature-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    border-bottom-left-radius: var(--radius-full);
    margin-right: -40px;
    margin-top: -40px;
    transition: transform 0.5s;
}

.feature-card:hover .feature-card-accent {
    transform: scale(1.5);
}

.feature-card-accent-green {
    background-color: rgba(196, 240, 197, 0.2);
}

.feature-card-accent-blue {
    background-color: rgba(165, 216, 255, 0.2);
}

.feature-card-accent-pink {
    background-color: rgba(255, 196, 214, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
    color: var(--color-primary);
}

.feature-icon .material-icons-round {
    font-size: 30px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
}

.feature-description {
    color: var(--color-gray-600);
    position: relative;
    z-index: 10;
    line-height: 1.6;
}














/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* Gallery */
.about-gallery {
    position: relative;
}

.about-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-img-top {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(32px);
    object-fit: cover;
    height: 256px;
    width: 100%;
}

.about-img-bottom {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-16px);
    object-fit: cover;
    height: 256px;
    width: 100%;
}

.about-tape {
    position: absolute;
    top: 15%;
    left: 45%;
    width: 128px;
    height: 32px;
    background-color: rgba(254, 240, 138, 0.5);
    transform: rotate(45deg) translate(-50%, -50%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 20;
}



/* About Content */
.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-title-highlight-1 {
    color: #fa3131;
    text-decoration: underline wavy rgb(250, 49, 49, 0.5);
}

.about-title-highlight-2 {
    font-style: italic;
    color: var(--color-primary);
    text-decoration: underline wavy rgba(244, 226, 37, 0.5);
}

.about-prose {
    color: var(--color-gray-600);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.about-prose p {
    margin-bottom: 16px;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

















/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgba(244, 226, 37, 0.05);
}

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

.services-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-description {
    color: var(--color-gray-600);
    max-width: 672px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #ffffff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, border-bottom-color 0.3s;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--color-primary);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon .material-icons-round {
    font-size: 30px;
}

.service-icon-red {
    background-color: var(--color-red-100);
    color: var(--color-red-500);
}

.service-icon-blue {
    background-color: var(--color-blue-100);
    color: var(--color-blue-500);
}

.service-icon-green {
    background-color: var(--color-green-100);
    color: var(--color-green-500);
}

.service-icon-purple {
    background-color: var(--color-purple-100);
    color: var(--color-purple-500);
}

.service-icon-yellow {
    background-color: var(--color-yellow-100);
    color: var(--color-yellow-600);
}

.service-icon-orange {
    background-color: var(--color-orange-100);
    color: var(--color-orange-500);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-description {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-gray-500);
}











/* ============================================================
   DOCTORS TEAM SECTION
   ============================================================ */
.doctors-section {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.doctors-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}

.doctor-title-highlight {
    color: #fa3131;
}

.doctors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.doctor-card {
    text-align: center;
}

.doctor-card:hover .doctor-img-blob {
    transform: rotate(12deg);
}

.doctor-img-wrapper {
    width: 192px;
    height: 192px;
    margin: 0 auto 16px;
    position: relative;
}

.doctor-img-blob {
    position: absolute;
    inset: 0;
    transition: transform 0.5s;
}

.doctor-img-blob-yellow {
    background-color: rgba(244, 226, 37, 0.2);
}

.doctor-img-blob-blue {
    background-color: rgba(165, 216, 255, 0.3);
}

.doctor-img-blob-pink {
    background-color: rgba(255, 196, 214, 0.3);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.doctor-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-800);
}

.doctor-role {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 500;
}











/* ============================================================
   PROCESS / JOURNEY SECTION
   ============================================================ */
.process-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--color-bg-light);
    position: relative;
}

.process-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}

.process-steps-wrapper {
    position: relative;
    max-width: 896px;
    margin: 0 auto;
}

.process-connector {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 80px;
    transform: translateY(-50%);
    z-index: 0;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
    }
}

.process-steps {
    display: grid;
    gap: 32px;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-item {
    text-align: center;
}

.step-item-offset {
    /* Applied to step 2 on desktop */
    margin-top: 0;
}

@media (min-width: 768px) {
    .step-item-offset {
        margin-top: 32px;
    }
}

.step-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background-color: #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-circle-primary {
    border: 4px solid var(--color-primary);
}

.step-circle-blue {
    border: 4px solid var(--color-watercolor-blue);
}

.step-circle-green {
    border: 4px solid var(--color-watercolor-green);
}

.step-number {
    font-size: 24px;
    font-weight: 700;
}

.step-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.step-description {
    font-size: 14px;
    color: var(--color-gray-500);
}











/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgba(244, 226, 37, 0.1);
}

.gallery-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    transition: transform 0.3s;
}

.gallery-item-r2 {
    transform: rotate(2deg);
}

.gallery-item-rn3 {
    transform: rotate(-3deg);
    margin-top: 32px;
}

.gallery-item-r1 {
    transform: rotate(1deg);
}

.gallery-item-rn2 {
    transform: rotate(-2deg);
    margin-top: 32px;
}

@media (min-width: 768px) {
    .gallery-item-rn3,
    .gallery-item-rn2 {
        margin-top: 0;
    }
}

.gallery-item:hover {
    transform: rotate(0deg);
}

.gallery-pin {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    z-index: 20;
    border-style: solid;
    border-width: 1px;
    /* left offset to center the pin */
    margin-left: -8px;
}

.gallery-pin-gray {
    background-color: #9ca3af;
    border-color: #6b7280;
}

.gallery-pin-red {
    background-color: #f87171;
    border-color: #ef4444;
}

.gallery-pin-blue {
    background-color: #60a5fa;
    border-color: #3b82f6;
}

.gallery-pin-green {
    background-color: #4ade80;
    border-color: #22c55e;
}

.gallery-frame {
    background-color: #ffffff;
    padding: 8px 8px 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}










/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.testimonial-title-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-orange-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 95px;
    height: 8px;
    background-color: rgba(255, 234, 0, 0.4);
    /* background-color: rgba(244, 226, 37, 0.3); */
    margin: 0 auto;
    margin-bottom: 50px;
    /* border-radius: var(--radius-full); */
}

.testimonials-grid {
    display: grid;
    gap: 40px;
    max-width: 1024px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-bubble {
    position: relative;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-gray-100);
    margin-bottom: 24px;
    width: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray-600);
}

.testimonial-tail {
    position: absolute;
    bottom: -12px;
    left: 32px;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-gray-100);
    border-right: 1px solid var(--color-gray-100);
    transform: rotate(45deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: flex-start;
    padding-left: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    object-fit: cover;
}

.author-name {
    font-weight: 700;
}

.author-meta {
    font-size: 12px;
    color: var(--color-gray-500);
}













/* ============================================================
   FAQ SECTION
   ============================================================ */
    .faq-section {
        padding: 80px 0;
        /* background: #fff; */
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 15px;
        overflow: hidden;
        border: none;
    }

    .faq-item-1, .faq-item-6{
        background-color: #e3f2fd;
        border-left: 5px solid #64b5f6;
    }

    .faq-item-2, .faq-item-7{
        background-color: #fff9c4;
        border-left: 5px solid #fbc02d;
    }

    .faq-item-3{
        background-color: #e8f5e9;
        border-left: 5px solid #81c784;
    }

    .faq-item-4{
        background-color: #fce4ec;
        border-left: 5px solid #f06292;
    }

    .faq-item-5{
        background-color: #fff3e0;
        border-left: 5px solid #ffb74d;
    }

    .faq-question {
        width: 100%;
        text-align: left;
        padding: 20px;
        background: none;
        border: none;
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.3s;
    }

    /* Accordion Logic using details/summary for simplicity & no JS as requested */
    details.faq-item summary {
        /* list-style: none; */
        outline: none;
    }

    details.faq-item summary::-webkit-details-marker {
        display: none;
    }

    details.faq-item[open] summary {
        border-bottom: 1px solid #eee;
    }

    details.faq-item p {
        padding: 20px;
        margin: 0;
        background: #ffffff;
    }

    









/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.newsletter-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.1;
    pointer-events: none;
}

.newsletter-inner {
    position: relative;
    z-index: 10;
}

.newsletter-card {
    background-color: rgba(244, 226, 37, 0.2);
    border-radius: 48px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media (min-width: 768px) {
    .newsletter-card {
        width: 1000px;
        margin: auto;
        flex-direction: row;
        padding: 40px 40px;
    }
}

.newsletter-content {
    width: 100%;
}

@media (min-width: 768px) {
    .newsletter-content {
        width: 50%;
    }
}

.newsletter-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-description {
    margin-bottom: 32px;
    color: var(--color-gray-700);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: var(--color-gray-800);
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px var(--color-primary);
}

.newsletter-submit {
    background-color: #000000;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background-color: #1f2937;
    transform: scale(1.05);
}

.newsletter-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .newsletter-illustration {
        width: 50%;
    }
}

.newsletter-illustration-img {
    width: 192px;
    height: 192px;
    border-radius: var(--radius-full);
}














/* ============================================================
   CONTACT & MESSAGE SEND
   ============================================================ */
    .con-msg-section {
    padding: 30px 0 30px 0;
    background-color: white;
    max-width: 1280px;
    margin: auto;
    border-radius: 50px 50px 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}


/* Subtle watercolor blobs via pseudo-elements */
.con-msg-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 226, 37, 0.1) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.con-msg-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(250, 49, 49, 0.05) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
}

/* Left column – single card containing all contact details */
.col-contact {
    display: flex;
    flex-direction: column;
}

.contact-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-gray-800);
    position: relative;
    display: block;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .contact-heading {
        font-size: 1.75rem;
    }
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
}


/* Contact items inside the card – now more compact */
.contact-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0.5rem;
    border-radius: 1rem;
    align-items: flex-start;
}

@media screen and (max-width: 640px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.contact-item:last-child {
    border-bottom: none;
}


.contact-icon {
    font-size: 1.8rem;
    color: #b1a200;
    flex-shrink: 0;
    background-color: rgba(244, 226, 37, 0.1);
    border: 1px solid #f4e225;
    padding: 0.4rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-gray-600);
}

.contact-text strong {
    color: var(--color-gray-800);
    font-weight: 700;
    display: block;
    margin-bottom: 0.15rem;
}

.contact-link {
    color: #0069d1;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: #fa3131;
    text-decoration: underline wavy rgba(250, 49, 49, 0.5);
}

/* Right column – form card (unchanged, for reference) */
.col-form {
    background-color: #fffbd0;
    border-radius: 20px;
    padding: 30px 20px 20px 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    /* border: 1px solid rgba(244, 226, 37, 0.2); */
}

/* Form elements (unchanged, for completeness) */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.2s;
    outline: none;
    color: var(--color-gray-800);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(244, 226, 37, 0.15);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
    .form-buttons {
        flex-direction: column;
    }
}

.btn-submit {
    flex: 1 1 auto;
    min-width: 160px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media screen and (max-width: 640px) {
    .btn-submit {
        width: 100%;
    }
}

.btn-submit:hover {
    transform: scale(1.02);
}

.btn-whatsapp{
    background-color: #25d366;    
    flex: 1;
}

.btn-whatsapp:hover{    
    background-color: #0ba744;
    color: white;
    box-shadow: 0 10px 15px 0px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background-color: #0069d1;
    color: white;
    flex: 1;
}

.btn-email:hover {
    background-color: #004a95;
    box-shadow: 0 10px 15px 0px rgba(0, 0, 144, 0.3);
}











/* ============================================================
   MAP
   ============================================================ */
.map-section {
    text-align: center;
    max-width: 1280px;
    margin: auto;
}

.map-iframe{
    width: 100%;
}














/* ============================================================
   FOOTER
   ============================================================ */
.footer-bottom {
    background-color: black;
    color: white;
    padding: 3px 10px 8px 10px;
    font-size: 13px;
    font-weight: bold;
    margin: auto;
    max-width: 1280px;
    border: none;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
}

@media screen and (max-width:768px) {
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }
}













/* ============================================================
   APPOINTMENT MODAL
   ============================================================ */
.appointment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.appointment-modal.active {
    display: flex;
}

.appointment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(216, 216, 216, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.appointment-modal-content {
    position: relative;
    z-index: 2;
    background-color: white;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 95vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.appointment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 8px 15px;              
    margin: 0;
    border-radius: 10px 10px 0 0;
}

.appointment-modal-title {
    font-size: 20px;
    color: #ffffff;
}

.appointment-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-modal-close:hover {
    color: #fa3131;
}



/* Form inside modal */
.appointment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* max-height: 100%; */
    /* overflow-y: auto; */


    /* Take remaining vertical space */
    flex: 1;
    /* Enable scrolling */
    overflow-y: auto;
    /* Add padding inside the form for spacing */
    padding: 15px;
}

@media screen and (max-width:580px) {
    .appointment-form {
        grid-template-columns: 1fr;
    }
}

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

.form-label {
    font-size: 14px;
    font-weight: 500;
}

.form-group input, .form-group select{
    border:  1px solid rgb(207, 207, 207);
    padding: 8px 10px;
    font-size: 16px;
}

.required {
    color: #fa3131;
}

.btn-submit-modal{
    font-size: 15px;
    padding: 8px 10px;
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-submit-modal.btn-whatsapp {
    color: black;
}

.btn-submit-modal.btn-whatsapp:hover {
    color: white;
}

/* Disabled state for submit buttons */
.btn-submit-modal:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit-modal:disabled:hover {
    transform: none;
    box-shadow: none;
}













/* media queries */
@media screen and (max-width: 380px) {
    body {display: none;}
}