/* ============================================
   BLACK & YELLOW THEME - LOL PNEU & SERVICES
   ============================================ */

/* CSS Variables for Black & Yellow Theme */
:root {
    /* Primary Colors */
    --primary-black: #000000;
    --primary-yellow: #FFD700;
    --primary-yellow-dark: #E6C200;
    --primary-yellow-light: #FFED4E;
    
    /* Secondary Colors */
    --dark-gray: #1A1A1A;
    --medium-gray: #333333;
    --light-gray: #4D4D4D;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    
    /* Accents */
    --accent-red: #DC3545;
    --accent-green: #28A745;
    --accent-blue: #007BFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-yellow: 0 4px 20px rgba(255, 215, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-circle: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

/* ============================================
   BASE STYLES
   ============================================ */

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

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

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 130px; /* For fixed header with banner */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-black);
}

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

ul {
    list-style: none;
}

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

button, 
input, 
textarea {
    font-family: inherit;
    font-size: inherit;
}

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

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

.highlight {
    color: var(--primary-yellow);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-yellow);
    opacity: 0.3;
    border-radius: 2px;
}

/* ============================================
   HEADER & NAVIGATION - FIXED
   ============================================ */

/* Availability Banner */
.availability-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-yellow-dark));
    color: var(--primary-black);
    text-align: center;
    padding: 8px 0;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1002;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Fixed Navigation */
nav {
    position: fixed;
    top: 30px; /* Below the banner */
    left: 0;
    right: 0;
    background: var(--primary-black);
    z-index: 1001;
    padding: 0;
    border-bottom: 3px solid var(--primary-yellow);
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 var(--space-lg);
}

/* Logo container */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1003;
}

/* Logo image styling */
.logo-image {
    width: 150px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(255, 215, 0, 0.2));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

/* Navigation container - centered */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 var(--space-xl);
    z-index: 1001;
}

/* Navigation links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    margin: 0 auto;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: var(--space-sm) var(--space-md);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* Social icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: auto;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-circle);
    color: var(--white);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Phone button */
.phone-button {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    white-space: nowrap;
    margin-left: var(--space-lg);
    box-shadow: var(--shadow-yellow);
}

.phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1003;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), 
                url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 100vh;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 130px; /* Account for fixed header + banner */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 50;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: var(--space-md);
}

.feature-card h4 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    color: var(--primary-black);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    color: var(--white);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-yellow);
    transition: var(--transition-normal);
}

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

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-yellow);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-yellow);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-yellow-dark));
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary-black);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-black);
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: var(--space-lg);
}

.service-features {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--medium-gray);
}

