/**
 * Makeup Artist Website - Main Stylesheet
 * Modern, responsive design with soft pastel theme
 */

/* CSS Variables for Theme Colors */
:root {
    /* Primary Colors - Bright & Vibrant */
    --blush-pink: #FFB6C1;
    --rose-gold: #FF69B4;
    --nude-beige: #FFE4E1;
    --lavender: #DDA0DD;
    --warm-cream: #FFFACD;
    
    /* Accent Colors */
    --elegant-black: #2C2C2C;
    --pure-white: #FFFFFF;
    --soft-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--blush-pink) 0%, var(--rose-gold) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--nude-beige) 0%, var(--warm-cream) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Open Sans', 'Arial', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--elegant-black);
    background-color: var(--pure-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--elegant-black);
}

h1 { font-size: 3.5rem; }
h2 { 
    font-size: 2.8rem; 
    color: var(--elegant-black) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    filter: none !important;
    font-weight: 700;
}
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    color: var(--rose-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--blush-pink);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: var(--container-padding);
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-6 { flex: 0 0 50%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-12 { flex: 0 0 100%; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(231, 180, 184, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

/* Logo Image Styling */
.logo img {
    width: 14vw;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: brightness(1) contrast(1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Logo Fallback for Text */
.logo:not(:has(img)) {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold);
}

/* Logo Container Enhancements */
.logo {
    position: relative;
    z-index: 10;
}

/* Logo Loading State */
.logo img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.logo img[src=""] {
    opacity: 0;
}

/* Logo Hover Effects */
.logo:hover {
    transform: translateY(-1px);
}

/* Logo Size Constraints */
.logo img {
    min-width: 80px;
    max-width: 200px;
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    .logo img {
        width: 16vw;
        min-width: 60px;
        max-width: 120px;
    }
    
    .logo:not(:has(img)) {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 18vw;
        min-width: 50px;
        max-width: 100px;
    }
    
    .logo:not(:has(img)) {
        font-size: 1.4rem;
    }
}

/* Large Screen Logo Enhancement */
@media (min-width: 1200px) {
    .logo img {
        width: 12vw;
        min-width: 100px;
        max-width: 250px;
    }
}

/* Logo Error Handling */
.logo img[src*="undefined"],
.logo img[src=""],
.logo img:not([src]) {
    display: none;
}

/* Logo Alt Text Styling */
.logo img[alt] {
    border-radius: 4px;
}

/* Logo Performance Optimization */
.logo img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Logo Accessibility */
.logo img {
    outline: none;
}

.logo:focus img {
    outline: 2px solid var(--rose-gold);
    outline-offset: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--elegant-black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--rose-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

.nav-toggle {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--elegant-black);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}


.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--pure-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--pure-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Slide Content Transitions */
.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.hero-slide-content.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--pure-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-slide-content .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
    color: var(--pure-white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--lavender) 100%);
    color: var(--elegant-black);
    border: 2px solid transparent;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--blush-pink) 100%);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    border-color: var(--rose-gold);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--elegant-black);
    font-size: 2.5rem;
    font-weight: 700;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Ensure dark text on light backgrounds */
