/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* Custom Fonts */
@font-face {
    font-family: "heading";
    src: url("/assets/fonts/Pencil_Child.otf") format("opentype"); 
}

@font-face {
    font-family: "title";
    src: url("/assets/fonts/SchoolYard.otf") format("opentype"); 
}

@font-face {
    font-family: "accent";
    src: url("/assets/fonts/GelPen.ttf") format("truetype"); 
}

:root {
    /* Fonts */
    --heading: "heading", monospace;
    --title: "title", monospace;
    --accent: "accent", monospace;
    --text: "DM Sans", monospace;
  
    /* Colors */
    --primary: #FFD5D6;
    --secondary_blue: #CFEAE2;
    --secondary_pink: #F8EFEA;

    --accent_pink: #E9A6A9;
    --accent_grey: #BFB6B2;
    --accent_green: #A4C3A2;

    --neutral_cream: #D8C7C1;
    --neutral_brown: #3C2F2F;

    --grey: #616161;
    --light-grey: #d8d8d8;
  
    --white: #fff;
    --black: #000;
  
    --bg: #FFF9F9;


    /* Styles */
    --box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    --border: 2px solid black
}

/* Styling Reset Defaults*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

button {
    color: #000;
}

span {
  color: var(--accent_pink);
}

ul {
    list-style: none;
}

/* Responsive Page */
.page {
    position: relative;
    display: flex;
    justify-content: center;
}
  
.page-container {
    width: 100%;
    max-width: 1280px;
    overflow-x: hidden;
    position: relative; 
    padding: 0 0.5rem; 
}

.page-docs-container {
    width: 100%;
    max-width: 1280px;
    position: relative; 
    padding: 0 0.5rem; 
}

@media (max-width: 968px) {
    .page-docs-container {
      overflow: hidden;
    }
  }


/* Backgrouds */
.background {
    background-color: var(--secondary_pink);
    color: var(--black);
}


/* #Heading Styles */
h1 {
    font-family: var(--heading);
    font-weight: 500;
    font-size: clamp(2rem, 8vw, 6rem);
    line-height: clamp(2rem, 8vw, 6rem);
}

h2 {
    font-family: var(--title);
    font-weight: 500;
    font-size: clamp(2rem, 6vw, 4rem);
}

h3 {
    font-family: var(--title);
    font-weight: 500;
    font-size: clamp(1.75rem, 5vw, 3rem);
}

h4 {
    font-family: var(--title);
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h5 {
    font-family: var(--title);
    font-weight: 500;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h6 {
    font-family: var(--accent);
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

/* Scroll Bar Settings */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 black; 
}
body::-webkit-scrollbar {
    width: 8px; 
    height: 8px; 
}
body::-webkit-scrollbar-track {
    background: black; 
    border-radius: 10px;
} 
body::-webkit-scrollbar-thumb {
    background-color: #888; 
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #555; 
}
  

/* General Style */
body {
    font-family: var(--text);
    font-size: 1rem;
    background-color: var(--bg);
}

.width-70 {
    max-width: 70%;
}
@media (max-width: 768px) {
    .width-70 {
        max-width: 100%;
    }
}

.section-break {
    height: 6rem;
}

/* 
========================
=== Buttons (Unified Shine — Corrected Sizes)
========================
*/

/* --- Base Styles --- */
button,
.primary-btn,
.info-btn,
.header-btn,
.cta-btn,
.submit-btn {
  font-family: var(--text);
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  border: var(--border);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--neutral_brown);
}

/* --- Universal Shine Effect --- */
button::after,
.primary-btn::after,
.info-btn::after,
.header-btn::after,
.cta-btn::after,
.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.6s ease;
}

button:hover::after,
.primary-btn:hover::after,
.info-btn:hover::after,
.header-btn:hover::after,
.cta-btn:hover::after,
.submit-btn:hover::after {
  left: 100%;
}

button:hover,
.primary-btn:hover,
.info-btn:hover,
.header-btn:hover,
.cta-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

