
.hero-fullscreen {
    position: relative;
    width: 100%; 
    height: 75vh; 
    overflow: hidden;
}

/* --- Background and Animation --- */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    transition: transform 50s ease-out; 
    animation: zoom-in-out 50s linear infinite alternate;
}

@keyframes zoom-in-out {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); } /* Zoom in slowly */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

/* --- Content Styling (Left-Center Alignment) --- */
.hero-content {
    position: absolute;
    top: 50%;
    left: 10%; 
    transform: translateY(-50%); 
    max-width: 900px; 
    color: #ffffff;
    z-index: 3;
    text-align: left;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}




/* ========about========== */



.eye-hero-banner {
  /* background: linear-gradient(135deg, #fffaf3, #fff1e6); */
  padding: 100px 20px;
  overflow: hidden;
  position: relative;
  font-family: "Syne", sans-serif;
}

.eye-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.eye-text-content {
  flex: 1;
}


.eye-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.eye-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.eye-hero-description {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
  text-align: justify;
}


.eye-image-content {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}

.eye-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  
  border-radius: 35% 65% 45% 55% / 50% 40% 60% 50%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  filter: drop-shadow(0 0 20px rgba(255,200,120,0.2));
  animation: liquidMorph 12s ease-in-out infinite, rotateSubtle 15s linear infinite;
  transform-origin: center center;
}

.glow-halo {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,120,0.25) 0%, transparent 70%);
  filter: blur(50px);
  animation: haloPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.shimmer-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  pointer-events: none;
  animation: shimmerSlide 4s infinite;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,200,120,0.2);
  animation: particleFloat 5s ease-in-out infinite alternate;
}

.particle-1 { width: 12px; height: 12px; top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { width: 8px; height: 8px; bottom: 15%; right: 10%; animation-delay: 1s; }
.particle-3 { width: 10px; height: 10px; top: 50%; right: 5%; animation-delay: 2s; }

@keyframes liquidMorph {
  0% {
    border-radius: 35% 65% 45% 55% / 50% 40% 60% 50%;
  }
  10% {
    border-radius: 60% 40% 55% 45% / 60% 30% 70% 40%;
  }
  20% {
    border-radius: 40% 60% 65% 35% / 50% 60% 40% 50%;
  }
  30% {
    border-radius: 55% 45% 35% 65% / 70% 50% 60% 40%;
  }
  40% {
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  }
  50% {
    border-radius: 65% 35% 50% 50% / 40% 60% 50% 60%;
  }
  60% {
    border-radius: 50% 50% 45% 55% / 55% 40% 60% 45%;
  }
  70% {
    border-radius: 40% 60% 50% 50% / 60% 50% 40% 55%;
  }
  80% {
    border-radius: 55% 45% 60% 40% / 50% 55% 50% 45%;
  }
  90% {
    border-radius: 45% 55% 35% 65% / 60% 45% 55% 50%;
  }
  100% {
    border-radius: 35% 65% 45% 55% / 50% 40% 60% 50%;
  }
}

@keyframes rotateSubtle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes haloPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 1; }
}