.service-features i {
    color: var(--primary-yellow);
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-black);
    font-weight: 700;
    padding: var(--space-md) var(--space-lg);
    background: var(--primary-yellow);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.service-button:hover {
    background: var(--primary-yellow-dark);
    gap: var(--space-lg);
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.why-text .section-title {
    text-align: left;
}

.why-text .section-title::after {
    left: 0;
    transform: none;
}

.why-text p {
    color: var(--light-gray);
    margin-bottom: var(--space-xl);
    font-size: 1.1rem;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.why-feature {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.why-feature i {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--primary-black);
}

.why-feature p {
    margin: 0;
    color: var(--light-gray);
    font-size: 0.95rem;
}

.why-image .image-card {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rating-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.rating-stars {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.rating-text {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: var(--space-3xl) 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.rating-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
}

.rating-info {
    text-align: left;
}

.rating-info .stars {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.rating-count {
    color: var(--medium-gray);
    font-weight: 600;
    font-size: 1.1rem;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-yellow);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.reviewer {
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
}

.review-card .stars {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.review-text {
    color: var(--light-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3rem;
    color: var(--primary-yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--off-white);
}

.review-date {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.review-source {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.review-source:hover {
    color: var(--primary-yellow-dark);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)), 
                url('../assets/images/cta-bg.jpg') center/cover no-repeat fixed;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: var(--space-lg);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.btn-large {
    padding: var(--space-xl) var(--space-3xl);
    font-size: 1.2rem;
}

.cta-note {
    margin-top: var(--space-lg);
    color: var(--primary-yellow);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--primary-black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-image {
    width: 150px;
    filter: brightness(1.2);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social .social-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-yellow);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: var(--space-sm);
}

.footer-services li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-services i {
    color: var(--primary-yellow);
}

.footer-contact {
    margin-top: var(--space-sm);
}

.footer-contact .contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.contact-info i {
    color: var(--primary-yellow);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .reviews-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        gap: var(--space-lg);
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    .phone-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .logo-image {
        width: 140px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        padding-top: 160px; /* Increased for banner + nav on mobile */
    }
    
    .availability-banner {
        height: 30px;
        font-size: 0.8rem;
        padding: 6px 0;
    }
    
    nav {
        top: 30px;
        height: auto;
        min-height: 80px;
        flex-direction: column;
        padding: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: var(--space-lg);
    }
    
    nav .container {
        flex-direction: column;
        padding: var(--space-md) var(--space-lg);
        height: auto;
    }
    
    .logo {
        margin-bottom: var(--space-md);
    }
    
    .logo-image {
        width: 130px;
    }
    
    .nav-container {
        position: fixed;
        top: 160px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 160px);
        background: var(--primary-black);
        flex-direction: column;
        margin: 0;
        padding: var(--space-2xl);
        transition: var(--transition-normal);
        z-index: 99;
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: var(--space-lg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
        font-size: 1.1rem;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .social-icons {
        margin: var(--space-lg) 0;
        justify-content: center;
        width: 100%;
    }
    
    .phone-button {
        margin: var(--space-lg) auto;
        width: 90%;
        justify-content: center;
    }
    
    .hero {
        margin-top: 160px;
        min-height: calc(100vh - 160px);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .services-grid,
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .btn-primary,
    .btn-secondary {
        padding: var(--space-lg);
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card,
    .review-card {
        padding: var(--space-xl);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 110px;
    }
    
    .availability-banner {
        font-size: 0.7rem;
        padding: 5px 0;
    }
}

/* Fix for very tall screens */
@media (min-height: 1000px) {
    .hero {
        min-height: 80vh;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .feature-card {
        -webkit-backdrop-filter: blur(10px);
    }
    
    .rating-badge {
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Fix for Firefox */
@-moz-document url-prefix() {
    nav {
        background: var(--primary-black);
    }
}

/* Print Styles */
@media print {
    .hero,
    .cta-section,
    footer {
        background: white !important;
        color: black !important;
    }
    
    .btn-primary,
    .btn-secondary,
    .phone-button {
        background: white !important;
        color: black !important;
        border: 1px solid black !important;
    }
    
    .nav-container,
    .social-icons,
    .scroll-indicator,
    .mobile-menu-btn,
    .availability-banner {
        display: none !important;
    }
    
    nav {
        position: static;
        background: white !important;
        border-bottom: 1px solid #000;
    }
    
    body {
        padding-top: 0;
    }
    
    .logo-image {
        filter: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .logo-image {
        filter: contrast(1.5);
    }
    
    nav {
        background: black;
        border-bottom: 3px solid var(--primary-yellow);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    nav,
    .logo-image,
    .nav-link,
    .feature-card,
    .service-card,
    .review-card {
        transition: none;
    }
    
    .logo-image:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
}

/* Loading state */
body.loading nav {
    opacity: 0.8;
}

/* Logo animation for page load */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    animation: logoFadeIn 0.5s ease forwards;
}

/* Navigation items animation */
.nav-link {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }
.social-icons { animation-delay: 0.5s; }
.phone-button { animation-delay: 0.6s; }

/* ============================================
   EXTRA MOBILE POLISH (SAFE PATCH)
   ============================================ */

@media (max-width: 768px) {

    /* Reduce top spacing a bit */
    body {
        padding-top: 150px;
    }

    /* Make banner slimmer */
    .availability-banner {
        font-size: 0.75rem;
        height: 26px;
    }

    /* Reduce nav vertical space */
    nav .container {
        padding: 0.75rem 1rem;
    }

    /* Slightly smaller logo */
    .logo-image {
        width: 120px;
    }

    /* Hero better spacing */
    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Buttons cleaner on phone */
    .hero-buttons a {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
    }

    /* Phone button not too tall */
    .phone-button {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

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

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

    .logo-image {
        width: 110px;
    }
}

/* === PROFESSIONAL MOBILE HERO FIX === */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .hero-title {
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-features {
    margin-top: 1.5rem;
  }
}


/* === PRO IMAGE PLACEHOLDERS === */
.gallery-placeholder {
    width: 100%;
    height: 260px;
    background: #111;
    border-radius: 16px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.why-image-placeholder {
    width: 100%;
    height: 400px;
    background: #111;
    border-radius: 24px;
}

/* ===============================
   GALLERY IMAGES (PRO)
=============================== */

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

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