/* --- Individual Button Types --- */

/* Primary */
.primary-btn {
  background-color: var(--primary);
  padding: 0.5rem 1rem; /* Original size restored */
  font-size: 1.25rem;
}

/* Header */
.header-btn {
  background-color: var(--primary);
  font-size: 1.25rem;
  padding: 0.25rem 1.5rem; /* Keep header scale */
}

/* CTA */
.cta-btn {
  width: 100%;
  border-radius: 12px;
  padding: 0.75rem 0; /* Original restored */
  font-size: 1.25rem;
  font-weight: 600;
  background-color: var(--white);
}

/* Submit */
.submit-btn {
  width: 100%;
  margin-top: 1rem;
  background: var(--white);
  padding: 0.75rem;
  font-weight: bold;
}

/* Info (link-style, still shiny) */
.info-btn {
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: var(--neutral_brown);
  text-decoration: underline;
  font-weight: 500;
}

.info-btn:hover {
  color: var(--accent_pink);
  transform: translateY(-1px);
}





/* 
====================
=== Nav Header # ===
====================
*/
.header-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    top: 0;
    z-index: 999;
    padding: 0, .5rem;
}

.header {
    min-height: 3rem;
    max-width: 1280px;
    width: 100%;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 0.15rem 2rem;
    background-color: var(--bg);
}

.header-logo img {
    max-width: 48px;
    transition: transform 0.3s ease;
}

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

.header-container ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-container ul li {
    position: relative;
}

.header-container ul li a {
    color: var(--black);
    text-decoration: none;
    font-family: var(--text);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header-container ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent_pink);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
    transform-origin: left;
}

.header-container ul li a:hover {
    color: var(--accent_pink);
}

.header-container ul li a:hover::after {
    width: 100%;
}

.header-container ul li a.active {
    color: var(--accent_pink);
}

.header-container ul li a.active::after {
    width: 100%;
}

.logo-link {
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
}

.logo-link::after {
    content: none !important;
}

.header-cta {
    margin-left: 2rem;
}


.logo-link img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}