@keyframes shimmerSlide {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@keyframes particleFloat {
  0%   { transform: translate(0,0) rotate(0deg); opacity: 0.6; }
  50%  { transform: translate(4px,-8px) rotate(20deg); opacity: 1; }
  100% { transform: translate(0,0) rotate(0deg); opacity: 0.6; }
}


@media(max-width: 768px) {
  .eye-hero-content { flex-direction: column; text-align: center; }
  .image-wrapper { margin-top: 40px; }
  .eye-hero-title { font-size: 2.5rem; }
  .eye-hero-subtitle { font-size: 1.25rem; }
  .eye-hero-description { font-size: 1.05rem; }
  .particle { display: none; }
}






/* ==========service=========== */



        .bridal-services-container {
            width: 100%;
            margin: 0 auto;
            padding: 50px 90px;
            background-color: #ededed;
        }

        .title-section {
            margin-bottom: 40px;
        }
        
        .title-section h1 { 
            font-size: 2.4em; 
            font-weight: 700; 
            color: #333; 
            margin-bottom: 10px; 
        }
        .title-section p { 
            font-size: 1em; 
            line-height: 1.5;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; 
            grid-template-rows: 1fr 1fr; 
            gap: 25px; 
            height: 650px;
        }
        
        .left-part, .right-part {
            display: grid; 
            grid-template-rows: 1fr 1fr;
            gap: 25px;
            height: 100%; 
        }

        .tall-cards-row {
            display: flex; 
            gap: 25px;
        }
        
        .card {
            background-color: #fff;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            color: #333; 
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px; 
            background-size: cover;
            background-position: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
            height: 100%;
            transition: transform 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }

        .card.half-width {
            width: calc(50% - 12.5px); 
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.7); 
            z-index: 1;
        }
        
        .card-content {
            position: relative;
            z-index: 2;
        }

        .category {
            font-size: 0.85em;
            font-weight: 600;
            color: #e66465; 
            margin-bottom: 8px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .card-title {
            font-size: 1.8em; 
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .card-body {
            font-size: 1em;
            color: #555;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .card-ideal {
            font-size: 0.9em;
            color: #777;
            font-style: italic;
            border-left: 3px solid #ccc;
            padding-left: 10px;
        }


        .card-1 { 
            background-image: url(images/Cryo-Cooling-Pore.jpg); 
        }
        .card-1::before {
            background: rgba(207, 244, 255, 0.612); 
        }

        .card-2 { 
            background-image: url(images/Soothing-Anti-Inflammatory.jpg); 
        }
        .card-2::before {
            background: rgba(255, 186, 209, 0.586); 
        }

        .card-3 { 
            background-image: url(images/Firming-Anti-Aging.jpg); 
        }
        .card-3::before {
            background: rgba(213, 255, 213, 0.629); 
        }

        .card-4 { 
            background-image: url(images/Instant-Brightness-Glow.jpg); 
        }
        .card-4::before {
            background: rgba(255, 255, 219, 0.616); 
        }

        .card-5 { 
            background-image: url(images/Hydration-smoothness.jpg); 
        }
        .card-5::before {
            background: rgba(225, 209, 255, 0.547); 
        }
        
        .card-6 { 
            background-image: url(images/Instant-Refresh-Effect.jpg);
            color: #fff; 
        }
        .card-6::before {
            background: linear-gradient(to bottom, rgba(73, 80, 87, 0.656), rgba(0, 0, 0, 0.492)); 
            z-index: 1;
        }
        .card-6 .category { color: #ffd1a5; } 
        .card-6 .card-body, .card-6 .card-ideal { color: #eee; }
        .card-6 .card-ideal { border-left-color: #fff; }



        @media (max-width: 768px) {
            .cards-grid {
                display: flex;
                flex-direction: column;
                height: auto; 
                gap: 20px; 
            }

            .bridal-services-container{
                padding: 30px 20px;
            }

            .left-part, .right-part {
                display: flex;
                flex-direction: column;
                gap: 20px;
                height: auto;
            }
            
            .card {
                width: 100% !important; 
                min-height: 250px; 
                height: auto;
            }
            
            .card.half-width {
                width: 100%;
            }
            
            .tall-cards-row {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
            
            .card-1-content-wrapper { width: 100%; }
            .card-title { font-size: 1.5em; }
        }
        




/* ================why choice us========== */


.message-grid:hover .massage-card {
  filter: grayscale(100%) !important;
  transition: filter 0.3s ease !important;
}

.message-grid:hover .massage-card:hover {
  filter: grayscale(0%) !important;
}


.treatments-section-container {
    margin: 0;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 60px 0 60px 0;
}


.treatments-section-perfect {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    grid-template-rows: 1fr;
    max-width: 1200px;
    position: relative;
    min-height: 400px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); 
}

.treatments-section-perfect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; 
    height: 100%;
    background-color: #ffdede;
    z-index: 1; 
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0% 100%);
    transform: translate(-30px, -30px); 
}

.content-box-perfect {
    grid-column: 5 / 13; 
    grid-row: 1 / 2;
    background-color: #fff;
    padding: 60px 50px 50px 200px;
    z-index: 2; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
    position: relative;
}

.image-wrapper-perfect {
    grid-column: 1 / 6; 
    grid-row: 1 / 2;
    z-index: 3; 
    position: relative;
    
    align-self: center; 
    transform: translateX(40px);
    margin:0 0px 0px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
}

.image-wrapper-perfect img {
    display: block;
    width: 100%;
    height: 550px; 
    object-fit: cover;
    object-position: top;
}



.title-perfect {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 25px;
}

.content-box-perfect ul,
.description-perfect {
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
    font-size: 1rem;
}


@media (max-width: 900px) {
    .treatments-section-perfect {
        display: flex; 
        flex-direction: column; 
        gap: 0; 
        min-height: auto;
    }

    .treatments-section-perfect::before {
        width: 100%;
        height: 150px;
        clip-path: none;
        transform: translate(0, 0);
        z-index: 0; 
    }

    .image-wrapper-perfect {
        width: 100%;
        max-width: none;
        transform: translate(0, 0);
        order: 1; 
        height: 350px;
        margin-bottom: 40px;
    }

    .image-wrapper-perfect img {
        height: 100%;
    }

    .content-box-perfect {
        order: 2; 
        padding: 40px 20px;
        box-shadow: none;
        margin-top: -50px; 
    }
}





/* =========Process============ */


.process-container {
        background: linear-gradient(rgba(255, 255, 255, 0.142), rgba(219, 219, 219, 0.181)), url(images/h2-background.png);
        /* background-image: url(images/h2-background.png); */
        background-size: cover;
        background-position: bottom;
        padding: 50px 20px;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        
      }

 

      .benifit-container {
        max-width: 1200px;
        width: 100%;
        position: relative;
        z-index: 2;
      }

      .main-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
        align-items: start;
      }

      .first-column {
        display: flex;
        flex-direction: column;
        gap: 60px;
      }

      .am-header h1 {
        font-size: 2.5rem;
        color: var(--dark);
        /* margin-bottom: 20px; */
        letter-spacing: -0.02em;
        line-height: 1.1;
      }

      .peocess-description{
        font-size: 1.1rem !important;
        color: #777;
        margin-top: 10px;
      }
      .accent-line {
        width: 80px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
        margin-bottom: 32px;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--primary);
        color: var(--white);
        padding: 14px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
      }
      .cta-button:hover {
        background: var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
      }

      .second-column,
      .third-column {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .second-column { margin-top: 120px; }

      /* Cards */
      .am-service-card {
        background: var(--white);
        padding: 40px 36px;
        border-radius: 25% 0 25% 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        transition: var(--transition);
        min-height: 220px;
      }

      /* Decorative cut-curve before with numbers */
      .am-service-card::before {
        content: attr(data-number);
        position: absolute;
        top: -10px;
        right: -10px;
        width: 100px;
        height: 100px;
        background: var(--accent);
        border-radius: 0 0 0 100px;
        color: var(--dark);
        font-size: 2rem;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: -1;
      }

      /* Removed ::after as requested */

      .am-service-card:hover {
        transform: translateY(-12px) scale(1.04);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, var(--accent), var(--light));
      }

      /* Card icon */
      .card-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        color: var(--primary);
        font-size: 24px;
        transition: var(--transition);
        position: relative;
        z-index: 1;
      }

      .am-service-card:hover .card-icon {
        transform: scale(1.2) rotate(15deg);
        background: var(--white);
        color: var(--primary);
      }

      .am-service-card h3 {
        font-size: 1.3rem;
        color: var(--dark);
        margin-bottom: 14px;
        z-index: 1;
      }
      .am-service-card p {
        color: var(--gray);
        font-size: 1rem;
        z-index: 1;
        line-height: 1.6;
      }

      @media (max-width: 1024px) {
        .main-grid { grid-template-columns: 1fr; gap: 40px; }
        .second-column { margin-top: 0; }
        .am-header h1 { font-size: 2.8rem; }
      }
      @media (max-width: 768px) {
        .process-container { padding: 60px 24px; }
        .am-header h1 { font-size: 2.2rem; }
        .am-service-card { padding: 32px 28px; }
        .card-icon { width: 56px; height: 56px; font-size: 22px; }
        .process-container{background-position: right bottom;}
      }
      @media (max-width: 480px) {
        .am-header h1 { font-size: 1.8rem; }
        .cta-button { padding: 12px 24px; font-size: 0.8rem; }
        .am-service-card h3 { font-size: 1.15rem; }
        .am-service-card p { font-size: 0.95rem; }
      }





      /* =============Portfolio=========== */


           
