/* ================================================
   CHROMA SALON - Premium Hair Salon Landing Page
   Design: Black & Pink Premium Theme
   ================================================ */

/* ==================== CSS Variables ==================== */
:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --pink: #FF69B4;
    --pink-light: #FFB6C1;
    --pink-dark: #E91E63;
    --white: #ffffff;
    --white-off: #f8f8f8;
    --gray: #888888;
    --gray-light: #cccccc;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.2);
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.text-pink {
    color: var(--pink);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--pink);
    color: var(--black);
    border-color: var(--pink);
}

.btn-primary:hover {
    background: var(--pink-light);
    border-color: var(--pink-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline-dark {
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* ==================== Header ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    border-radius: 50%;
    color: var(--black);
    font-size: 18px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--pink);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
}

.header-cta {
    display: flex;
    gap: 15px;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 105, 180, 0.2);
    border: 1px solid var(--pink);
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    border-radius: 50px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    color: var(--pink);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== Section Styles ==================== */
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 105, 180, 0.1);
    color: var(--pink);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    border-radius: 50px;
}

.section-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-desc {
    color: var(--gray-light);
}

/* ==================== Intro Section ==================== */
.intro {
    padding: 120px 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content .section-tag {
    margin-bottom: 15px;
}

.intro-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.intro-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-light);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--pink);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.intro-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--black);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.intro-image-badge i {
    color: var(--pink);
    font-size: 24px;
    margin-bottom: 8px;
}

.intro-image-badge span {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* ==================== Services Section ==================== */
.services {
    padding: 120px 0;
    background: var(--white-off);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--pink);
}

.service-card.featured {
    background: var(--black);
    color: var(--white);
}

.service-card.featured .service-title,
.service-card.featured .service-desc,
.service-card.featured .service-list li {
    color: var(--white);
}

.service-card.featured .service-desc {
    color: var(--gray-light);
}

.service-card.featured .service-list li i {
    color: var(--pink);
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--pink);
    color: var(--black);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    margin-bottom: 25px;
}

.service-card.featured .service-icon {
    background: rgba(255, 105, 180, 0.2);
}

.service-icon i {
    font-size: 28px;
    color: var(--pink);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    margin-top: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-list li i {
    color: var(--pink);
    font-size: 12px;
}

.services-cta {
    text-align: center;
}

/* ==================== Gallery Section ==================== */
.gallery {
    padding: 120px 0;
    background: var(--black);
}

.gallery .section-header {
    margin-bottom: 50px;
}

.gallery .section-tag {
    background: rgba(255, 105, 180, 0.2);
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-desc {
    color: var(--gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 162, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 30px;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.gallery-cta .btn {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
}

.gallery-cta .btn:hover {
    background: var(--pink);
    color: var(--black);
}

/* ==================== About Section ==================== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-small img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--pink);
    color: var(--black);
    padding: 30px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-tag {
    margin-bottom: 15px;
}

.about-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    color: var(--pink);
    font-size: 20px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== Testimonials Section ==================== */
.testimonials {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 20px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--black-lighter);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--pink);
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--pink);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
}

.author-location {
    display: block;
    font-size: 13px;
    color: var(--gray);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--pink);
    color: var(--black);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dots .dot.active {
    background: var(--pink);
    width: 30px;
    border-radius: 5px;
}

/* ==================== Book Section ==================== */
.book {
    padding: 120px 0;
    background: var(--white-off);
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.book-content .section-tag {
    margin-bottom: 15px;
}

.book-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.book-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.book-option {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-option i {
    width: 60px;
    height: 60px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 24px;
}

.option-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.option-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

a.option-value:hover {
    color: var(--pink);
}

.book-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.book-form h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.book-form > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white-off);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
}

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

/* ==================== Contact Section ==================== */
.contact {
    position: relative;
}

.contact-map {
    height: 450px;
    background: var(--gray);
}

.contact-info {
    background: var(--black);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.contact-card {
    text-align: center;
    color: var(--white);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 105, 180, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--pink);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
}

.contact-card a {
    color: var(--pink);
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink);
    color: var(--black);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray-light);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--pink);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--pink);
    margin-top: 4px;
}

.footer-contact a:hover {
    color: var(--pink);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--pink);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== WhatsApp Float ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==================== Lightbox ==================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--pink);
    color: var(--white);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .intro-grid,
    .about-grid,
    .book-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-grid {
        padding-right: 0;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .book-form-wrapper {
        padding: 30px;
    }
    
    .intro-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .intro,
    .services,
    .gallery,
    .about,
    .testimonials,
    .book {
        padding: 80px 0;
    }
    
    .contact-info {
        padding: 50px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .intro-image-badge {
        right: 10px;
        bottom: -20px;
        padding: 15px 20px;
    }
    
    .about-img-small,
    .about-experience {
        display: none;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}