@media (max-width: 768px) {
    .hide {
        display: none;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
}



/* 
=================
=== Navbar (Refined)
=================
*/
.navbar-wrap {
    width: 100%;
    position: fixed;
    bottom: 20px;
    left: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 9999;
}

.navbar {
    width: fit-content;
    max-width: 1280px;
    border: var(--border);
    border-radius: 99px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: var(--primary);
    box-shadow: var(--box-shadow);
}

.navbar.sticky {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* === Nav Links === */
.nav-links {
    display: flex;
    list-style: none;
    background-color: var(--primary);
    padding: 12px 21px;
    border-radius: 30px;
    align-items: center;
    margin: 0;
    box-shadow: var(--box-shadow);
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: var(--neutral_brown);
    font-weight: bold;
    text-decoration: none;
    padding: 5px;
    font-size: 1rem;
    font-family: var(--text);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--neutral_brown);
    transition: width 0.3s ease, background-color 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links a:hover::after {
    width: 100%;
    background-color: var(--black);
}

.nav-links a.active {
    color: var(--black);
}

.nav-links a.active::after {
    width: 100%;
    background-color: var(--black);
}

/* === CTA Button === */
.nav-cta-button {
    padding: 0.25rem 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-family: var(--heading);
    background-color: var(--accent_green);
    border-radius: 99px;
    border: var(--border);
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.nav-cta-button:hover {
    background-color: var(--neutral_brown);
    color: var(--white);
}

/* === Hamburger (Mobile) === */
.hamburger {
    display: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    background-color: var(--neutral_brown);
    border-radius: 50%;
    padding: 0.75rem;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: var(--border);
}

.hamburger.sticky {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.bar {
    height: 2px;
    width: 100%;
    background-color: var(--white);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.desktop-hide {
    display: none;
}

/* === Mobile Layout === */
@media screen and (max-width: 768px) {
    .navbar-wrap {
        justify-content: flex-end;
        pointer-events: all;
    }

    .desktop-hide {
        display: block;
    }

    .navbar {
        border: none;
        background: none;
        width: auto;
        margin-right: 0.5rem;
        box-shadow: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        bottom: 70px;
        right: 20px;
        padding: 1.25rem;
        border-radius: 16px;
        background-color: var(--secondary_pink);
        flex-direction: column;
        gap: 0.75rem;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.3s ease;
        min-width: 200px;
        border: var(--border);
        box-shadow: var(--box-shadow);
    }

    .nav-links.show {
        display: flex;
        transform: translateX(0);
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        text-align: center;
        background: var(--bg);
        border: var(--border);
        border-radius: 6px;
        padding: 0.25rem 0;
        transition: all 0.3s ease;
    }

    .nav-links li a {
        display: block;
        font-size: 1rem;
        border-radius: 6px;
        color: var(--neutral_brown);
    }

    .nav-links li a:hover {
        background-color: var(--accent_pink);
        color: var(--black);
    }

    .nav-cta-button {
        width: 100%;
        font-size: 1rem;
        border: var(--border);
        background-color: var(--accent_green);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}



/* 
==================
=== Hero (Refined)
==================
*/
.hero {
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 70vh;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Subtle floating background bubbles for depth */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--secondary_blue);
    opacity: 0.3;
    animation: float 12s ease-in-out infinite;
    z-index: -1;
}

.hero::before {
    width: 350px;
    height: 350px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.hero::after {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: 10%;
    background: var(--secondary_pink);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-heading {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--neutral_brown);
    font-family: var(--heading);
    z-index: 2;
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

.hero p {
    text-align: center;
    font-family: var(--text);
    max-width: 600px;
    margin-top: 1rem;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.accent-heading {
    color: var(--accent_pink);
    padding: .25rem;
}

.hero-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-heading-wrap img {
    width: 120px;
    transition: transform 3s ease-in-out;
    animation: bubbleFloat 6s ease-in-out infinite;
}

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

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    z-index: 2;
}

.hero-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    height: 100vh;
    padding: .5rem;
    z-index: 0;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-socials a {
    color: var(--neutral_brown);
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-socials a:hover {
    transform: scale(1.1);
    color: var(--accent_green);
}

/* === Responsive Enhancements === */
@media (max-width: 1000px) {
    .hero-socials {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 3rem;
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        margin: 3rem 0;
    }

    .hero-heading-wrap img {
        width: 60px; /* shrink instead of hide */
    }

    .hero::before {
        width: 180px;
        height: 180px;
        top: 5%;
        left: 10%;
    }

    .hero::after {
        width: 150px;
        height: 150px;
        bottom: 5%;
        right: 10%;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
}

@media (max-width: 360px) {
    .hero-heading-wrap img {
      width: 30px; /* shrink instead of hide */
  }
}



/* 
============
=== Endless Carousel ===
============
*/
.carousel-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: var(--primary);
    padding: 1rem 0;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    transition: opacity 0.6s ease-in;

}


.carousel-track {
    display: flex;
    width: fit-content;
}

.carousel-row {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    gap: 1rem;
    will-change: transform;
}

.carousel-item {
    width: fit-content;
    max-height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title);
    font-size: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: .5rem 2rem;
    border-radius: 8px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-item:hover {
    transform: translateY(-5px);
}



/* 
============
=== About ===
============
*/
.about {
    padding: 3rem 2rem;
    background-color: var(--secondary_pink);
}

.about-section-cell {
    flex: 1;
    padding: 1rem 2rem;
}

.about-section-cell h2 {
    text-transform: uppercase;
}

.facebook-video-container {
    background-color: var(--primary);
    padding: 0.5rem;
    border-radius: 12px;
    border: var(--border);
    box-shadow: var(--box-shadow);
}

iframe {
    border-radius: 12px;
}

@media (max-width: 480px) {
    .about {
        padding: 3rem .5rem;
    }

    .about-section-cell {
        padding: 0.5rem;
    }
}


/* 
============
=== Pricing ===
============
*/
.pricing {
    padding: 2rem 1rem;

}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.grid-cell {
    border: var(--border);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    color: black;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.grid-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.best-value-tag {
    font-family: var(--accent);
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: underline;
    color: var(--black);
    top: 1rem;
    right: 1.5rem;
}

.package-title h3 {

}

.package-cost {
    font-size: 3.5rem;
    line-height: 1;
}

.package-text {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
    color: #333;
}

.package-line {
    width: 100%;
    height: 2px;
    background-color: black;
    margin: 0.5rem 0;
}

.package-items {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-items li {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.package-item-icon img {
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.package-item-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.package-cta {
    width: 100%;
    margin-top: auto;
}

.package-cta a {
    text-decoration: none;
}


.package-extras-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.package-extras-title h3 {


}

.package-extras-cost-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.extras-cost-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #666;
}

.extras-cost {
    font-size: 2.5rem;
}

/* Desktop layout: Cell 1 and 2 span 2 rows */
.cell-1 { 
    grid-area: 1 / 1 / 3 / 2;
    background-color: var(--primary);
}
.cell-2 { 
    grid-area: 1 / 2 / 3 / 3;
    background-color: var(--secondary_blue);
}
.cell-3 { 
    grid-area: 1 / 3 / 2 / 4;
    background-color: var(--primary);
}
.cell-4 { 
    grid-area: 2 / 3 / 3 / 4;
    background-color: var(--secondary_pink);
    align-items: flex-start;
}

/* Tablet layout */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    .cell-1 { 
        grid-area: 1 / 1 / 2 / 2;
    }
    .cell-2 { 
        grid-area: 1 / 2 / 2 / 3;
    }
    .cell-3 { 
        grid-area: 2 / 1 / 3 / 2;
    }
    .cell-4 {
        grid-area: 2 / 2 / 3 / 3;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    .pricing {
        padding: 1.5rem 0.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .cell-1,
    .cell-2,
    .cell-3,
    .cell-4 { 
        grid-area: auto;
    }

    .grid-cell {
        padding: 1.5rem 1rem;
    }

    .package-title h3 {
        font-size: 1.5rem;
    }

    .package-cost {
        font-size: 3rem;
    }

    .package-extras-title h3 {
        font-size: 1.5rem;
    }

    .extras-cost {
        font-size: 2rem;
    }
}



/* 
============
=== Section Layouts ===
============
*/
.two-section-layout {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.section-cell {
    flex: 1;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-center-cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 2rem;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-heading h2 {
    font-family: var(--heading);
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neutral_brown);
    position: relative;
    padding-bottom: 0.75rem;
}

/* ✨ Soft accent underline */
.section-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--accent_pink);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: width 0.3s ease;
}

/* Subtle hover expansion */
.section-heading:hover h2::after {
    width: 100px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .section-heading h2::after {
        width: 50px;
        height: 3px;
    }
}


@media (max-width: 768px) {

    .two-section-layout {
        flex-direction: column;
        gap: 6rem;
    }
}

/* 
============
=== Custom Requests ===
============
*/
.custom-requests {
  background-color: var(--neutral_brown);
  color: white;
  padding: 3rem 2rem 0 2rem;
}

.custom-heading {
  margin-bottom: 2rem;
}

.custom-heading h2 {
  color: white;
}

.custom-heading span {
  color: var(--primary);
}

.section-cell p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* === CTA Button === */
.section-cta a {
  text-decoration: none;
}

.section-cta button {
  padding: 0.75rem 2rem;
  font-size: 1.25rem;
  font-weight: 600;
  background-color: var(--primary);
  color: black;
  border: 2px solid black;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-cta button:hover {
  background-color: black;
  color: white;
  transform: scale(1.05);
}

/* === Your Original Card Styling === */
.section-card {
  background-color: var(--primary);
  color: black;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.section-card p {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-card ul {
  list-style: disc;
  padding-left: 2rem;
  line-height: 1.8;
  font-size: 1rem;
}

.section-card ul li {
  margin-bottom: 0.5rem;
}

/* === Shine Effect === */
.section-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transform: skewX(-25deg);
  opacity: 0;
}

.section-card.animate::after {
  animation: shineSweep 1.5s ease-in-out 0.8s forwards;
}

@keyframes shineSweep {
  0% {
    left: -120%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

/* === Sparkle Animation === */
.sparkle-img {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 80px;
  height: 80px;
  z-index: 1;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
}

.sparkle-img.animate {
  animation: sparklePop 2s ease-in-out 1.4s forwards;
}

@keyframes sparklePop {
  0% {
    opacity: 0;
    transform: scale(0.6) rotate(-15deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* === Wipe Image (unchanged from your original) === */
.section-cell:last-child {
  position: relative;
}

.wipe_img {
  width: 240px;
  height: 240px;
  opacity: 0;
  transform: translate(100px, 100px) rotate(25deg) scale(0.8);
  position: absolute;
  right: 0;
  bottom: 0;
}

.wipe_img.animate {
  animation: wipeIn 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.4s;
}

@keyframes wipeIn {
  0% {
    opacity: 0;
    transform: translate(100px, 100px) rotate(25deg) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translate(-20px, -40px) rotate(-5deg) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

.custom-card {
  padding: 2rem 2rem 0 2rem;
}


/* Tablet layout */
@media (max-width: 1024px) {
    .custom-requests {
        padding: 2.5rem 1.5rem;
    }

    .custom-heading h2 {
        font-size: 2rem;
    }

    .section-cell p {
        font-size: 1rem;
    }

    .sparkle-img {
        width: 60px;
        height: 60px;
        top: -20px;
        right: -10px;
    }

    .wipe_img {
        width: 100px;
        height: 100px;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    .custom-requests {
        padding: 2rem 1rem;
    }

    .custom-heading {
        margin-bottom: 1.5rem;
    }

    .custom-heading h2 {
        font-size: 1.5rem;
    }

    .section-cell {
        padding: 0;
    }

    .section-cell p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .section-cta button {
        width: 100%;
        padding: 0.75rem;
        font-size: 1.1rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .section-card p {
        font-size: 1.1rem;
    }

    .section-card ul {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .sparkle-img {
        display: none;
    }

    .wipe_img {
        width: 80px;
        height: 80px;
        margin: 1rem auto 0;
        display: block;
    }
}


/* 
============
=== Delivery ===
============
*/
.delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--secondary_pink);
  padding: 4rem 1.5rem;
  border-top: var(--border);
  border-bottom: var(--border);
  font-family: var(--text);
}


/* === Header (Car + Title) === */
.delivery-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.delivery-header img {
  width: 60px;
  height: auto;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
  animation: bounceCar 4s ease-in-out infinite;
}

@keyframes bounceCar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.delivery-header p {
  font-family: var(--accent);
  font-size: 1.6rem;
  color: var(--neutral_brown);
  line-height: 1.5;
  font-weight: 600;
  max-width: 500px;
}

/* === Info Card === */
.info-card {
  background-color: var(--secondary_blue);
  padding: 1rem;
  border: var(--border);
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--neutral_brown);
  max-width: 800px;
  margin: 0 auto 2rem;
  position: relative;
}

/* === CTA Button === */
.section-cta button {
  background-color: var(--primary);
  border: var(--border);
  border-radius: 30px;
  padding: 0.85rem 1.75rem;
  font-size: 1.1rem;

  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
}

.section-cta button:hover {
  background-color: var(--neutral_brown);
  color: var(--white);
  transform: scale(1.05);
}

/* =====================
   === Responsive Layout ===
   ===================== */
@media (max-width: 900px) {


  .delivery-header img {
    width: 50px;
  }

  .delivery-header p {
    font-size: 1.3rem;
  }

  .info-card {
    padding: 1.5rem;
    font-size: 1rem;
  }

  .section-cta button {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

/* === Mobile Only === */
@media (max-width: 600px) {
  .delivery {
    padding: 3rem 1rem;
  }

  .delivery-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .delivery-header img:last-child {
    display: none; /* ✅ Hide bottom car icon */
  }

  .delivery-header p {
    font-size: 1.2rem;
  }

  .info-card {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}



/* 
============
=== Process ===
============
*/
.how {
    padding: 3rem 1rem;
}

.how-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    padding: 3rem 1rem;
}


.how-info {
    position: relative;
}

.how-info ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.how-info li {
  position: relative;
  background: var(--primary);
  padding: 4rem 1.5rem 1.5rem;
  border-radius: 16px;
  border: var(--border);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-align: center;
  margin-top: 60px; /* <-- gives room for the half circle above */
}


.how-info li:nth-child(even) {
  background-color: var(--secondary_blue);  
}


.icon-container {
  width: 120px;
  height: 120px;
  background-color: var(--neutral_brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
  
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); /* moves it half out of the card */
  
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.icon-container img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}



.how-info h3 {
    font-family: var(--text);
    font-weight: bolder;
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    margin: 0 0 0.75rem;
    color: black;
}

.how-info p {
    font-family: var(--text);
    font-size: clamp(0.875rem, 1.25vw, 1rem);
    line-height: 1.6;
    color: var(--secondary);
    margin: 0;
    opacity: 0.9;
}


@media (max-width: 992px) {
    .how-container {
        grid-template-columns: 1fr;
    }
    
    .how-img {
        aspect-ratio: 16/9;
        order: -1;
    }
    
    .how-info ol {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .how-info ol {
        grid-template-columns: 1fr;
    }
}



/* 
====================
=== Reviews (Improved + Swipe)
====================
*/
.reviews {
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

/* === Slider Wrapper === */
.review-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

/* === Slides === */
.slide-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: var(--border);
  box-shadow: var(--box-shadow);
  background: var(--neutral_brown);
}

.slide {
  background: var(--neutral_brown);
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  text-align: center;
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.slide .quote {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 0.7;
  font-family: var(--title);
}

.slide p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  color: var(--white);
  font-family: var(--text);
}

.slide h3 {
  font-family: var(--heading);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.slide span {
  font-size: 0.9rem;
  color: var(--primary);
}

/* === Navigation Buttons === */
.slide-btn {
  background: none;
  border: 2px solid var(--black);
  font-size: 2rem;
  cursor: pointer;
  color: var(--black);
  transition: all 0.3s ease;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover {
  background-color: var(--black);
  color: var(--white);
  transform: scale(1.1);
}

/* === Dots === */
.slide-dots {
  margin-top: 1.5rem;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: var(--neutral_light, #d3b8b0);
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--primary);
}

/* === Responsive === */
@media (max-width: 768px) {
  .slide {
    padding: 2rem 1rem;
  }

  .reviews h2 {
    font-size: 1.75rem;
  }

  .slide-btn {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }

  .review-slider {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .slide p {
    font-size: 0.95rem;
  }
  .slide h3 {
    font-size: 1.1rem;
  }
  .slide-btn {
    display: none;
  }
}


/* ================
   FAQs Section
================ */
.faqs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem;
}

.faqs-container {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Accordion Items */
.dropbox-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--neutral_brown);
}

/* Hide the checkbox */
.dropbox-item input {
  display: none;
}

/* Label (clickable header) */
.dropbox-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1rem 1.25rem;
  color: white;
  background: var(--neutral_brown, #2a2a2a);
  transition: background 0.3s;
  gap: 0.5rem;
}


.dropbox-label span {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-family: var(--text);
  font-weight: bold;
  color: white;
}

/* Arrow icon */
.arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  padding: 0.25rem;
}

/* Content area */
.dropbox-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dropbox-content p {
  margin: 0;
  padding: 1rem 0;
  color: white;
  line-height: 1.6;
  padding: 1rem;
}

/* When checked — open the accordion */
.dropbox-item input:checked ~ .dropbox-content {
  max-height: 400px; /* enough to show full text */
}

/* Rotate the arrow when open */
.dropbox-item input:checked ~ .dropbox-label .arrow {
  transform: rotate(135deg);
}

.dropbox-label {cursor:pointer;}


/* 
===================
=== Contact / Booking Section ===
===================
*/
.booking-section {
  background: var(--secondary_pink);
  padding: 4rem 1rem;
  text-align: center;
}


/* === Layout === */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  text-align: left;
}

/* === Form === */
.booking-form {
  background: var(--primary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: var(--border);
}

.booking-form:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

.booking-form h3 {
  font-family: var(--title);
  text-align: center;
  margin-bottom: 1rem;
  text-decoration: underline;
}

.booking-form label {
  display: block;
  font-size: 0.9rem;
  margin: 0.5rem 0 0.25rem;
  font-family: var(--text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--text);
  background: var(--white);
  color: var(--black);
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent_green);
  box-shadow: 0 0 6px var(--accent_green);
}

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

.two-inputs {
  display: flex;
  gap: 1rem;
}

.extras {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.extras label {
  font-size: 0.95rem;
}

/* === Submit Button === */
.submit-btn {
  width: 100%;
  margin-top: 1rem;
  background: var(--white);
  border: 2px solid var(--black);
  font-weight: bold;
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 12px;
  font-family: var(--text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-25deg);
  opacity: 0;
}

.submit-btn:hover::after {
  animation: btnShine 1.5s ease-in-out forwards;
}

.submit-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.02);
}

@keyframes btnShine {
  0% {
    left: -120%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 130%;
    opacity: 0;
  }
}

.honey-pot {
    display: none;
}

/* === Service Area Section === */
.service-area {
  background: var(--secondary_blue);
  padding: 0;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  font-family: var(--text);
  display: flex;
  flex-direction: column;
  overflow: hidden;
    border: var(--border);
}

.service-area-content {
  padding: 2rem;
  flex: 1;
}

.service-area h3 {
  font-family: var(--title);
  text-decoration: underline;
  margin-bottom: 1rem;
}

.service-area p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Postcode Checker */
.service-area input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--black);
  border-radius: 10px;
  font-size: 1.1rem;
  font-family: var(--text);
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.service-area input[type="text"]:focus {
  outline: none;
  border-color: var(--accent_green);
  box-shadow: 0 0 6px var(--accent_green);
}

.check-btn {
  margin-top: 0.5rem;
  background: var(--primary);
  border: 2px solid var(--black);
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  font-family: var(--text);
  transition: all 0.3s ease;
}

.check-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.05);
}

.postcode-result {
  font-weight: bold;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* Google Map Fills Remaining Space */
.service-map {
  flex: 1;
  height: 100%;
  width: 100%;
  border: none;
  min-height: 300px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .service-area {
    height: auto;
  }

  .service-area-content {
    padding: 1.5rem;
  }

  .service-map {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .two-inputs {
    flex-direction: column;
    gap: 0.75rem;
  }


  .service-area input[type="text"] {
    font-size: 1rem;
    padding: 0.65rem 1rem;
  }
}



/* 
=============
=== Footer (Improved)
=============
*/
.footer {
  background-color: var(--secondary_pink);
  color: var(--neutral_brown);
  padding: 3.5rem 1.5rem 2rem;
  font-family: var(--text);
  border-top: 3px solid var(--accent_pink);
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Logo / About === */
.footer-logo {
  width: 110px;
  height: auto;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-about h3 {
  font-family: var(--heading);
  font-size: 1.75rem;
  margin: 0.5rem 0;
  color: var(--black);
}

.footer-about p {
  font-size: 1rem;
  color: var(--neutral_brown);
  line-height: 1.7;
  max-width: 320px;
}

.footer-email {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.footer-email::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent_pink);
  transition: width 0.3s ease;
}

.footer-email:hover {
  color: var(--accent_pink);
}
.footer-email:hover::after {
  width: 100%;
}

/* === Navigation === */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--neutral_brown);
  font-weight: 600;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent_pink);
  transform: translateX(4px);
}

/* === Socials === */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--neutral_brown);
  transition: all 0.3s ease;
  font-size: 2rem;
  font-family: var(--text);
}

.social-link span {
  color: var(--neutral_brown);
}

.social-link:hover {
  color: var(--accent_pink);
  transform: translateY(-2px);
}

.social-link img {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease;
}

.social-link:hover img {
  transform: scale(1.1) rotate(8deg);
}

/* === Footer Bottom === */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--neutral_brown);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--neutral_brown);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent_pink);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent_pink);
}

.footer-links a:hover::after {
  width: 100%;
}

/* === Responsive === */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about p {
    max-width: 500px;
  }

  .footer-nav,
  .footer-social {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


body.modal-open {
  overflow: hidden;
  height: 100vh; /* ensures body stays fixed */
}



  /* ======= MODALS ======= */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 2rem 0;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  text-align: left;
  position: relative;
  animation: fadeIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content h3 {
  font-family: var(--text);
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1rem;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}
.close:hover {
  color: #ff7b9c;
}

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



/* 
============
=== Video ===
============
*/
.ss-carousel-container {
  width: 100%;
  height: 450px;
  position: relative;
  perspective: 1000px;
  margin: 50px auto 0;
}

.ss-carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
}

/* === Cards === */
.ss-card {
  position: absolute;
  width: 280px;
  border-radius: 20px;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  overflow: visible;
  height: auto;
}

/* === Depth Transform States === */
.ss-card {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.5) translateZ(-500px);
}

.ss-card.ss-center {
    z-index: 10;
    transform: translateX(0) scale(1.1) translateZ(0);
    opacity: 1;
    pointer-events: auto;
}

.ss-card.ss-left-2 {
    z-index: 1;
    transform: translateX(-400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
    pointer-events: auto;
}

.ss-card.ss-left-1 {
    z-index: 5;
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
    pointer-events: auto;
}

.ss-card.ss-right-1 {
    z-index: 5;
    transform: translateX(200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
    pointer-events: auto;
}

.ss-card.ss-right-2 {
    z-index: 1;
    transform: translateX(400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
    pointer-events: auto;
}

.ss-card.ss-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(0.5) translateZ(-500px);
}

/* === Navigation Buttons === */
.ss-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent_pink);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: none;
    outline: none;
    padding-bottom: 4px;
}

.ss-nav-arrow:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.ss-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ss-nav-arrow.ss-left {
    left: 20px;
    padding-right: 3px;
}

.ss-nav-arrow.ss-right {
    right: 20px;
    padding-left: 3px;
}

/* === Dots Navigation === */
.ss-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.ss-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ss-dot.ss-active {
    background: var(--accent_pink);
    transform: scale(1.2);
}

/* === Responsive === */
@media (max-width: 768px) {
    .ss-carousel-container {
    height: 550px;
    margin: 20px auto 0;
    }

    .ss-card {
    width: 260px;
    }

    .ss-card.ss-center {
    transform: translateX(0) scale(1.2) translateZ(0);
    }

    .ss-card.ss-left-2 {
    transform: translateX(-320px) scale(0.7) translateZ(-400px);
    opacity: 0.5;
    }

    .ss-card.ss-left-1 {
    transform: translateX(-150px) scale(0.85) translateZ(-150px);
    opacity: 0.7;
    }

    .ss-card.ss-right-1 {
    transform: translateX(150px) scale(0.85) translateZ(-150px);
    opacity: 0.7;
    }

    .ss-card.ss-right-2 {
    transform: translateX(320px) scale(0.7) translateZ(-400px);
    opacity: 0.5;
    }

    .ss-nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    }

    .ss-nav-arrow.ss-left {
    left: 10px;
    }

    .ss-nav-arrow.ss-right {
    right: 10px;
    }

    .ss-dots {
    margin-top: 40px;
    }
}