.section[style*="background-color: var(--soft-gray)"] .section-title h2,
.section[style*="background-color: var(--warm-cream)"] .section-title h2 {
    color: var(--elegant-black) !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

.section[style*="background-color: var(--soft-gray)"] .section-title p,
.section[style*="background-color: var(--warm-cream)"] .section-title p {
    color: var(--medium-gray) !important;
    font-size: 1.2rem !important;
}

/* Specific fix for Experience & Expertise section */
.section[style*="background-color: var(--soft-gray)"] {
    background-color: var(--soft-gray) !important;
}

.section[style*="background-color: var(--soft-gray)"] .section-title h2 {
    color: #2c2c2c !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Additional override for any gradient text effects */
.section[style*="background-color: var(--soft-gray)"] .section-title h2::before,
.section[style*="background-color: var(--soft-gray)"] .section-title h2::after {
    display: none !important;
}

/* Override any gradient text effects that might be applied globally */
.section[style*="background-color: var(--soft-gray)"] .section-title h2 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #2c2c2c !important;
}

/* Ensure the underline decoration is visible */
.section[style*="background-color: var(--soft-gray)"] .section-title h2::after {
    display: block !important;
    background: var(--gradient-primary) !important;
}

/* Global h2 override for light background sections */
.section[style*="background-color: var(--soft-gray)"] h2,
.section[style*="background-color: var(--warm-cream)"] h2 {
    color: #2c2c2c !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    filter: none !important;
}

/* Additional fix for any inherited styles */
.section[style*="background-color: var(--soft-gray)"] h2,
.section[style*="background-color: var(--warm-cream)"] h2 {
    -webkit-text-stroke: none !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

/* Global H2 Fix - Override any conflicting styles */
h2, 
.section h2,
.container h2,
.card h2,
.about-content h2,
.services h2,
.portfolio h2,
.contact h2 {
    color: var(--elegant-black) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    filter: none !important;
    font-weight: 700 !important;
    -webkit-text-stroke: none !important;
    text-decoration: none !important;
}

/* Comprehensive H2 visibility fix */
* h2,
*[class*="section"] h2,
*[class*="container"] h2,
*[class*="card"] h2,
*[class*="content"] h2,
*[class*="title"] h2 {
    color: var(--elegant-black) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    filter: none !important;
    font-weight: 700 !important;
    -webkit-text-stroke: none !important;
    text-decoration: none !important;
}

/* Override any gradient text effects */
h2[style*="background"],
h2[style*="gradient"],
h2[style*="clip"] {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: var(--elegant-black) !important;
}

/* Cards */
.card {
    background: var(--pure-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(231, 180, 184, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--elegant-black);
}

.card-text {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--elegant-black);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--nude-beige);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--pure-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(231, 180, 184, 0.1);
}

.form-control.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

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

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

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

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--pure-white);
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--gradient-secondary);
    padding: 3rem;
}

.testimonial-slide {
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-content {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--elegant-black);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rose-gold);
}

.testimonial-info h4 {
    margin-bottom: 0.5rem;
    color: var(--elegant-black);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--elegant-black);
    color: var(--pure-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--soft-gray);
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--rose-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--rose-gold);
    color: var(--pure-white);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--blush-pink);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--medium-gray);
}

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

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

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Professional About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--rose-gold) 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.about-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.about-hero .hero-text {
    flex: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.professional-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.overlay-content i {
    font-size: 1.2rem;
    color: var(--rose-gold);
}

/* About Page Styles */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

 /*.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: var(--transition-smooth);
}*/

.about-image img {
    display: block;           /* makes the img behave like a block */
    margin: 0 auto;           /* centers it horizontally */
    width: 70%;
    height: auto;
    border-radius: 15px;
    transition: var(--transition-smooth);
}


.about-content {
    padding: 2rem 0;
}

.about-content h1,
.about-content h2,
.about-content h3 {
    color: var(--elegant-black);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.about-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--rose-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.about-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 0.75rem;
}

.about-content strong {
    color: var(--elegant-black);
    font-weight: 600;
}

/* Fun Facts Section */
.fun-fact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
}

.fun-fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    display: block;
}

.fact-label {
    font-size: 1.1rem;
    color: var(--elegant-black);
    font-weight: 600;
    display: block;
}

