/* ================================
   CSS Variables & Base Styles
   ================================ */
:root {
    --color-black: #0d0d0d;
    --color-dark: #1a1a1a;
    --color-gold: #c9a961;
    --color-gold-light: #d4b676;
    --color-gold-dark: #b8964f;
    --color-red: #c41e3a;
    --color-red-dark: #8b1528;
    --color-white: #ffffff;
    --color-cream: #f5f3ed;
    --color-gray-light: #2a2a2a;
    --color-gray: #b0b0b0;
    --color-gray-dark: #3a3a3a;
    --color-text: #f5f5f5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--color-black);
    font-weight: 400;
}

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

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(13, 13, 13, 0.99);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-phone-wrapper {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo h1,
.logo .logo-title {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.logo-tagline {
    display: block;
    color: var(--color-red);
    font-size: 0.65rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: -4px;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

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

.nav-phone {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.nav-phone:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.nav-phone::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px;
    transition: var(--transition);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.8)),
                url('./assets/logo1.webp') center/contain no-repeat fixed;
    color: var(--color-text);
    text-align: center;
    padding: 50px 20px 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

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

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--color-cream);
    letter-spacing: 0.5px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-cream);
}

.hero-feature .feature-icon {
    flex-shrink: 0;
}

.feature-icon {
    color: var(--color-gold);
    font-size: 0.5rem;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

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

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

@keyframes scroll {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover:not(:disabled) {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.4);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

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

.btn-full {
    width: 100%;
}

/* ================================
   Section Styles
   ================================ */
section {
    padding: 50px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 10px;
    line-height: 1.2;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    margin-bottom: 15px;
}

.title-underline.center {
    margin: 0 auto 25px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--color-gray);
    max-width: 600px;
    margin-bottom: 0;
}

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

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* ================================
   About Section
   ================================ */
.about-section {
    background: var(--color-dark);
}

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

.about-intro {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

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

.highlight-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.highlight-text {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-top: 5px;
}

.expertise-list {
    margin-top: 25px;
}

.expertise-list h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.expertise-list ul {
    list-style: none;
}

.expertise-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: var(--color-text);
}

.check-icon {
    color: var(--color-gold);
    margin-right: 15px;
    font-weight: bold;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: var(--color-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.badge-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 3px;
    line-height: 1;
    font-weight: 300;
    opacity: 0.9;
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* ================================
   Services Section
   ================================ */
.services-section {
    background: var(--color-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.service-card {
    background: var(--color-dark);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    padding: 18px 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray-light) 100%);
    border: 2px solid var(--color-gold);
}

.service-card.premium {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    border: none;
}

.service-card.premium h3,
.service-card.premium p,
.service-card.premium li {
    color: var(--color-white);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: -38px;
    background: var(--color-red);
    color: var(--color-white);
    padding: 3px 32px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 0.8px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.requested-badge {
    position: absolute;
    top: 12px;
    right: -38px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 3px 32px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 0.8px;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.service-header {
    margin-bottom: 10px;
}

.service-icon {
    font-size: 0;
    margin-bottom: 8px;
    color: var(--color-gold);
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.9;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.service-description {
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.85rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 10px;
}

.service-benefits li {
    padding: 4px 0;
    color: var(--color-text);
    position: relative;
    padding-left: 20px;
    font-size: 0.8rem;
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 2px solid var(--color-gold);
    margin-top: 10px;
    gap: 10px;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.service-card.premium .price {
    color: var(--color-gold-light);
}

.duration {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 5px;
}

.service-btn {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.service-btn:hover {
    background: var(--color-red);
    color: var(--color-white);
    transform: translateX(5px);
}

/* Party Services */
.party-services {
    background: var(--color-dark);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.party-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-gold);
    margin-bottom: 15px;
}

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

.party-card {
    background: var(--color-gray-light);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.party-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.party-card.highlight {
    background: linear-gradient(135deg, var(--color-gold), var(--color-red));
    color: var(--color-black);
}

.party-card.highlight h4,
.party-card.highlight p,
.party-card.highlight .price {
    color: var(--color-white);
}

.party-icon {
    font-size: 0;
    margin-bottom: 15px;
    color: var(--color-gold);
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.9;
}

.party-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-gold);
}

.party-card p {
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.85rem;
}

.party-price {
    margin: 25px 0;
}

.party-price .price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-gold);
    display: block;
}

.party-info {
    font-size: 0.9rem;
    color: var(--color-gray);
    display: block;
    margin-top: 5px;
}

.party-btn {
    background: var(--color-black);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: var(--transition);
}

.party-btn:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

/* ================================
   Gallery Section
   ================================ */
.gallery-section {
    background: var(--color-dark);
    color: var(--color-text);
    padding-bottom: 30px;
}

.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: var(--color-gold);
}

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

.gallery-item {
    position: relative;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img,
.expandable-image {
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.gallery-caption {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials-section {
    background: var(--color-black);
}

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

.testimonial-card {
    background: var(--color-dark);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--color-gold);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 12px;
}

.star {
    color: var(--color-gold);
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
}

.testimonial-text {
    color: var(--color-text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 3px;
}

.author-info p {
    color: #e0c080;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    background: var(--color-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-method .method-icon {
    flex-shrink: 0;
}

.method-icon {
    font-size: 0;
    color: var(--color-gold);
    min-width: 40px;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.9;
    margin-top: 4px;
}

.method-details h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.method-details p {
    color: var(--color-text);
    line-height: 1.7;
}

.contact-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin: 5px 0;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--color-red);
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #25D366;
    color: var(--color-white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 0;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border-radius: 50%;
    opacity: 0.95;
    margin-right: 8px;
}

/* Contact Form */
.contact-form-side {
    background: var(--color-gray-light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--color-white);
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--color-gray);
    pointer-events: none;
    transition: var(--transition);
    background: var(--color-white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.85rem;
    color: var(--color-gold);
}

.form-group .select-label {
    display: none;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--color-dark);
    color: var(--color-text);
    border-color: rgba(201, 169, 97, 0.3);
}

.form-group label {
    color: var(--color-gray);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 30px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.footer-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

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

.footer-rating .stars {
    color: var(--color-gold);
}

.rating-text {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 8px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-contact-item .icon {
    font-size: 1rem;
    color: var(--color-gold);
}

.footer-contact-item a {
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    color: var(--color-gray);
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.footer-keywords {
    font-size: 0.75rem;
    color: var(--color-gray-dark);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .therapist-profile {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .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(8px, -8px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .party-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .party-services {
        padding: 40px 30px;
    }
    
    .therapist-info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix therapist gallery images on mobile - prevent squashing */
    .therapist-gallery-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .therapist-gallery-item {
        position: relative;
        aspect-ratio: 1;
        min-height: 0;
    }
    
    .therapist-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .therapist-main-image {
        position: relative;
    }
    
    .therapist-main-image img {
        width: 100%;
        height: auto;
        min-height: 250px;
        max-height: 400px;
        object-fit: cover;
    }
    
    /* Ensure images are clickable on mobile */
    .therapist-main-image,
    .therapist-gallery-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        touch-action: manipulation;
    }
    
    .therapist-main-image img,
    .therapist-gallery-item img {
        pointer-events: none;
    }
    
    .therapist-cta {
        flex-direction: column;
    }
    
    .therapist-gallery-images {
        grid-template-columns: 1fr;
    }
    
    .therapist-gallery-item img {
        height: 200px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .party-title {
        font-size: 2rem;
    }
    
    .contact-form-side {
        padding: 25px;
    }
}

/* ================================
   Animations
   ================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease;
}

.slide-in-right {
    animation: slideInRight 0.8s ease;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* ================================
   Therapist Profile Section
   ================================ */
.therapist-section {
    background: var(--color-black);
}

.therapist-profile {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.therapist-image-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.therapist-main-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    cursor: pointer;
}

.therapist-main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.therapist-gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.therapist-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.therapist-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.therapist-gallery-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

.therapist-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.therapist-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px;
    background: var(--color-dark);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.therapist-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 600;
    font-family: var(--font-heading);
}

.therapist-experience,
.therapist-qualifications,
.therapist-about {
    padding: 18px;
    background: var(--color-dark);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.therapist-experience h3,
.therapist-qualifications h3,
.therapist-about h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.therapist-experience p,
.therapist-about p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.therapist-experience ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.therapist-experience ul li {
    padding: 6px 0;
    color: var(--color-text);
    font-size: 0.85rem;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.therapist-experience ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.therapist-qualifications ul {
    list-style: none;
}

.therapist-qualifications ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.therapist-qualifications li {
    padding: 4px 0;
    color: var(--color-text);
    font-size: 0.85rem;
}

.therapist-cta {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    background: var(--color-dark);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--color-gray-light);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 300;
    transition: var(--transition);
    min-width: 25px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 15px 12px;
}

.faq-answer p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.85rem;
}

/* ================================
   Video Gallery Styles
   ================================ */
.gallery-video {
    position: relative;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-video:hover video {
    transform: scale(1.05);
}

.gallery-video .video-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-video .play-button {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.gallery-video:hover .play-button {
    transform: scale(1.2);
}

.gallery-video.featured {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-video.featured {
        grid-column: span 1;
    }
}

/* ================================
   Mobile Performance Optimizations
   ================================ */
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch-friendly tap targets for mobile */
@media (max-width: 768px) {
    .nav-link,
    .btn,
    .service-btn,
    .party-btn,
    a[href^="tel:"],
    a[href^="https://wa.me"] {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve image rendering on mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    /* Reduce gallery item size on mobile for faster loading */
    .gallery-item {
        height: 180px;
    }
    
    /* Optimize font sizes for mobile readability */
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ================================
   Google Reviews Widget Styles
   ================================ */
.google-reviews-section {
    padding: 60px 0;
    background: var(--color-dark);
}

.google-reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.google-logo {
    height: 30px;
    width: auto;
}

.reviews-summary {
    text-align: left;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.reviews-rating .stars {
    color: #fbbc04;
}

.reviews-count {
    font-size: 0.9rem;
    color: #666;
}

.google-reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.google-reviews-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.google-reviews-cta a:hover {
    background: #3367d6;
}

/* ================================
   Enhanced Mobile Optimizations
   ================================ */

/* Gallery image hover/touch effects */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.gallery-item img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:active img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:active .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* Therapist gallery touch effects */
.therapist-main-image,
.therapist-gallery-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.therapist-main-image img,
.therapist-gallery-item img {
    transition: transform 0.4s ease;
}

.therapist-main-image:hover img,
.therapist-main-image:active img,
.therapist-gallery-item:hover img,
.therapist-gallery-item:active img {
    transform: scale(1.08);
}

/* Tap to expand indicator on mobile */
@media (max-width: 768px) {
    .gallery-item::after,
    .therapist-main-image::after,
    .therapist-gallery-item::after {
        content: '👆 Tap to expand';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        white-space: nowrap;
    }
    
    .gallery-item:active::after,
    .therapist-main-image:active::after,
    .therapist-gallery-item:active::after {
        opacity: 1;
    }
    
    /* Larger tap targets for mobile */
    .nav-link {
        padding: 15px 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn, 
    .service-btn,
    .hero-btn {
        min-height: 48px;
        padding: 14px 28px;
    }
    
    /* Better spacing for mobile CTA buttons */
    .therapist-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .therapist-cta .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    /* Ensure therapist gallery maintains proper aspect ratio on mobile */
    .therapist-image-gallery {
        width: 100%;
    }
    
    .therapist-gallery-images {
        margin-top: 12px;
    }
    
    /* Improved lightbox for mobile */
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    
    /* Better video container on mobile */
    .gallery-video {
        min-height: 200px;
    }
    
    .gallery-video video {
        min-height: 200px;
    }
}

/* YouTube button styling */
.btn-youtube {
    background: #ff0000 !important;
    color: white !important;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-youtube:hover {
    background: #cc0000 !important;
    transform: translateY(-2px);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.gallery-item:focus,
.therapist-gallery-item:focus,
.btn:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Active/pressed state feedback */
.btn:active,
.service-btn:active {
    transform: scale(0.98);
}