:root {
            --transition: all 0.3s ease-in-out;
            --white: #ffffff;
            --gap-size: 15px;
            --tall-image-height: 500px;
            /* (500px - 15px gap) / 2 = 242.5px */
            --short-image-height: 242.5px; 
        }

.bridal-portfoli-box{
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #ffffff;
            padding: 40px 0;
            overflow-x: hidden; 
            margin-top: 40px;
}

.section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-header p {
            font-size: 1.1rem;
            /* color: #666; */
            line-height: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

.portfolio-title {
            font-size: 2em;
            font-weight: normal;
            color: #333;
            margin-bottom: 30px;
            padding-top: 20px;
        }

        /* --- Structural Layout using Flexbox for Columns --- */
        .portfolio-container {
            display: flex;
            gap: var(--gap-size);
            max-width: 1100px; 
            width: 90%;
            /* Set the fixed height for the entire section */
            height: var(--tall-image-height); 
        }

        /* The three main columns */
        .column-left, .column-center, .column-right {
            display: flex;
            flex-direction: column;
            gap: var(--gap-size);
            height: 100%; 
        }

        /* Column Widths (Control by flex ratio) */
        /* Adjusted width ratio for visual balance */
        .column-left { flex: 1; }
        .column-center { flex: .5; }
        .column-right { flex: 1; }

        /* --- Gallery Item and Image Styles --- */
        .gallery-item {
            overflow: hidden; 
            position: relative;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            display: block; 
        }

        /* --- FIXED HEIGHT DEFINITIONS --- */

        /* Item 1 (Left) and Item 5 (Right) - Set to 500px */
        .column-left .gallery-item,
        .column-right .gallery-item {
            height: var(--tall-image-height); /* 500px */
        }

        /* Items 2 and 4 (Center) - Set to 242.5px each */
        .column-center .gallery-item {
            height: var(--short-image-height); /* 242.5px */
            width: 350px;
        }


        /* --- HOVER EFFECTS --- */
        .gallery-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4); display: flex; align-items: center;
            justify-content: center; opacity: 0; transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay i { color: var(--white); font-size: 2rem; }
        .gallery-item:hover img { transform: scale(1.1); }

        /* --- MODAL STYLES (Unchanged) --- */
        .modal {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.9); z-index: 1000; overflow: hidden;
        }
        .modal-content {
            position: relative; width: 100%; height: 100%; display: flex;
            align-items: center; justify-content: center;
        }
        .modal-image { max-width: 90%; max-height: 90%; object-fit: contain; }
        .close-btn { position: absolute; top: 16px; right: 30px; color: var(--white); font-size: 2.5rem; cursor: pointer; z-index: 1001; }
        .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 2.5rem; cursor: pointer; z-index: 1001; }
        .prev-btn { left: 30px; }
        .next-btn { right: 30px; }
        .action-buttons { position: absolute; top: 20px; right: 80px; display: flex; gap: 15px; z-index: 1001; }
        .action-btn {
            color: var(--white); font-size: 1.1rem; cursor: pointer; width: 45px; height: 45px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
        }
        .image-counter {
            position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
            color: var(--white); font-size: 1.1rem; padding: 5px 15px; border-radius: 20px;
            background-color: rgba(0, 0, 0, 0.5); 
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 768px) {
            .portfolio-container {
                flex-direction: column;
                width: 95%;
                height: auto; /* Remove fixed height on mobile */
            }
            .column-left, .column-center, .column-right {
                flex: none; 
                width: 100%;
                height: auto;
            }
            /* Use a standard mobile height for all items when stacked */
            .column-left .gallery-item, 
            .column-center .gallery-item,
            .column-right .gallery-item {
                height: 300px; 
            }
        }






        /* ===========Question & Answer======= */


        :root {
            --color-accent: #00bcd4; /* Aqua Blue Accent */
            --color-text-dark: #333333; 
            --color-text-subtle: #666666;
            --color-background-white: #ffffff;
            --color-background-soft: #f4f8fb; 
            --color-border-light: #e0e0e0;
            --font-body: 'Syne', sans-serif !important;
            --transition-speed: 0.4s;
            --padding-vertical: 20px;
        }

        .faq-section{
            background-color: #f1f1f1;
            padding: 40px 50px;
        }

        .faq-section-heading{
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
        }

        .faq-section-heading h2 {
            font-size: 2.5em;
            margin-bottom: 1em;
            text-align: center;
            font-weight: 700;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 40px;
            color: var(--color-text-subtle);
            font-size: 1.1em;
        }

        .faq-accordion {
            border-radius: 12px;
            background-color: var(--color-background-white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border-light);
            list-style: none;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-item:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; }
        .faq-item:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }

        .faq-question-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: 600;
            color: var(--color-text-dark);
            transition: color 0.3s;
            list-style: none;
        }
        .faq-question-header::-webkit-details-marker,
        .faq-question-header::marker {
            display: none;
        }
        
        .faq-item:hover .faq-question-header {
            color: var(--color-accent);
        }

        .faq-item[open] .faq-question-header {
            color: var(--color-accent);
            background-color: var(--color-background-soft);
        }

        .faq-icon {
            font-size: 1.1em;
            color: var(--color-text-subtle);
            transition: transform var(--transition-speed) ease, color 0.3s;
        }

        .faq-item[open] .faq-icon {
            transform: rotate(180deg);
            color: var(--color-accent);
        }

        .faq-answer-content {
            padding: 0 25px;
            color: var(--color-text-subtle);
            max-height: 0; 
            overflow: hidden;
            transition: max-height var(--transition-speed) ease-in-out, padding var(--transition-speed) ease-in-out;
        }
        
        .faq-answer-content p {
            margin: 0;
            padding-bottom: 20px;
        }

        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .faq-section-heading h2 {
                font-size: 2em;
            }
            .faq-question-header {
                padding: 15px 20px;
                font-size: 1em;
            }
            .faq-section{
              padding: 30px 10px;
            }
        }



        /* ===========CTA=========== */


        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.481), rgba(0, 0, 0, 0.558)), url(images/book-Frost-Facial-Session.jpg);
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            max-width: 860px;
            margin: 0 auto 30px;
            font-size: 1rem;
            font-family: 'Syne', sans-serif !important;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--secondary);
            color: var(--white);
            border: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .cta-btn:hover {
            background: black;
            transform: translateY(-3px);
        }