/* Logo size for header */
.brand-logo {
    height: 60px !important;
    width: auto;
    display: block;
}
/* ========================================
    H CLINIC - MAIN STYLESHEET
   Modern & Sleek Design
   Colors: Black (#000000) & Gold (#DAA520)
   ======================================== */

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

:root {
    --gold: #DAA520;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --black: #000000;
    --black-light: #1a1a1a;
    --gray: #333333;
    --gray-light: #666666;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.brand-subtext {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--white);
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:not(.nav-btn):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black) !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.carousel-btn {
    background: rgba(218, 165, 32, 0.8);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(218, 165, 32, 0.03) 2px,
        rgba(218, 165, 32, 0.03) 4px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(15px); opacity: 1; }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 6rem 0;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--black-light), var(--gray));
    border-radius: 20px;
    border: 1px solid rgba(218, 165, 32, 0.2);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
}

.feature-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header,
.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 30px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-tag::before {
    left: 0;
}

.section-tag::after {
    right: 0;
}

.section-header h2,
.section-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-header p,
.section-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   SERVICES PREVIEW
   ======================================== */
.services-preview {
    padding: 6rem 0;
    background: var(--black-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.service-card {
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.2);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    position: relative;
    overflow: hidden;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    text-align: center;
    margin-top: 60px;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-section {
    padding: 6rem 0;
    background: var(--black);
}

.service-category {
    margin-bottom: 5rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

.category-icon {
    color: var(--gold);
}

.category-header h3 {
    font-size: 2.5rem;
    color: var(--gold);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.treatment-card {
    background: var(--black-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: var(--transition);
}

.treatment-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.treatment-header h4 {
    font-size: 1.3rem;
    color: var(--white);
}

.treatment-price {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}

.treatment-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.treatment-btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.treatment-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
    padding: 6rem 0;
    background: var(--black-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.package-card {
    background: var(--black);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(218, 165, 32, 0.2);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.3);
}

.package-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    color: var(--white);
}

.package-price {
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.price-period {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.package-features li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
    position: relative;
    padding-left: 30px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.story-section {
    padding: 6rem 0;
    background: var(--black);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.story-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-image {
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(0, 0, 0, 0.8));
    border-radius: 20px;
    border: 2px solid rgba(218, 165, 32, 0.3);
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    padding: 6rem 0;
    background: var(--black-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--black);
    border-radius: 15px;
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(218, 165, 32, 0.3);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 6rem 0;
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.2);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-title {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.team-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */
.certifications-section {
    padding: 6rem 0;
    background: var(--black-light);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.cert-item {
    text-align: center;
    padding: 2rem;
}

.cert-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cert-item h4 {
    font-size: 1.2rem;
    color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 2rem;
        transition: var(--transition);
        border-top: 1px solid rgba(218, 165, 32, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-header h2,
    .section-intro h2 {
        font-size: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid,
    .services-grid,
    .treatments-grid,
    .packages-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 1rem 0;
    }
}

/* ========================================
   OUR WORK PAGE STYLES
   ======================================== */
.work-intro {
    padding: 6rem 0;
    background: var(--black);
}

.work-section {
    padding: 6rem 0;
    background: var(--black-light);
}

.work-section:nth-child(odd) {
    background: var(--black);
}

.work-section-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

.section-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.2;
}

.work-section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.work-section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.work-description {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.before-after-card {
    background: var(--black);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.1);
    transition: var(--transition);
}

.before-after-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(218, 165, 32, 0.2);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.comparison-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.before-after-card:hover .comparison-image {
    transform: scale(1.05);
}

.comparison-label {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.before-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.after-label {
    background: var(--gold);
    color: var(--black);
}

.comparison-info {
    padding: 2rem;
    background: var(--black-light);
}

.comparison-info h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.comparison-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.work-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(218,165,32,0.15));
    text-align: center;
}

.work-cta .cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.work-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.work-disclaimer {
    padding: 3rem 0;
    background: var(--black-light);
}

.work-disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .work-section {
        padding: 4rem 0;
    }

    .work-section-header {
        flex-direction: column;
        gap: 1rem;
    }

    .section-number {
        font-size: 3.5rem;
    }

    .work-section-header h2 {
        font-size: 2.2rem;
    }

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

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-container {
        grid-template-columns: 1fr;
    }

    .work-cta .cta-content h2 {
        font-size: 2.2rem;
    }

    .work-cta .cta-content p {
        font-size: 1rem;
    }
}

