/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #FFFFFF;
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Color Variables */
:root {
    --yellow: #FFC800;
    --light-green: #D5E6C0;
    --dark-green: #4D7A4D;
    --light-blue: #C8D8EB;
    --dark-blue: #2D5C88;
    --white: #FFFFFF;
    --black: #000000;
    --light-gray: #F5F5F5;
    --gray: #CCCCCC;
}

/* Typography for Titles */
h1, h2, .logo span {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Navigation */
nav {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
    background-color: transparent;
}

nav.nav-open {
    background-color: var(--white);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 3em;
}

.logo-square {
    width: 20px; 
    height: 20px;
    margin-right: 8px;
    display: inline-block;
}

.yellow {
    background-color: var(--yellow);
}
nav.sticky{
    padding: 15px 200px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1.3em;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-left: auto;
    height: auto;
    overflow: visible;
    position: static;
    width: auto;
    text-align: left;
    background-color: transparent;
    border-bottom: none;
    transition: all 0.3s ease-in-out;
}

.nav-links a {
    display: inline-block;
    /* padding: 0; */
     transition: background-color 0.3s ease, transform 0.2s ease;
}
.nav-links a:hover{
    transform: translateY(-4px);
    text-decoration: underline;
    text-decoration-color: #FFCB05; /* Your yellow color */
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    transform: translateY(-4px);
}
.nav-links a.active {
    color: #FFCB05; /* A bright, distinct color */
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #FFCB05; /* Your yellow color */
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
}
.book-now {
    background-color: #FFCB05; /* More specific yellow color based on the image */
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: bold;
    color: #333333; /* Dark text color for better contrast */
    display: inline-block; /* Ensures the button behaves correctly */
    text-decoration: none; /* Removes underline if it's a link */
    text-align: center;
    cursor: pointer; /* Shows pointer cursor on hover */
    border: none; /* Removes default button border */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-now:hover {
  background-color: #E6B700; /* Slightly darker yellow on hover */
  transform: translateY(-4px);
  text-decoration: none !important;
  text-decoration-color: transparent !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--black);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 150px 200px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    justify-content: center;
    flex-direction: column;
    height: 900px;
    background-image: url(budaya_bg_white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.sun {
    position: absolute;
    top: -90px;
    left: 50px;
    width: 480px;
    height: 480px;
    background-image: url('BUDAYAPLUS - SUN.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: rotateSun 30s linear infinite;
}

@keyframes rotateSun {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    flex: 1;
    z-index: 888;
    margin-top: 50px;
    width: 70%;
}

.hero-content h1 {
    font-size: 125px;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    max-width: 800px;
    font-family: "Inter", sans-serif; 
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

.hero-image {
    flex: 1;
    position: relative;
}

.learn-more-btn {
    background-color: #f5c518;
    color: #000;
    padding: 10px 30px;
    font-size: 1.3rem;
    border-radius: 40px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    display: inline-block;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.learn-more-btn:hover {
    background-color: #e0b105;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}
@media screen and (max-width: 1280px) {
    nav {
        padding: 15px 100px;
    }
    nav.sticky{
        padding: 15px 100px;
    }
    .hero {
        padding: 150px 100px;
    }
    
    .hero-content {
        width: 80%;
    }
    
    .hero-content h1 {
        font-size: 100px;
    }
    
    .sun {
        width: 400px;
        height: 400px;
    }
}

/* Smaller Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    nav {
        padding: 15px 50px;
    }
    nav.sticky{
        padding: 15px 50px;
    }
    
    .logo {
        font-size: 2.5em;
    }
    
    .nav-links {
        gap: 1.2rem;
    }
    
    .hero {
        padding: 150px 50px;
        height: 800px;
    }
    
    .hero-content {
        width: 90%;
    }
    
    .hero-content h1 {
        font-size: 85px;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        max-width: 700px;
    }
    
    .sun {
        width: 350px;
        height: 350px;
    }
}

/* Tablets and Small Laptops (768px and below) */
@media screen and (max-width: 1024px) {
    nav {
        padding: 12px 20px;
    }
    nav.sticky{
        padding: 15px 20px;
    }
    .logo {
        font-size: 2em;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9em;
    }
    
    .book-now {
        padding: 6px 15px;
        font-size: 0.9em;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    .hero-content {
        width: 95%;
    }
    
    .hero-content h1 {
        font-size: 60px;
        letter-spacing: 3px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .sun {
        width: 240px;
        height: 240px;
        top: -50px;
        left: 20px;
    }
    
    .learn-more-btn {
        padding: 7px 20px;
        font-size: 1rem;
    }
}


/* Studio Photos Section */
.studio-photos2{
    background-color: #FFFFFF;
}
.studio-photos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    padding: 60px 30px;
    text-align: left;
    flex-wrap: wrap;
    align-items: center;
    background-color: #FFFFFF;
    margin: auto;
    max-width: 1500px;
}

.studio-photos .photo-item {
    width: 350px;
    height: 520px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background-color: #fff;
    border: 1px solid #eee;
    margin-bottom: 0;
    margin-right: 20px;
}

.studio-photos .photo-item:last-child {
    margin-right: 0;
}

.studio-photos .photo-item:hover {
    transform: translateY(-8px);
}

.studio-photos .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.studio-photos .photo-item:hover img {
    transform: scale(1.03);
}

.studio-photos .capture-moments {
    flex: 1;
    padding: 60px;
    text-align: left;
}

.studio-photos .capture-moments h2 {
    font-size: 80px;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
    /*letter-spacing: -0.025em;*/
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
}

.studio-photos .capture-moments p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    margin-top: -30px;  
    color: #666;
    line-height: 1.8;
    max-width: 700px;
}

.studio-photos .capture-moments .book-now {
    background-color: #f5c518;
    color: #000;
    padding: 10px 30px;
    font-size: 1.3rem;
    border-radius: 40px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    display: inline-block;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.studio-photos .capture-moments .book-now:hover {
    background-color: #e0b105;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}



@media screen and (max-width: 1280px) {
    .studio-photos {
        padding: 50px 20px;
        gap: 20px;
    }
    
    .studio-photos .photo-item {
        width: 300px;
        height: 450px;
        margin-right: 15px;
    }
    
    .studio-photos .capture-moments {
        padding: 40px;
    }
    
    .studio-photos .capture-moments h2 {
        font-size: 65px;
        margin-bottom: 41px;
    }
    
    .studio-photos .capture-moments p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
    }
    
    .studio-photos .capture-moments .book-now {
        padding: 8px 25px;
        font-size: 1.2rem;
    }
}

/* For smaller laptops (1024px and below) */
@media screen and (max-width: 1024px) {
    .studio-photos {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .studio-photos .photo-item {
        width: 280px;
        height: 420px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
    
    .studio-photos .capture-moments {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
        order: -1; /* Move text above images */
    }
    
    .studio-photos .capture-moments h2 {
        font-size: 60px;
    }
    
    .studio-photos .capture-moments p {
        margin: 0 auto 25px;
        max-width: 500px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Base Styles */
    body {
        font-size: 0.9em;
        padding-bottom: 50px;
    }

    h1 {
        font-size: 3em;
        letter-spacing: normal;
    }

    h2 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
        line-height: 1.5;
    }

    /* Navigation */
    nav {
        padding: 15px 20px;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background-color: transparent;
        z-index: 999;
    }

    nav.sticky{
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    }

    .logo {
        font-size: 2em;
        margin-bottom: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger .bar {
        background-color: var(--black);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 48px;
        left: 0;
        font-size: 1.3em;
        width: 100%;
        background-color: var(--white);
        z-index: 998;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 1rem 20px;
        text-align: left;
    }

    .nav-links .book-now {
        width: auto;
        margin: 1rem 20px;
        display: block;
        text-align: center;
    }

    /* Hamburger Animation */
    .hamburger.open .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.open .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section */
    .hero {
        padding: 100px 50px;
        flex-direction: column;
        text-align: left;
        height: auto;
        background-position: top center;

    }

    .sun {
        width: 200px;
        height: 200px;
        top: 20px;
        left: 0%;
        transform: translateX(-50%);
    }

    .hero-content {
        width: 90%;
        margin-top: 40px;
    }

    .hero-content h1 {
        font-size: 70px;
        letter-spacing: normal;
        line-height: 1;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-image {
        margin-top: 30px;
    }

    .learn-more-btn {
        font-size: 1.1rem;
        padding: 10px 20px;
        margin-bottom: 100px;
    }

    /* Studio Photos Section */
    .studio-photos {
        margin-top: 50px;
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 40px;
    }

    .studio-photos .photo-item {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .studio-photos .capture-moments {
        padding: 30px;
        text-align: center;
    }

    .studio-photos .capture-moments h2 {
        font-size: 60px;
        margin-bottom: 20px;
        line-height: 1;
    }

    .studio-photos .capture-moments p {
        font-size: 1rem;
        margin-top: -15px;
        margin-bottom: 30px;
        
    }

    .studio-photos .capture-moments .book-now {
        font-size: 1.1rem;
        padding: 10px 30px;
        margin: 10px auto;
        
    }
}

/* Very small screens */
@media (max-width: 480px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero {
        padding-top: 80px;
    }
}
/* ------------------------------------------------------------------------ Our Studio Section Styles --- */
     .our-studio {
            padding: 50px 0px;
            background-color: #fff;
            font-family: 'Poppins', sans-serif;
        }

        .book-nows {
            background-color: #f5c518;
            color: #000;
            padding: 10px 30px;
            font-size: 1.3rem;
            border-radius: 40px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
            margin-top: 10px;
            display: inline-block;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .book-nows:hover {
            background-color: #e0b105;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            transform: translateY(-4px);
        }

        .studio-content-wrapper {
            display: flex;
            max-width: 1500px;
            width: 100%;
            gap: 80px;
            border-radius: 16px;
            background-color: #fff;
            padding: 50px;
            margin: auto;
        }

        .studio-text-content {
            flex: 1;
            padding-right: 30px;
            text-align: right;
            margin-top: 60px;
        }

        .studio-header h2 {
            font-size: 80px;
            font-weight: 700;
            color: #333;
            /*letter-spacing: -0.025em;*/
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            line-height: 1;
            font-family: 'Bebas Neue', sans-serif;
        }

        /* Ensures the video play button is visible */
        .gallery-item .play-pause-btn {
          font-size: 2.5rem;
          color: rgba(255, 255, 255, 0.9);
          background-color: rgba(0, 0, 0, 0.6);
          border: none;
          border-radius: 50%;
          width: 80px;
          height: 80px;
          cursor: pointer;
          transition: all 0.3s ease-in-out;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          backdrop-filter: blur(10px);
          line-height: 1;
          text-align: center;
          font-family: Arial, sans-serif;
        }
        
        .play-pause-btn {
          background-color: rgba(0, 0, 0, 0.7);
          color: white;
          border: none;
          width: 80px;
          height: 80px;
          border-radius: 50%;
          font-size: 2.5rem;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.3s ease;
          backdrop-filter: blur(10px);
          position: relative;
          line-height: 1;
          text-align: center;
          font-family: Arial, sans-serif;
          padding: 0;
          margin: 0;
        }
        
        .gallery-item .play-pause-btn:hover,
        .play-pause-btn:hover {
          background-color: rgba(0, 0, 0, 0.8);
          transform: scale(1.1);
        }
        
        /* Force perfect centering for play icon (triangle needs slight adjustment) */
        .play-pause-btn[aria-label="Play video"] {
          padding-left: 9px; /* Slight adjustment for visual centering of triangle */
        }
        
        /* Ensure pause icon is perfectly centered */
        .play-pause-btn[aria-label="Pause video"] {
          padding-left: 0;
        }
        
        .play-pause-btn::before {
          content: attr(aria-label);
          position: absolute;
          opacity: 0;
        }
        
        /* Adjust play icon positioning slightly to the right for visual balance */
        .play-pause-btn[aria-label="Play video"]::after {
          content: "";
          margin-left: 2px;
        }
        
        .video-controls {
            transition: opacity 0.3s ease;
        }
        
        .video-controls.fade-out {
            opacity: 0;
        }
        
        .video-controls.fade-in {
            opacity: 1;
        }

        /*.studio-header h2::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    bottom: -10px;*/
        /*    left: 0;*/
        /*    width: 80px;*/
        /*    height: 5px;*/
        /*    background-color: #ffc107;*/
        /*    border-radius: 3px;*/
        /*}*/

        .studio-header p {
            margin-top: -20px;
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            animation: fadeIn 1.2s ease;
            margin-bottom: 30px;
        }

        .studio-media-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
        }

        /* Simple Slideshow Container */
        .slideshow-container {
            position: relative;
            width: 100%;
            max-width: 700px;
            height: 500px;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        /* Hide all slides by default */
        .gallery-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease, visibility 0.8s;
        }

        /* Show active slide */
        .gallery-item.active {
            opacity: 1;
            visibility: visible;
        }

        .gallery-item img,
        .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Video specific styles - remove default controls */
        .gallery-item video {
            border-radius: 16px;
        }

        /* Custom video controls */
        .video-controls {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
            z-index: 15;
        }

        /*.play-pause-btn {*/
        /*    background-color: rgba(0, 0, 0, 0.7);*/
        /*    color: white;*/
        /*    border: none;*/
        /*    width: 80px;*/
        /*    height: 80px;*/
        /*    border-radius: 50%;*/
        /*    font-size: 30px;*/
        /*    cursor: pointer;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    transition: all 0.3s ease;*/
        /*    backdrop-filter: blur(10px);*/
        /*}*/

        .play-pause-btn:hover {
            background-color: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }

        /* Navigation buttons */
        .prev-slide,
        .next-slide {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            font-size: 20px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .prev-slide {
            left: 20px;
        }

        .next-slide {
            right: 20px;
        }

        .prev-slide:hover,
        .next-slide:hover {
            background-color: #fff;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-slide:active,
        .next-slide:active {
            transform: translateY(-50%) scale(0.95);
        }

        /* Slide indicators */
        .slide-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 5;
        }

        .slide-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slide-indicator.active {
            background-color: #fff;
            transform: scale(1.2);
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        /* Caption for slides */
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: #fff;
            transition: all 0.4s ease;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */

        /* Large laptops and smaller desktops (1400px and below) */
        @media (max-width: 1400px) {
            .studio-content-wrapper {
                max-width: 1200px;
                gap: 60px;
                padding: 40px;
            }
            
            .studio-header h2 {
                font-size: 70px;
            }
            
            .slideshow-container {
                max-width: 600px;
                height: 450px;
            }
        }

        /* Standard laptops (1200px and below) */
        @media (max-width: 1200px) {
            .our-studio {
                padding: 40px 0px;
            }
            
            .studio-content-wrapper {
                flex-direction: column;
                padding: 30px;
                gap: 40px;
                margin: 0 20px;
            }
            
            .studio-text-content {
                padding-right: 0;
                margin-top: 0;
                margin-bottom: 20px;
                text-align: center;
            }
            
            .studio-header h2 {
                font-size: 65px;;
                margin-bottom: 30px;
            }
            
            .studio-header h2::after {
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
            }
            
            .studio-header p {
                font-size: 1.15rem;
                margin-bottom: 25px;
            }
            
            .slideshow-container {
                height: 400px;
                align-self: center;
            }
            
            .book-nows {
                font-size: 1.2rem;
                padding: 12px 35px;
            }
        }

        /* Small laptops and large tablets (992px and below) */
        @media (max-width: 992px) {
            .studio-content-wrapper {
                padding: 25 px;
                margin: 0 15px;
            }
            
            .studio-header h2 {
                font-size: 60px;
                margin-bottom: 25px;
            }
            
            .studio-header p {
                font-size: 1.1rem;
                line-height: 1.7;
            }
            
            .slideshow-container {
                height: 350px;
            }
            
            .slide-caption {
                padding: 15px;
                font-size: 14px;
            }
        }

        /* Tablets (768px and below) */
        @media (max-width: 768px) {
            .our-studio {
                padding: 30px 0px;
            }
            
            .studio-content-wrapper {
                padding: 20px;
                margin: 0 10px;
                border-radius: 12px;
                gap: 30px;
            }
            
            .studio-header h2 {
                font-size: 60px;
                margin-bottom: 20px;
            }
            
            .studio-header h2::after {
                width: 50px;
                height: 4px;
                bottom: -8px;
            }
            
            .studio-header p {
                font-size: 1.1rem;
                line-height: 1.6;
                margin-top: -15px;
                margin-bottom: 20px;
            }
            
            .slideshow-container {
                height: 300px;
                border-radius: 12px;
            }
            
            .prev-slide, 
            .next-slide {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .prev-slide {
                left: 15px;
            }
            
            .next-slide {
                right: 15px;
            }
            
            .slide-indicators {
                bottom: 15px;
                gap: 8px;
            }
            
            .slide-indicator {
                width: 10px;
                height: 10px;
            }
            
            .slide-caption {
                padding: 12px;
                font-size: 13px;
            }
            
            .book-nows {
                font-size: 1.1rem;
                padding: 10px 25px;
                border-radius: 35px;
            }
        }

        /* Large phones (576px and below) */
        @media (max-width: 576px) {
            .studio-content-wrapper {
                padding: 15px;
                margin: 0 5px;
                gap: 25px;
            }
            
            /* .studio-header h2 {
                font-size: 60px;;
                margin-bottom: 15px;
                line-height: 1.0;
            }
            
            .studio-header h2::after {
                width: 40px;
                height: 3px;
                bottom: -6px;
            }
            
            .studio-header p {
                font-size: 14px;
                margin-top: -10px;
                margin-bottom: 15px;
            } */
            
            /* .slideshow-container {
                height: 250px;
                border-radius: 10px;
            } */
            
            .prev-slide, 
            .next-slide {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .prev-slide {
                left: 10px;
            }
            
            .next-slide {
                right: 10px;
            }
            
            .slide-indicators {
                bottom: 12px;
                gap: 6px;
            }
            
            .slide-indicator {
                width: 8px;
                height: 8px;
            }
            
            .slide-caption {
                padding: 10px;
                font-size: 12px;
            }
            
            /* .book-nows {
                font-size: 1rem;
                padding: 8px 20px;
                border-radius: 30px;
                margin-top: 5px;
            } */
        }

        /* Small phones (480px and below) */
        @media (max-width: 480px) {
            .our-studio {
                padding: 20px 0px;
            }
            
            .studio-content-wrapper {
                padding: 12px;
                gap: 20px;
                border-radius: 8px;
            }
            
            .studio-header h2 {
                font-size: 60px;
                margin-bottom: 12px;
            }
            
            .studio-header h2::after {
                width: 35px;
                height: 3px;
                bottom: -5px;
            }
            
            .studio-header p {
                font-size: 1rem;
                margin-bottom: 12px;
            }
            
            .slideshow-container {
                height: 220px;
            }
            
            .prev-slide, 
            .next-slide {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
            
            .prev-slide {
                left: 8px;
            }
            
            .next-slide {
                right: 8px;
            }
            
            .slide-indicators {
                bottom: 10px;
                gap: 5px;
            }
            
            .book-nows {
                font-size: 1.1rem;
                padding: 10px 20px;
                width: 50%;
                margin: 10px auto;
                display: block;
            }
        }

        /* Extra small phones (360px and below) */
        @media (max-width: 360px) {
            .studio-content-wrapper {
                padding: 10px;
                gap: 15px;
            }
            
            .studio-header h2 {
                font-size: 26px;
                margin-bottom: 20px;
                font-size: 60px;
                
            }
            
            .studio-header h2::after {
                width: 30px;
                height: 2px;
            }
            
            .studio-header p {
                font-size: 1rem;
                margin-bottom: 10px;
            }
            
            .slideshow-container {
                height: 200px;
            }
            
            .prev-slide, 
            .next-slide {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }
            
            .book-nows {
                font-size: 0.85rem;
                padding: 6px 16px;
                border-radius: 20px;
            }
        }

        /* Landscape orientation adjustments for mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .our-studio {
                padding: 15px 0px;
            }
            
            .studio-content-wrapper {
                flex-direction: row;
                gap: 30px;
                padding: 20px;
            }
            
            .studio-text-content {
                flex: 0.6;
                text-align: left;
                margin-top: 0;
            }
            
            .studio-media-content {
                flex: 0.4;
            }
            
            .studio-header h2 {
                font-size: 60px;
                margin-bottom: 15px;
            }
            
            .slideshow-container {
                height: 250px;
            }
        }
/* ??????ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss???? */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #f5f5f5;
        }

        .studio-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 50px 20px;
            flex-wrap: wrap;
            background-image: url('mini-bg.jpg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 400px;
            align-items: center;
            /* linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)) */
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex: 1 0 250px;
            gap: 15px;
            max-width: 350px;
            padding: 20px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            font-size: 40px;
            color: #ffffff;
            border: 2px solid #ffc107;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffc107, #ff8c00);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        .feature-item h3 {
            font-size: 24px;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .feature-item p {
            font-size: 16px;
            color: #ffffff;
            line-height: 1.7;
            opacity: 0.9;
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 1024px) {
            .studio-features {
                gap: 30px;
                padding: 40px 15px;
            }
            
            .feature-item {
                flex: 1 0 300px;
            }
        }

        @media (max-width: 768px) {
            .studio-features {
                flex-direction: column;
                gap: 25px;
                padding: 30px 15px;
                align-items: stretch;
            }
            
            .feature-item {
                flex: 1 0 auto;
                max-width: 100%;
                margin: 0 auto;
                width: 100%;
            }
            
            .feature-icon {
                font-size: 35px;
                width: 70px;
                height: 70px;
            }
            
            .feature-item h3 {
                font-size: 22px;
            }
            
            .feature-item p {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .studio-features {
                padding: 25px 10px;
                gap: 20px;
            }
            
            .feature-item {
                padding: 15px;
                gap: 12px;
            }
            
            .feature-icon {
                font-size: 30px;
                width: 60px;
                height: 60px;
            }
            
            .feature-item h3 {
                font-size: 20px;
            }
            
            .feature-item p {
                font-size: 14px;
                line-height: 1.6;
            }
        }

        /* Extra small screens */
        @media (max-width: 320px) {
            .studio-features {
                padding: 20px 8px;
            }
            
            .feature-item {
                padding: 12px;
                gap: 10px;
            }
            
            .feature-icon {
                font-size: 28px;
                width: 55px;
                height: 55px;
            }
            
            .feature-item h3 {
                font-size: 18px;
            }
            
            .feature-item p {
                font-size: 13px;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .feature-item {
            animation: fadeIn 0.6s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
/* --------------------------------------------------------------------- Package List Section Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
        
        body {
            line-height: 1.6;
        }
#package-list {
            padding: 100px 0;
            background: linear-gradient(135deg, #F5F5F5 0%, #F5F5F5 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle background pattern */
        #package-list::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 25% 25%, rgba(245, 197, 24, 0.05) 0%, transparent 50%),
                              radial-gradient(circle at 75% 75%, rgba(1, 150, 58, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        #package-list h2 {
            font-size: 80px;
            margin-bottom: 60px;
            color: #333;
            font-weight: 700;
            /*letter-spacing: -0.02em;*/
            text-align: center;
            font-family: 'Bebas Neue', sans-serif;
            position: relative;
        }
        
        /* Decorative underline */
        /* #package-list h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f5c518, #01963a);
            border-radius: 2px;
        } */
        
        .packages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
            padding: 0 20px;
        }
        
        .package {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            cursor: pointer;
        }
        
        .package::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 197, 24, 0.1) 0%, rgba(1, 150, 58, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 24px;
            z-index: 1;
        }
        
        .package:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .package:hover::before {
            opacity: 1;
        }
        
        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: #2c3e50;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .badge-popular {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            color: white;
        }
        
        .badge-value {
            background: linear-gradient(135deg, #01963a, #27ae60);
            color: white;
        }
        
        .package-box {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .package-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .package:hover .package-box img {
            transform: scale(1.08);
        }
        
        .package-content {
            padding: 30px;
            position: relative;
            z-index: 2;
        }
        
        .package-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .package-description {
            font-size: 0.95rem;
            color: #6c757d;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .package-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .package-features li {
            font-size: 0.9rem;
            color: #495057;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .package-features li::before {
            content: '✓';
            color: #01963a;
            font-weight: bold;
            font-size: 1rem;
        }
        
        .package-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }
        
        .package-price {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .price-amount {
            font-size: 2rem;
            font-weight: 800;
            color: #01963a;
            line-height: 1;
        }
        
        .price-label {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 2px;
        }
        
        .package-cta {
            background: linear-gradient(135deg, #f5c518, #e0b105);
            color: #000;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .package-cta:hover {
            transform: translateX(4px);
            box-shadow: 0 6px 20px rgba(245, 197, 24, 0.4);
        }
        
        .view-packages-container {
            text-align: center;
            margin-top: 60px;
        }
        
        .view-package {
            background: linear-gradient(135deg, #f5c518, #e0b105);
            color: #000;
            padding: 18px 48px;
            font-size: 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 12px 32px rgba(44, 62, 80, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .view-package::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        
        .view-package:hover::before {
            left: 100%;
        }
        
        .view-package:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(44, 62, 80, 0.4);
        }

        @media screen and (max-width: 1280px) {
        #package-list h2{
            font-size: 65px;
            margin-bottom: 20px;
        }
    }

        @media screen and (max-width: 1024px) {
        #package-list h2 {
            font-size: 60px;
        }
    }
        /* Responsive Design */
        @media (max-width: 768px) {
            #package-list {
                padding: 80px 0;
            }

            #package-list h2 {
            font-size: 60px;
            }
            
            .packages {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }
            
            .package-content {
                padding: 25px;
            }
            
            .package-title {
                font-size: 1.25rem;
            }
            
            .price-amount {
                font-size: 1.75rem;
            }
            
            .view-package {
                padding: 16px 32px;
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            .package-footer {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }
            
            .package-cta {
                text-align: center;
                justify-content: center;
            }
        }
/* --------------------------------------------------------------------------- How It Works Section Styles --- */
.how-it-works {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
    margin: 0 auto;
    max-width: 1500px;
}
.how-it-works2{
    background-color: #FFFFFF ;
}

.how-it-works h2 {
    font-size: 80px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
}

.how-it-works h2::before {
    /* content: "// Our Proven Work Process"; */
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.how-it-works .steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 50px;
    position: relative;
}

/* The connecting lines between steps */
.how-it-works .steps::before {
    /* content: ""; */
    position: absolute;
    top: 50px; /* Centered with the circles */
    left: 20%;
    right: 20%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.how-it-works .step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.how-it-works .step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffdb58; /* Blue from the image */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    position: relative;
    z-index: 3;
}

.how-it-works .step:nth-child(1) .step-icon {
    background-color: #ffdb58; /* Blue */
}

.how-it-works .step:nth-child(2) .step-icon {
    background-color: #ffdb58; /* Blue */
}

.how-it-works .step:nth-child(3) .step-icon {
    background-color: #ffdb58; /* Blue */
}

.how-it-works .step:nth-child(4) .step-icon {
    background-color: #ffdb58; /* Blue */
}

/* Small circle with number */
.how-it-works .step-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #075a12;
    border-radius: 50%;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.how-it-works .step:nth-child(1) .step-icon::after {
    content: "01";
}

.how-it-works .step:nth-child(2) .step-icon::after {
    content: "02";
}

.how-it-works .step:nth-child(3) .step-icon::after {
    content: "03";
}

.how-it-works .step:nth-child(4) .step-icon::after {
    content: "04";
}

.how-it-works .step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.how-it-works .step p {
    font-size: 0.9rem;
    color: #666;
    max-width: 200px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Making it responsive */
@media (max-width: 1280px) {
    .how-it-works {
        padding: 60px 20px;
    }
    
    .how-it-works .steps::before {
        left: 15%;
        right: 15%;
    }
}

@media (max-width: 1024px) {
    .how-it-works h2 {
        font-size: 60px;
    }
    
    .how-it-works .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .how-it-works .step-icon::after {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .how-it-works .step {
        min-width: 160px;
        padding: 15px 10px;
    }
    
    .how-it-works .step p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .how-it-works h2 {
        font-size: 60px;
    }
    
    .how-it-works .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .how-it-works .steps::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 80%;
    }
    
    .how-it-works .step {
        width: 100%;
        max-width: 300px;
    }
    
    .how-it-works .step p {
        max-width: 250px;
    }
}

/* --- Location Section Styles --- */
.location {
    padding: 60px 0;
    text-align: center;
    background-color: #F5F5F5;
    max-width: 1500px;
    margin: 0 auto;
}

.location h2 {
    font-size: 80px;
    margin-bottom: 40px;
    font-weight: 700;
    
    /*letter-spacing: -0.025em;*/
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
}

.location .location-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    align-items: center;
    max-width: 1200px; /* Limit the container width */
    margin: 0 auto;
}

.location .map-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background-image: url('budaya\ location.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.location .location-info {
    text-align: left;
    padding: 20px;
}

.location .location-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.location .location-info ol {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 1rem;
}

.location .location-info ol li{
    margin-bottom: 0.5rem;
     font-size: 1rem;
}

.location .location-info a {
    color: #007bff;
}

.location .location-info a:hover {
    color: #0056b3;
}
@media screen and (max-width: 1280px) {
  .location h2{
    font-size: 65px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .location h2 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
    .location h2  {
        font-size: 60px;
        margin-bottom: 30px;
    }

}

/* --- FAQs Section Styles --- */
.faqs {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.faqs h2 {
    font-size: 80px;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
    /*letter-spacing: -0.025em;*/
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
}

.faqs .faq-item {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.faqs .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faqs .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    color: #34495e;
}

.faqs .faq-question span {
    font-size: 1.5rem;
    color: #ffdb58;
    transition: transform 0.2s ease;
}

.faqs .faq-question.open span {
    transform: rotate(45deg);
}

.faqs .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    color: #555;
}

.faqs .faq-answer.open {
    max-height: 1000px;
    padding-top: 20px;
    
}

.faqs .faq-answer p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.faqs .faq-answer ul,
.faqs .faq-answer ol {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 15px;
}

.faqs .faq-answer ul li,
.faqs .faq-answer ol li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.faqs .faq-answer ul {
    list-style-type: disc;
}

.faqs .faq-answer ol {
    list-style-type: decimal;
}


@media screen and (max-width: 1280px) {
  .faqs h2 {
    font-size: 65px;
    
  }
}

@media screen and (max-width: 1024px) {
  .faqs h2{
    font-size: 60px;
  }
}

/* Add media query for smaller screens */
@media (max-width: 768px) {
    .faqs {
        padding: 40px 20px;
    }

    .faqs h2 {
        font-size: 60px;
        margin-bottom: 30px;
    }

    .faqs .faq-item {
        margin-bottom: 20px;
        padding: 15px;
    }

    .faqs .faq-question {
        font-size: 1.1rem;
        padding-bottom: 10px;
    }

    .faqs .faq-answer p,
    .faqs .faq-answer ul li,
    .faqs .faq-answer ol li {
        font-size: 0.95rem;
    }
}

/* --- Reviews Section Styles --- */
.reviews {
    padding: 70px 0;
    text-align: center;
    background-color: #f5f5f5;
    /* background-image: url(mini-bg2.png); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    min-height: 600px;
}

.reviews h2 {
    font-size: 70px;
    margin-bottom: 30px;
    padding: 0 15px;
    color: #333;
    font-weight: 700;
    /*letter-spacing: -0.025em;*/
    line-height: 1;
    font-family: 'Bebas Neue', sans-serif;
}

.reviews .reviews-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
    padding: 0 15px;
}

.reviews .reviews-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.reviews .review-slide {
    flex: 1 0 100%;
    padding: 20px;
    text-align: center;
    display: none;
    max-width: 100%;
}

.reviews .review-slide.active {
    display: block;
}

.reviewer-image {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background-color: #f1f1f1;
   background-image: url("user-profile.png"); /* plain yellow unisex icon*/
  background-size: cover;
  background-position: center;
  margin: 0 auto 0.5rem auto;
}


.reviews .reviewer-info {
    margin-bottom: 12px;
}

.reviews .reviewer-info h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.reviews .rating {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.reviews .review-text {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

.reviews .carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.reviews .carousel-btn {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews .carousel-btn:hover {
    color: #007bff;
}

.reviews .carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews .carousel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reviews .carousel-dots span.active {
    background-color: #007bff;
}

.reviews .carousel-dots span:hover {
    background-color: #007bff;
}

@media screen and (max-width: 1280px) {
  .reviews h2 {
    font-size: 65px;
  }
}


@media screen and (max-width: 1024px) {
  .reviews h2 {
    font-size: 60px;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .reviews {
        padding: 50px 0;
        height: auto;
    }
    
    .reviews h2 {
        font-size: 60px;
        margin-bottom: 25px;
    }
    
    .reviews .reviewer-image {
        width: 120px;
        height: 120px;
    }
    
    .reviews .review-text {
        font-size: 1.5rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .reviews .carousel-navigation {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 40px 0;
    }
    
    .reviews h2 {
        font-size: 64px;
        margin-bottom: 20px;
    }
    
    .reviews .review-slide {
        padding: 15px 10px;
    }
    
    .reviews .reviewer-image {
        width: 110px;
        height: 110px;
        margin-bottom: 10px;
    }
    
    .reviews .reviewer-info h3 {
        font-size: 1.4rem;
    }
    
    .reviews .rating {
        font-size: 2.5rem;
    }
    
    .reviews .review-text {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .reviews .carousel-btn {
        font-size: 1.2rem;
        padding: 3px;
    }
    
    .reviews .carousel-dots span {
        width: 8px;
        height: 8px;
    }
}



/* --- Footer Styles --- */
/* Enhanced White Footer Styles with Reduced Height */

body {
  margin: 0;
  padding: 0;
}

.footer {
    background-color: #1e2124; /* Dark background matching the image */
    color: #ffffff;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    /* You can style the logo area here if needed */
    margin-bottom: 20px; /* Add some space below the "CONTACT US" text */
}

.footer-logo span {
    color: #ffc107; /* Golden yellow */
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-content {
    display: flex; /* Enable flexbox for the contact and business hours sections */
    justify-content: space-between; /* Space them out */
    flex-wrap: wrap; /* Allow them to wrap on smaller screens */
    gap: 40px; /* Add some gap between the two main sections */
}

/* Contact Us Section */
.footer-contact {
    flex: 1;
    min-width: 300px; /* Adjust as needed */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-item i {
    color: #ffc107; /* Golden yellow */
    font-size: 18px;
    margin-right: 15px;
    min-width: 20px;
    text-align: center;
}

.contact-item span,
.contact-item a {
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #ffc107;
}

/* Business Hours Section */
.business-hours {
    flex: 1;
    min-width: 250px;
}

.business-hours h3 {
    color: #ffc107; /* Golden yellow */
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.business-hours h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 70px;
    height: 2px;
    background-color: #ffc107;
}

.business-hours p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack the contact and hours sections */
        gap: 40px;
    }

    .footer-contact,
    .business-hours {
        width: 100%; /* Take full width when stacked */
        min-width: auto; /* Reset min-width for full width */
        padding-right: 0; /* Remove right padding on smaller screens */
    }
}



.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #d3d3d3;
    font-size: 14px;
}

#scrollToTopBtn {
    display: flex; /* Change from none to flex when visible */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ffc107;
    color: #1e2124;
    cursor: pointer;
    border-radius: 50px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    
    /* Centering properties */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0; /* Remove all padding */
}


#scrollToTopBtn:hover {
    opacity: 0.7; /* Slightly visible on hover if you want */
}

#scrollToTopBtn.visible {
    display: block; /* Make it visible when the 'visible' class is added */
    opacity: 1; /* Fully visible when the 'visible' class is added */
}