/* Professional Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--nude-beige) 100%);
    padding: 80px 0;
}

.testimonials-section .section-title h2 {
    color: var(--elegant-black);
    font-size: 2.5rem;
    font-weight: 700;
}

.testimonials-section .section-title p {
    color: var(--medium-gray);
    font-size: 1.2rem;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-gold), var(--blush-pink));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.stars i.empty {
    color: #ddd;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--rose-gold);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--elegant-black);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--rose-gold);
    font-weight: 500;
}

/* Professional CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--rose-gold), var(--blush-pink));
    border: none;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.5);
    background: linear-gradient(135deg, #ff4d9e, #ff8bb3);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--elegant-black);
    transform: translateY(-3px);
    border-color: white;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

.cta-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-highlight:hover::before {
    left: 100%;
}

.feature-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-highlight i {
    font-size: 2.5rem;
    color: var(--rose-gold);
    min-width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(255, 182, 193, 0.2) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-highlight:hover i {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3) 0%, rgba(255, 182, 193, 0.3) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

.feature-highlight h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.feature-highlight p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Additional Styles for Enhanced Features */
.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-top: 0.25rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--elegant-black);
}

.feature-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.philosophy-points {
    margin-top: 2rem;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.philosophy-item i {
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-top: 0.25rem;
}

.certifications {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 15px;
}

.cert-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
}

.cert-list i {
    color: var(--rose-gold);
}

.cta-section {
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.fun-fact {
    padding: 1.5rem;
}

.fact-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}

.fact-label {
    color: var(--medium-gray);
    font-weight: 600;
}

.process-step {
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.pricing-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.pricing-details ul {
    list-style: none;
    padding: 0;
}

.pricing-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
}

.pricing-details i {
    color: var(--rose-gold);
}

.booking-cta {
    background: var(--gradient-secondary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.booking-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.1);
}

.booking-info h3 {
    color: var(--elegant-black);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.booking-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.booking-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 1rem;
}

.booking-info li i {
    color: var(--rose-gold);
    font-size: 1.1rem;
    width: 20px;
}

.contact-info {
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    padding-top: 1.5rem;
}

.contact-info h4 {
    color: var(--elegant-black);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.contact-info p i {
    color: var(--rose-gold);
    width: 20px;
    text-align: center;
}

.portfolio-filters {
    margin-bottom: 2rem;
}

.gallery-filter {
    background: transparent;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 0 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--rose-gold);
    color: white;
}

.gallery-info {
    text-align: center;
    color: white;
}

.gallery-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-info p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.gallery-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.social-feed {
    margin-top: 2rem;
}

.social-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.social-header {
    margin-bottom: 1rem;
}

.social-header i {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}

.social-header h3 {
    color: var(--elegant-black);
    margin-bottom: 0;
}

.social-preview p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--rose-gold);
    margin-top: 0.25rem;
}

.contact-method h4 {
    margin-bottom: 0.5rem;
    color: var(--elegant-black);
}

.contact-method p {
    margin-bottom: 0.25rem;
}

.contact-method small {
    color: var(--medium-gray);
}

.social-contact {
    margin-bottom: 2rem;
}

