/* Modern RO Service Website - Complete Redesign */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary-blue: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --secondary-cyan: #00d4ff;
    --accent-green: #00c851;
    --accent-orange: #ff6b35;
    --neutral-dark: #1a1a1a;
    --neutral-medium: #666666;
    --neutral-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-light: 0 4px 20px rgba(0, 102, 255, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 102, 255, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 102, 255, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--neutral-dark);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-blue);
}

p {
    font-size: 1.1rem;
    color: var(--neutral-medium);
    margin-bottom: 1.5rem;
}

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent-green) 0%, #00a844 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 200, 81, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* Header - Modern Floating Design */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    padding: 12px 24px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
    width: calc(100% - 40px);
    max-width: 1000px;
}

.header.scrolled {
    top: 10px;
    box-shadow: var(--shadow-heavy);
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--neutral-medium);
    font-weight: 500;
    white-space: nowrap;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav a {
    text-decoration: none;
    color: var(--neutral-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--primary-blue);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Force show mobile menu toggle at 900px and below */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Force hide navigation menu */
    .nav ul {
        display: none !important;
    }
}

/* Hero Section - Modern Split Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

/* Hero with Background Image */
.hero .hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 102, 255, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .hero-text h1,
.hero .hero-text p {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-text h1 {
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--neutral-medium);
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: var(--shadow-light);
}

.hero-feature span {
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}


.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


/* Services Section - Modern Card Grid */
.services {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--neutral-dark);
}

.service-card p {
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    color: var(--neutral-medium);
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.service-btn {
    width: 100%;
    justify-content: center;
}

/* Quick Booking Section */
.quick-booking {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neutral-light) 0%, #e8f4ff 100%);
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.booking-submit {
    width: 100%;
    margin-top: 24px;
    padding: 20px;
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 24px;
}

/* Brands Section */
.brands {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--neutral-dark) 0%, #2c2c2c 100%);
    color: var(--white);
}

.brands .section-header h2,
.brands .section-header p {
    color: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.brand-card h3,
.brand-card p {
    color: var(--white) !important;
}

.brand-logo {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--neutral-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--neutral-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* 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);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        width: calc(100% - 30px);
        max-width: none;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .nav a {
        font-size: 0.85rem;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }
}

