/* CSS Variables */
:root {
    --primary-gold: #C9A227;
    /* deeper, richer gold */
    --primary-rose: #E6C9CB;
    /* softer rose pink, less saturated */
    --deep-charcoal: #1B1B1B;
    --soft-cream: #FAF8F5;
    /* slightly warmer cream */
    --warm-white: #FFFFFF;
    --deep-charcoal: #1B1B1B;
    /* deeper charcoal for luxury contrast */
    --text-primary: #222222;
    /* deeper gray instead of black */
    --text-secondary: #555555;
    /* softer mid-gray */
    --text-muted: #888888;
    --button-color: linear-gradient(135deg, #e7d38f 0%, #dfd813 100%);
    /* gold button color */
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-gold: linear-gradient(135deg, #c1a23d 0%, #F5D76E 100%);
    --gradient-rose: linear-gradient(135deg, #E6C9CB 0%, #F9E1E3 100%);
    --font-primary: "Montserrat", sans-serif;
    /* elegant luxury serif */
    --font-secondary: 'Poppins', sans-serif;
    /* clean modern body font */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--soft-cream);
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.98);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Changed from 12px to 50% for perfect circle */
    background: var(--gradient-gold);
    padding: 8px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    animation: pulse 2s infinite;
    overflow: hidden;
    /* Ensures image stays within circular bounds */
}

.logo-icon img {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover;
    display: block !important;
    border-radius: 50%;
    /* Changed from 80px to 50% for perfect circle */
    filter: none;
    transition: var(--transition-fast);
}

/* If your image is dark and you want it white on gold background */
.logo-icon img.white {
    filter: brightness(0) invert(1);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.5);
    }

    100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
        padding: 6px;
    }

    .logo-icon img {
        width: 28px !important;
        height: 28px !important;
    }
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-gold);
}

/* Enhanced Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    position: relative;
    z-index: 1002;
}

.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

/* Hamburger Animation */
.mobile-toggle .hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    display: inline-block;
}

.mobile-toggle .hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-toggle .hamburger span:nth-child(1) {
    top: 0px;
}

.mobile-toggle .hamburger span:nth-child(2),
.mobile-toggle .hamburger span:nth-child(3) {
    top: 8px;
}

.mobile-toggle .hamburger span:nth-child(4) {
    top: 16px;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    transform: rotate(45deg);
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-toggle.active .hamburger span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #F5F2E8 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .accent {
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--warm-white);
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border: 2px solid var(--primary-gold);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--warm-white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    height: 600px;
    animation: slideInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-main {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 500px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--warm-white);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-fast);
}

.hero-stats {
    position: absolute;
    bottom: 20px;
    left: 25%;
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    min-width: 200px;
    z-index: 2;
}

.stat {
    margin-bottom: 0.5rem;
}

.stat:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--warm-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--warm-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    /* Stack content vertically */
    justify-content: space-between;
    /* Push price to bottom */
    height: 420px;
    /* Fixed height for all cards, adjust as needed */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 32px;
    color: var(--warm-white);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-content {
    margin-bottom: 1rem;
    flex-grow: 1;
    /* Take remaining space */
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    justify-content: flex-start;
    /* Align button consistently */
    align-items: center;
    margin-top: auto;
    /* Ensures it sticks to the bottom */
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
}

.book-service {
    min-width: 100px;
    text-align: center;
    background: var(--button-color);
    color: var(--warm-white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.book-service:hover {
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--soft-cream);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    animation: slideInLeft 1s ease-out;
}

.about-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 16px;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--primary-gold);
    font-size: 20px;
}

.about-image {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.about-image-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: var(--warm-white);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-fast);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    text-align: center;
    min-width: 150px;
}

.experience-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.experience-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--warm-white);
}

.contact-container {
    gap: 4rem;
}

.contact-info {
    padding: 2rem 0;
    /* Add grid layout for contact items - two columns on larger screens */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    /* Align items to start of their grid area */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
    /* Remove individual margin since we're using grid gap */
    padding: 1.5rem;
    background: var(--soft-cream);
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    width: 100%;
    /* Ensure full width within grid area */
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: #e4b829;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.link-custom {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    grid-column: 1 / -1;
    /* This makes social links span across all columns */
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-white);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--deep-charcoal);
    color: var(--warm-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Fade-in animation */
#footer-text {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease, transform 1s ease;
}

#footer-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: slideInUp 0.3s ease;
}