.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: var(--elegant-black);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1,
    .hero-slide-content h1 {
        font-size: 5rem;
    }
    
    .hero-content p,
    .hero-slide-content p {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 3.5rem;
    }
    
    .section-title p {
        font-size: 1.3rem;
    }
    
    /* About Page Large Screen Styles */
    .about-content h1 {
        font-size: 3rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1.2rem;
    }
    
    .about-content {
        padding: 3rem 0;
    }
    
    .fun-fact {
        padding: 2.5rem;
    }
    
    .fact-number {
        font-size: 4rem;
    }
    
    .fact-label {
        font-size: 1.2rem;
    }
    
    /* Professional About Page Large Screen Styles */
    .about-hero h1 {
        font-size: 4rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .cta-text h2 {
        font-size: 3rem;
    }
    
    .cta-text p {
        font-size: 1.3rem;
    }
    
    .cta-buttons .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .feature-highlight {
        padding: 2.5rem;
        gap: 2rem;
    }
    
    .feature-highlight i {
        font-size: 3rem;
        min-width: 3.5rem;
        height: 3.5rem;
    }
    
    .feature-highlight h4 {
        font-size: 1.3rem;
    }
    
    .feature-highlight p {
        font-size: 1.1rem;
    }
    
    /* Large Screen Grid Optimizations */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    /* Large Screen Hero */
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 4rem 2rem;
    }
    
    /* Large Screen About Hero */
    .about-hero {
        padding: 140px 0 100px;
    }
    
    .about-hero .hero-content {
        gap: 5rem;
    }
    
    /* Large Screen CTA */
    .cta-section {
        padding: 100px 0;
    }
    
    .cta-content {
        gap: 5rem;
    }
    
    /* Large Screen Forms */
    .form-row {
        gap: 2rem;
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    /* Large Screen Cards */
    .card {
        padding: 3rem;
    }
    
    .service-card {
        padding: 2.5rem;
    }
    
    .testimonial-card {
        padding: 3rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .card {
        padding: 2.5rem;
    }
    
    .btn-large {
        padding: 25px 50px;
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 900px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .row {
        margin: 0 -20px;
    }
    
    .col {
        padding: 0 20px;
    }
    
    .testimonial-slider {
        padding: 4rem;
    }
    
    .testimonial-content {
        font-size: 1.5rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }
    
    .pricing-info {
        padding: 3rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .booking-info {
        padding: 2.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
    
    .hero-content h1,
    .hero-slide-content h1 {
        font-size: 4.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Ultra-wide and 4K Screen Optimizations */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-content h1,
    .hero-slide-content h1 {
        font-size: 6rem;
    }
    
    .hero-content p,
    .hero-slide-content p {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 4rem;
    }
    
    /* About Page Ultra-wide Screen Styles */
    .about-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content h2 {
        font-size: 3rem;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1.3rem;
    }
    
    .about-content {
        padding: 4rem 0;
    }
    
    .fun-fact {
        padding: 3rem;
    }
    
    .fact-number {
        font-size: 5rem;
    }
    
    .fact-label {
        font-size: 1.3rem;
    }
    
    /* Professional About Page Ultra-wide Screen Styles */
    .about-hero h1 {
        font-size: 4.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .testimonial-card {
        padding: 3rem;
    }
    
    .cta-text h2 {
        font-size: 3.5rem;
    }
    
    .cta-text p {
        font-size: 1.4rem;
    }
    
    .cta-buttons .btn {
        padding: 1.3rem 3rem;
        font-size: 1.3rem;
    }
    
    .feature-highlight {
        padding: 3rem;
        gap: 2.5rem;
    }
    
    .feature-highlight i {
        font-size: 3.5rem;
        min-width: 4rem;
        height: 4rem;
    }
    
    .feature-highlight h4 {
        font-size: 1.4rem;
    }
    
    .feature-highlight p {
        font-size: 1.2rem;
    }
    
    /* Ultra-wide Grid Optimizations */
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 3rem;
    }
    
    .gallery {
        grid-template-columns: repeat(6, 1fr);
        gap: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    /* Ultra-wide Hero */
    .hero {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 5rem 3rem;
    }
    
    /* Ultra-wide About Hero */
    .about-hero {
        padding: 160px 0 120px;
    }
    
    .about-hero .hero-content {
        gap: 6rem;
    }
    
    /* Ultra-wide CTA */
    .cta-section {
        padding: 120px 0;
    }
    
    .cta-content {
        gap: 6rem;
    }
    
    /* Ultra-wide Forms */
    .form-row {
        gap: 3rem;
    }
    
    .form-group {
        margin-bottom: 2.5rem;
    }
    
    /* Ultra-wide Cards */
    .card {
        padding: 4rem;
    }
    
    .service-card {
        padding: 3.5rem;
    }
    
    .testimonial-card {
        padding: 4rem;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
    
    .section {
        padding: 120px 0;
    }
    
    .hero-content {
        max-width: 1000px;
    }
    
    .testimonial-content {
        font-size: 1.8rem;
        max-width: 900px;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }
    h3 { font-size: 1.9rem; }
    
    .hero-content h1,
    .hero-slide-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p,
    .hero-slide-content p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-hero .hero-content {
        gap: 3rem;
    }
    
    .about-hero h1 {
        font-size: 3.2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-content {
        gap: 3rem;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    /* Tablet Navigation */
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    /* Tablet Grid Adjustments */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Tablet Hero */
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 3rem 1.5rem;
    }
    
    /* Tablet About Hero */
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero .hero-content {
        gap: 3rem;
    }
    
    /* Tablet CTA */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        gap: 3rem;
    }
    
    /* Tablet Forms */
    .form-row {
        gap: 1.5rem;
    }
    
    /* Tablet Cards */
    .card {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    /* Mobile Navigation */
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(231, 180, 184, 0.2);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Fallback for mobile menu visibility */
    @media (max-width: 768px) {
        .nav-menu.active {
            display: block !important;
        }
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu a:hover {
        background: var(--nude-beige);
    }
    
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--rose-gold);
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
    }
    
    .nav-toggle:hover {
        color: var(--blush-pink);
        background: rgba(255, 105, 180, 0.1);
        transform: scale(1.1);
    }
    
    .nav-toggle.active {
        color: var(--blush-pink);
        background: rgba(255, 105, 180, 0.2);
        transform: rotate(90deg);
    }
    
    .nav-toggle:focus {
        outline: 2px solid var(--rose-gold);
        outline-offset: 2px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    
    .hero-content h1,
    .hero-slide-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p,
    .hero-slide-content p {
        font-size: 1.1rem;
    }
    
    /* About Page Mobile Styles */
    .about-content h1 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-content h3 {
        font-size: 1.4rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .about-content {
        padding: 1rem 0;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .fun-fact {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
    
    .fact-label {
        font-size: 1rem;
    }
    
    /* Professional About Page Mobile Styles */
    .about-hero .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .feature-highlight i {
        font-size: 2rem;
        min-width: 2.5rem;
        height: 2.5rem;
    }
    
    /* Grid Layouts */
    .row {
        flex-direction: column;
    }
    
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    /* About Hero */
    .about-hero .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero .hero-image {
        order: -1;
    }
    
    /* CTA Section */
    .cta-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-buttons .btn {
        margin: 0.5rem;
    }
    
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col {
        margin-bottom: 1rem;
    }
    
    .gallery-filter {
        margin: 0 0.25rem 0.5rem;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1,
    .hero-slide-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    /* About Page Small Screen Styles */
    .about-content h1 {
        font-size: 1.75rem;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content h3 {
        font-size: 1.25rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-content {
        padding: 0.5rem 0;
    }
    
    .about-image {
        margin-bottom: 1.5rem;
    }
    
    .fun-fact {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .fact-number {
        font-size: 2rem;
    }
    
    .fact-label {
        font-size: 0.9rem;
    }
    
    /* Professional About Page Small Screen Styles */
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .cta-text h2 {
        font-size: 1.75rem;
    }
    
    .cta-text p {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .feature-highlight {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .feature-highlight i {
        font-size: 1.5rem;
        min-width: 2rem;
        height: 2rem;
    }
    
    .feature-highlight h4 {
        font-size: 1rem;
    }
    
    .feature-highlight p {
        font-size: 0.9rem;
    }
    
    /* Small Screen Grid Adjustments */
    .gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Small Screen Hero */
    .hero {
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    .about-hero {
        padding: 80px 0 40px;
    }
    
    /* Small Screen Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0;
    }
    
    /* Small Screen Forms */
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    /* Small Screen Cards */
    .card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 0.75rem;
    }
    
    /* Small Screen Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Small Screen Contact Info */
    .contact-info {
        text-align: center;
    }
    
    .contact-info p {
        margin-bottom: 0.5rem;
    }
    
    /* Small Screen Booking Info */
    .booking-info {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .booking-info ul {
        text-align: left;
        display: inline-block;
    }
}

/* ========================================
   NEW SERVICES SECTION STYLES
   ======================================== */

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--warm-cream) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FF69B4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--elegant-black);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--blush-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-item {
    position: relative;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Service Header */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.service-badge {
    background: var(--nude-beige);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rose-gold);
}

/* Service Image */
.service-image {
    position: relative;
    margin: 1rem 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.8), rgba(255, 182, 193, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.service-overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.service-overlay-content span {
    font-size: 1rem;
    font-weight: 600;
}

.service-image:hover .service-overlay {
    opacity: 1;
}

.service-image:hover .service-overlay-content {
    transform: translateY(0);
}

.service-image:hover img {
    transform: scale(1.1);
}

/* Service Content */
.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--elegant-black);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.feature-item i {
    width: 20px;
    color: var(--rose-gold);
    font-size: 0.9rem;
}

/* Service Footer */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--soft-gray);
}

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

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-gold);
}

.price-note {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

/* Service Button */
.btn-service {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    color: white;
}

.btn-service i {
    transition: var(--transition-smooth);
}

.btn-service:hover i {
    transform: translateX(3px);
}

/* Services CTA */
.services-cta {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--elegant-black);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large i {
    font-size: 1.2rem;
}

/* Responsive Services Section */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-service {
        justify-content: center;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .services-container {
        gap: 1.5rem;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .services-cta {
        padding: 1.5rem 1rem;
    }
}

/* ========================================
   NEW BOOKING SECTION STYLES
   ======================================== */

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--elegant-black) 0%, #2c2c2c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="booking-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23booking-dots)"/></svg>');
    opacity: 0.3;
}

.booking-section .container {
    position: relative;
    z-index: 2;
}

/* Booking Header */
.booking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.booking-badge i {
    font-size: 1rem;
}

.booking-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Booking Container */
.booking-container {
    margin-bottom: 4rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Booking Info Cards */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-card:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.info-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Booking Form Wrapper */
.booking-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--elegant-black);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--soft-gray);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--elegant-black);
}

/* Enhanced Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--elegant-black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--rose-gold);
    font-size: 0.9rem;
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--soft-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
    color: var(--elegant-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.form-group input:focus + .input-focus-line,
.form-group select:focus + .input-focus-line,
.form-group textarea:focus + .input-focus-line {
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
    opacity: 0.7;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--soft-gray);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--rose-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.terms-link {
    color: var(--rose-gold);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--soft-gray);
}

.btn-secondary {
    background: var(--soft-gray);
    color: var(--elegant-black);
    border: 2px solid var(--soft-gray);
}

.btn-secondary:hover {
    background: var(--medium-gray);
    border-color: var(--medium-gray);
    color: white;
}

/* Booking Guarantee */
.booking-guarantee {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Responsive Booking Section */
@media (max-width: 768px) {
    .booking-title {
        font-size: 2.5rem;
    }
    
    .booking-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .guarantee-guarantee {
        padding: 1.5rem;
    }
}

/* ========================================
   NEW TESTIMONIALS SECTION STYLES
   ======================================== */

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--nude-beige) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-hearts" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 35c-5-8-15-8-15 0s10 8 15 15c5-7 15-7 15 0s-10 8-15 0z" fill="%23FF69B4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-hearts)"/></svg>');
    opacity: 0.3;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.testimonials-badge i {
    font-size: 1rem;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--elegant-black);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--blush-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonials Container */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    position: relative;
    perspective: 1000px;
}

.testimonial-card-inner {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rating-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--elegant-black);
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Testimonial Content */
.testimonial-content {
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--rose-gold);
    font-family: serif;
    line-height: 1;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--elegant-black);
    margin-bottom: 0.25rem;
}

.author-service {
    font-size: 0.9rem;
    color: var(--rose-gold);
    font-weight: 500;
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.testimonial-date i {
    color: var(--rose-gold);
}

/* Testimonial Decoration */
.testimonial-decoration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.decoration-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--rose-gold);
    border-radius: 50%;
}

/* Testimonials Stats */
.testimonials-stats {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--warm-cream) 100%);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--elegant-black);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Testimonials Section */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .testimonial-date {
        align-self: flex-end;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-container {
        gap: 1.5rem;
    }
    
    .testimonial-card-inner {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .testimonial-content blockquote::before {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-cta {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}