/* Tablet and smaller desktop navigation fixes */
@media (max-width: 900px) {
    .header {
        width: calc(100% - 20px);
        padding: 10px 16px;
    }
    
    .header-content {
        gap: 8px;
        align-items: center;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        margin-top: 10px;
        box-shadow: var(--shadow-medium);
        border: 1px solid rgba(0, 102, 255, 0.1);
        z-index: 1001;
        flex: none;
    }
    
    .nav.active {
        display: block !important;
    }
    
    .nav ul {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav li {
        border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    }
    
    .nav li:last-child {
        border-bottom: none;
    }
    
    .nav a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }
    
    .header-cta {
        gap: 6px;
        flex-shrink: 0;
        order: 2;
        display: flex;
        align-items: center;
    }
    
    .header-cta .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: auto;
        border-radius: 25px;
    }
    
    .header-cta .btn i {
        font-size: 0.75rem;
        margin-right: 4px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: 8px;
        flex-shrink: 0;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px 16px;
        border-radius: 50px;
    }
    
    .header-content {
        gap: 8px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .logo {
        flex-shrink: 0;
        min-width: 0;
        order: 1;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.65rem;
    }
    
    /* Hide the entire nav container on mobile */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        margin-top: 10px;
        box-shadow: var(--shadow-medium);
        border: 1px solid rgba(0, 102, 255, 0.1);
        z-index: 1001;
        flex: none;
    }
    
    /* Show nav when active */
    .nav.active {
        display: block !important;
    }
    
    .nav ul {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav li {
        border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    }
    
    .nav li:last-child {
        border-bottom: none;
    }
    
    .nav a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }
    
    .header-cta {
        gap: 4px;
        flex-shrink: 0;
        order: 2;
        display: flex;
        align-items: center;
    }
    
    .header-cta .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: auto;
        border-radius: 25px;
    }
    
    .header-cta .btn i {
        font-size: 0.75rem;
        margin-right: 4px;
    }
    
    /* Hide button text on smaller screens, keep icons */
    .header-cta .btn span:not(.fas):not(.fab) {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: 8px;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-feature {
        padding: 10px 16px;
    }
    
    
    .services {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .quick-booking {
        padding: 60px 0;
    }
    
    .booking-form-container {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }
    
    .brands {
        padding: 80px 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        width: calc(100% - 16px);
        padding: 8px 12px;
    }
    
    .header-content {
        gap: 6px;
        align-items: center;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }
    
    .header-cta {
        gap: 3px;
        order: 2;
    }
    
    .header-cta .btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: 32px;
        border-radius: 20px;
        justify-content: center;
    }
    
    .header-cta .btn i {
        font-size: 0.7rem;
        margin-right: 0;
    }
    
    /* Hide text on very small screens, show only icons */
    .header-cta .btn span:not(.fas):not(.fab) {
        display: none;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
        order: 3;
        margin-left: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-text h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-feature {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero-feature-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    
    .services {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-price {
        font-size: 1.3rem;
    }
    
    .quick-booking {
        padding: 50px 0;
    }
    
    .booking-form-container {
        padding: 24px 16px;
        margin: 0 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .booking-submit {
        padding: 16px;
        font-size: 1rem;
    }
    
    .why-choose {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 32px 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .brands {
        padding: 60px 0;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brand-card {
        padding: 24px 20px;
    }
    
    .gallery {
        padding: 50px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 10px;
    }
    
    .footer-bottom {
        padding-top: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .header {
        width: calc(100% - 12px);
        padding: 6px 10px;
    }
    
    .header-content {
        gap: 4px;
        align-items: center;
    }
    
    .logo {
        order: 1;
    }
    
    .logo-icon {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .logo-text span {
        font-size: 0.55rem;
    }
    
    .header-cta {
        gap: 2px;
        order: 2;
    }
    
    .header-cta .btn {
        padding: 5px 8px;
        font-size: 0.7rem;
        border-radius: 18px;
        min-width: 30px;
        justify-content: center;
    }
    
    .header-cta .btn i {
        font-size: 0.65rem;
        margin-right: 0;
    }
    
    /* Show only icons on very small screens */
    .header-cta .btn span:not(.fas):not(.fab) {
        display: none;
    }
    
    .mobile-menu-toggle {
        padding: 4px;
        order: 3;
        margin-left: 4px;
    }
    
    .mobile-menu-toggle span {
        width: 16px;
        height: 2px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .booking-form-container {
        padding: 20px 12px;
        margin: 0 4px;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .brand-card {
        padding: 20px 16px;
    }
}

/* Service Page Specific Styles */
.breadcrumb {
    padding: 140px 0 20px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4ff 100%);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--neutral-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-blue);
}

.breadcrumb-nav .separator {
    color: var(--neutral-medium);
    font-size: 0.8rem;
}

.breadcrumb-nav .current {
    color: var(--primary-blue);
    font-weight: 600;
}

.service-hero {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4ff 100%);
    position: relative;
}

/* Service Hero with Background Image */
.service-hero.testing-hero,
.service-hero.commercial-hero,
.location-hero {
    background: none;
}

.service-hero.testing-hero::before,
.service-hero.commercial-hero::before,
.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 102, 255, 0.7) 100%);
    z-index: 1;
}

/* Add overlay for all service hero sections with background images */
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 102, 255, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-hero .container,
.location-hero .container {
    position: relative;
    z-index: 2;
}

.service-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Ensure text visibility on service pages */
.service-hero h1,
.service-hero p,
.service-hero .service-hero-description,
.location-hero h1,
.location-hero p {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.service-hero .service-features .service-feature,
.service-hero .service-hero-features .hero-feature,
.location-hero .location-highlights .highlight {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-hero .service-features .service-feature span,
.service-hero .service-hero-features .hero-feature span,
.location-hero .location-highlights .highlight span {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 0 0 100px;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.service-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--neutral-medium);
}

.service-hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.service-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
}

.service-visual {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.service-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-icon-large {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 3;
    position: relative;
}

.hero-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card .hero-card-icon,
.hero-card h3,
.hero-card p {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.installation-process,
.pricing-section,
.brands-install,
.faq-section {
    padding: 100px 0;
}

.installation-process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--primary-blue);
}

.process-step h3 {
    margin-bottom: 16px;
    color: var(--neutral-dark);
}

.process-step p {
    color: var(--neutral-medium);
    font-size: 1rem;
}

.pricing-section {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #e8f4ff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 16px;
    color: var(--neutral-dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--neutral-medium);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--neutral-medium);
    position: relative;
    padding-left: 32px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.brands-install {
    background: linear-gradient(135deg, var(--neutral-dark) 0%, #2c2c2c 100%);
    color: var(--white);
}

.brands-install .section-header h2,
.brands-install .section-header p {
    color: var(--white);
}

.faq-section {
    background: var(--white);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 102, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 102, 255, 0.02);
}

.faq-question h4 {
    margin: 0;
    color: var(--neutral-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 32px 24px;
    margin: 0;
    color: var(--neutral-medium);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 100px 0 15px;
    }
    
    .breadcrumb-nav {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .service-hero {
        padding: 40px 0 60px;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-hero-text h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .service-hero-text p {
        font-size: 1.1rem;
    }
    
    .service-hero-features {
        justify-content: center;
        gap: 16px;
    }
    
    .service-hero-cta {
        justify-content: center;
        gap: 16px;
    }
    
    .service-visual {
        height: 300px;
    }
    
    .service-icon-large {
        font-size: 4rem;
    }
    
    .installation-process,
    .pricing-section,
    .brands-install,
    .faq-section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-step {
        padding: 32px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 24px 20px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        padding: 90px 0 10px;
    }
    
    .service-hero {
        padding: 30px 0 50px;
    }
    
    .service-hero-text h1 {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }
    
    .service-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .service-visual {
        height: 250px;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .installation-process,
    .pricing-section,
    .brands-install,
    .faq-section {
        padding: 50px 0;
    }
    
    .process-step {
        padding: 24px 16px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px;
    }
}

/* Mobile Floating Call Button */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.mobile-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.mobile-call-button:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Show mobile call button only on mobile devices */
@media (max-width: 768px) {
    .mobile-call-button {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-call-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 1.3rem;
    }
}