/* ==========================================
   TheOne Clinic - Main Styles
   ========================================== */

:root {
    --primary-gold: #D4AF37;
    --primary-dark: #2c2c2c;
    --secondary-dark: #4a4a4a;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
    --bg-light: #fbf7ef;
    --bg-section: #f5f0e6;
    --border-light: #e8dfc8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fbf7ef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
    overflow: visible;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    overflow: visible;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 70px;
    transition: all 0.3s ease;
}

.main-header.scrolled .logo {
    max-height: 55px;
}

.clinic-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-left: 15px;
    letter-spacing: 1px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

/* Mobile-only items (hidden on desktop) */
.mobile-only {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
    align-items: center;
    overflow: visible;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fbf7ef;
    min-width: 280px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    padding-left: 30px;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    /* Show mobile-only items on mobile */
    .mobile-only {
        display: block;
    }

    .back-home {
        background: var(--primary-gold) !important;
        color: #ffffff !important;
        font-weight: 600;
    }

    .back-home:hover {
        background: #c29d2f !important;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: #fbf7ef;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        overflow-y: auto;
        gap: 0;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link {
        width: 100%;
        padding: 15px 10px;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        margin: 0;
        background: var(--bg-section);
        border: none;
        border-radius: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 10px 20px;
    }

    .dropdown-link:hover {
        padding-left: 30px;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding-top: 120px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.75);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-weight: 300;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

/* ==========================================
   CONTACT INFO
   ========================================== */

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0 20px 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.contact-item span {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-primary {
    display: inline-block;
    padding: 0px 40px 25px !important;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #C5A028 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary i {
    margin-right: 10px;
}

/* If the editor stored the hero CTA as a Gutenberg Button block, make it look like .btn-primary. */
.hero-section .wp-block-button__link,
.hero-section .wp-element-button {
    display: inline-block;
    padding: 15px 40px !important;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #C5A028 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Ensure the Booksy link styled as .btn-primary looks identical inside hero (wins over WP/Bootstrap). */
.hero-section a.btn-primary,
.hero-section .btn-primary {
    display: inline-block;
    padding: 0px 40px 15px !important;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #C5A028 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
    border-radius: 50px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.hero-section .wp-block-button__link:hover,
.hero-section .wp-element-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    color: #ffffff;
}

/* WordPress/Gutenberg button blocks (used on some pages for CTAs like Booksy). */
.service-page .wp-block-button__link,
.service-page .wp-element-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #C5A028 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
    border-radius: 50px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.service-page .wp-block-button__link:hover,
.service-page .wp-element-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    color: #ffffff !important;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   MENU BUTTON
   ========================================== */

.menu-btn {
    margin-top: 40px;
    display: none; /* Hidden since menu is now in navbar */
}

.services-menu {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    max-width: 800px;
    margin: 40px auto;
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services-menu.active {
    display: block;
    opacity: 1;
}

.services-list {
    list-style: none;
    padding: 0;
}

.service-item {
    margin: 15px 0;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--bg-section);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.service-link:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
    border-color: var(--primary-gold);
    color: var(--text-dark);
}

.service-link i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.submenu {
    list-style: none;
    padding-left: 40px;
    margin-top: 10px;
    display: none;
}

.submenu.active {
    display: block;
}

.submenu-item {
    margin: 8px 0;
}

.submenu-link {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.submenu-link:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    padding-left: 25px;
}

/* ==========================================
   SERVICE PAGE
   ========================================== */

.service-page {
    padding: 150px 0 80px;
    min-height: 100vh;
    background: #fbf7ef;
}

/* Service Page - Badanie Skóry */
.service-page-badanie {
    background: url('../media/badanie_background.jpg') center center / cover no-repeat;
    position: relative;
}

.service-page-badanie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.9);
    z-index: 0;
}

.service-page-badanie .container {
    position: relative;
    z-index: 1;
}

/* Service Page - Linder Health */
.service-page-linder {
    background: url('../media/linder_background.jpg') center center / cover no-repeat;
    position: relative;
}

.service-page-linder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.9);
    z-index: 0;
}

.service-page-linder .container {
    position: relative;
    z-index: 1;
}

/* Service Page - Image Skincare */
.service-page-image {
    background: url('../media/image_background.jpg') center center / cover no-repeat;
    position: relative;
}

.service-page-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.9);
    z-index: 0;
}

.service-page-image .container {
    position: relative;
    z-index: 1;
}

/* Service Page - Endermologia */
.service-page-endermologia {
    background: url('../media/endermologia_background.jpg') center center / cover no-repeat;
    position: relative;
}

.service-page-endermologia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.9);
    z-index: 0;
}

.service-page-endermologia .container {
    position: relative;
    z-index: 1;
}