.modal h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modal p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--warm-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.scroll-to-top:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Professional Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        /* Light mode background */
        background: linear-gradient(135deg, rgba(250, 248, 245, 0.98) 0%, rgba(245, 242, 232, 0.98) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.3s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for nav items */
    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.25s;
    }

    /* Button-style navigation links - LIGHT MODE */
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        color: var(--text-primary);
        text-decoration: none;
        position: relative;
        border-radius: 12px;
        margin: 0;
        transition: all 0.3s ease;
        background: rgba(212, 175, 55, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.2);
        letter-spacing: 0.5px;
        backdrop-filter: blur(10px);
    }

    /* Hover effect - button style */
    .nav-link:hover {
        background: linear-gradient(135deg, var(--primary-gold), var(--accent-copper));
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        border-color: var(--primary-gold);
    }

    /* Active state */
    .nav-link.active {
        background: var(--primary-gold);
        color: #ffffff;
        border-color: var(--primary-gold);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    /* Remove the old ::before and ::after pseudo elements */
    .nav-link::before,
    .nav-link::after {
        display: none;
    }

    /* Mobile toggle button */
    .mobile-toggle {
        display: block;
        z-index: 1002;
    }

    .mobile-toggle .hamburger span {
        background: var(--text-primary);
    }

    /* Dark mode mobile menu */
    @media (prefers-color-scheme: dark) {
        .nav-menu {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
        }

        .nav-link {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #ffffff;
        }

        .nav-link:hover {
            background: linear-gradient(135deg, var(--primary-gold), var(--accent-copper));
            color: #ffffff;
        }

        .nav-link.active {
            background: var(--primary-gold);
            color: #ffffff;
        }
    }

    /* Ensure mobile header adapts to theme */
    .header.mobile-open {
        background: rgba(250, 248, 245, 0.98);
    }

    @media (prefers-color-scheme: dark) {
        .header.mobile-open {
            background: rgba(26, 26, 26, 0.98);
        }
    }

    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-image {
        height: 400px;
        margin-top: 2rem;
    }

    .hero-image-main {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-stats {
        left: 0;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        text-align: center;
        animation: slideInLeft 1s ease-out;
    }

    .section-subtitle {
        text-align: center;
    }

    .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 2rem auto;
        /* Center the text blocks */
    }

    .features-list {
        max-width: 400px;
        margin: 0 auto 2rem auto;
        /* Center the features list */
    }

    .features-list li {
        justify-content: center;
        /* Center each list item */
        text-align: center;
    }

    /* Center the button */
    .about-content .btn-primary {
        display: inline-flex;
        margin: 0 auto;
    }

    /* Center the about image */
    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem auto;
        height: 400px;
        /* Adjust height for mobile */
    }

    .about-image-main {
        position: relative;
        /* Change from absolute to relative */
        left: auto;
        /* Reset left positioning */
        top: auto;
        /* Reset top positioning */
        transform: none;
        /* Remove transform */
        width: 280px;
        /* Smaller width for mobile */
        height: 350px;
        /* Smaller height for mobile */
        margin: 0 auto;
    }

    .experience-badge {
        position: absolute;
        bottom: -10px;
        right: -10px;
        background: var(--warm-white);
        padding: 1rem;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-medium);
        text-align: center;
        min-width: 120px;
    }

    .experience-number {
        font-size: 28px;
    }

    .experience-label {
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding-bottom: 1.5rem;
    }

    .service-price {
        position: static;
        margin-top: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-container {
        padding: 1rem;
    }
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav-menu {
        padding: 100px 1rem 2rem;
    }

    .nav-link {
        font-size: 18px;
        padding: 1.25rem 1.5rem;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        padding: 60px 2rem 1rem;
        justify-content: flex-start;
        padding-top: 80px;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        font-size: 16px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .mobile-toggle .hamburger span {
        height: 2px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

    .nav-menu,
    .nav-item,
    .nav-link,
    .mobile-toggle .hamburger span,
    .service-card,
    .contact-item,
    .btn-primary,
    .btn-secondary {
        transition: none;
    }

    .hero-content,
    .hero-image,
    .about-content,
    .about-image {
        animation: none;
    }
}

/* Focus styles for accessibility */
.mobile-toggle:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 4px;
}

.btn-primary:focus,
.btn-secondary:focus,
.form-control:focus,
.book-service:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Additional responsive improvements */
@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .services,
    .about,
    .contact {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Print styles */
@media print {

    .header,
    .mobile-toggle,
    .modal,
    .hero-buttons,
    .book-service {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        background: white;
        color: black;
    }
}

/* Animations */
@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);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading states */
.animate {
    animation-play-state: running !important;
}

body.loaded {
    overflow-x: hidden;
}

/* Contact items alignment for screens below 800px */
@media (max-width: 800px) {

    .contact-details h4,
    .contact-details p {
        text-align: left;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .nav-menu {
        padding: 100px 1rem 2rem;
    }

    .nav-link {
        font-size: 18px;
        padding: 1.25rem 1.5rem;
    }

    .logo-text {
        font-size: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Responsive design - Single column for screens 800px and below */
@media (max-width: 800px) {
    .contact-info {
        grid-template-columns: 1fr;
        /* Single column on small screens */
        gap: 1.5rem;
        /* Slightly smaller gap on mobile */
    }

    .contact-item {
        margin-bottom: 0;
        /* Ensure no extra margin */
    }

    .social-links {
        grid-column: 1;
        /* Reset grid column span for single column */
        justify-content: center;
        margin-top: 1.5rem;
    }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 480px) {
    .contact-info {
        gap: 1rem;
        padding: 1rem 0;
    }

    .contact-item {
        padding: 1.25rem;
        flex-direction: row;
        /* Keep horizontal layout */
        text-align: left;
        /* Align text to left */
        align-items: flex-start;
        /* Align items to top */
    }

    .contact-icon {
        margin-bottom: 0.5rem;
    }

    .social-links {
        margin-top: 1rem;
        gap: 0.75rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* About section features list - block layout for mobile */
    .features-list {
        max-width: none;
        /* Remove max-width constraint */
        margin: 0 0 2rem 0;
        /* Remove auto centering */
    }

    .features-list li {
        flex-direction: column;
        /* Stack icon and text vertically */
        text-align: center;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: var(--warm-white);
        border-radius: var(--border-radius-sm);
        margin-bottom: 0.75rem;
        box-shadow: var(--shadow-soft);
        transition: var(--transition-fast);
    }

    .features-list li:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    .features-list i {
        margin-bottom: 0.5rem;
        font-size: 24px;
    }

    .features-list span {
        font-weight: 500;
        font-size: 14px;
        line-height: 1.4;
    }
}