/* Service Page - Dermapen */
.service-page-dermapen {
    background: url('../media/dermapen_background.jpg') center center / cover no-repeat;
    position: relative;
}

.service-page-dermapen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.9);
    z-index: 0;
}

.service-page-dermapen .container {
    position: relative;
    z-index: 1;
}

/* Service Pages - Laseroterapia (iPixel, DVL, ClearSkin) */
.service-page-ipixel,
.service-page-dvl,
.service-page-clearskin {
    background: url('../media/laseroterapia_background.jpg') center center / cover no-repeat;
    position: relative;
}

.service-page-ipixel::before,
.service-page-dvl::before,
.service-page-clearskin::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.9);
    z-index: 0;
}

.service-page-ipixel .container,
.service-page-dvl .container,
.service-page-clearskin .container {
    position: relative;
    z-index: 1;
}

/* Service Page - Depilacja */
.service-page-depilacja {
    background: url('../media/depilacja_background.jpg') center center / cover no-repeat;
    position: relative;
}

.service-page-depilacja::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 247, 239, 0.9);
    z-index: 0;
}

.service-page-depilacja .container {
    position: relative;
    z-index: 1;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 300;
}

.service-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-gold);
    margin: 40px 0 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.info-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.5rem;
    line-height: 1;
}

/* ==========================================
   PRICING TABLE
   ========================================== */

.pricing-table {
    background: var(--bg-section);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid var(--border-light);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 30px;
}

.pricing-item {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.pricing-price {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.package-highlight {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--primary-gold);
}

.discount-badge {
    background: var(--primary-gold);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

/* ==========================================
   BACK BUTTON
   ========================================== */

.back-btn {
    display: none; /* Hidden on desktop */
}

/* Show back button only on mobile */
@media (max-width: 992px) {
    .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
        color: var(--text-gray);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .back-btn:hover {
        color: var(--primary-gold);
        transform: translateX(-5px);
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.main-footer {
    background: var(--bg-section);
    padding: 40px 0;
    /* margin-top: 80px; */
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    flex: 1;
    text-align: left;
}

.footer-content p {
    color: var(--text-gray);
    margin: 10px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   ALERTS
   ========================================== */

.alert-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--text-dark) !important;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
}

.alert-info i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.alert-info strong {
    color: var(--primary-gold);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .clinic-name {
        font-size: 1.8rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-page {
        padding: 110px 0 60px;
    }

    .service-content {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .discount-badge {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

/* ==========================================
   PROMOTIONS MODAL
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-light);
    margin: 3% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c4a030 100%);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.close-modal {
    color: white;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal:hover {
    transform: rotate(90deg);
    opacity: 0.8;
}

.modal-body {
    padding: 30px;
    max-height: calc(85vh - 90px);
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--bg-section);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.promotion-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 0;
}

.promotion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.promotion-item:last-child {
    margin-bottom: 0;
}

.promotion-image {
    width: 300px;
    min-width: 300px;
    height: 250px;
    overflow: hidden;
    background: var(--bg-section);
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promotion-item:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promotion-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.promotion-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.promotion-date {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.promotion-date i {
    font-size: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 20px;
        max-height: calc(90vh - 80px);
    }
    
    .promotion-item {
        flex-direction: column;
    }
    
    .promotion-image {
        width: 100%;
        height: 200px;
    }
    
    .promotion-content {
        padding: 20px;
    }
    
    .promotion-title {
        font-size: 1.3rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   GALLERY PAGE STYLES
   ========================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: white;
}

.before-after-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.before-after-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-image .image-placeholder {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.gallery-description {
    padding: 20px;
    text-align: center;
}

.gallery-description h4 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.gallery-description p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.gallery-note {
    background: var(--bg-section);
    padding: 20px 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    margin-bottom: 40px;
}

.gallery-note p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gallery-note i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* ==========================================
   FAQ PAGE STYLES
   ========================================== */

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-category-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary-gold);
    color: white;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-section h2 i {
    color: var(--primary-gold);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    flex: 1;
}

.faq-answer {
    padding: 0 30px 0 70px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 30px 25px 70px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.faq-contact {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c4a030 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin-top: 50px;
}

.faq-contact h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.faq-contact p {
    color: white;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: var(--primary-gold);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: var(--primary-dark);
    color: white;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.about-section h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-section h3 i {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-light) 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ==========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ========================================== */

@media (max-width: 768px) {
    .before-after-gallery {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-filters,
    .faq-categories {
        gap: 10px;
    }
    
    .filter-btn,
    .faq-category-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
        gap: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 0 55px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 55px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .cta-section,
    .faq-contact {
        padding: 30px 20px;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 15px;
    }
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
