/* ===== QUANTUM PLUMBING & GAS - PREMIUM STYLES ===== */

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

:root {
    --primary: #003366;
    --primary-dark: #002244;
    --secondary: #ff6600;
    --accent: #00aa44;
    --success: #00aa44;
    --danger: #dc3545;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.25);
}

html { scroll-behavior: smooth; }
body { 
    font-family: var(--font); 
    line-height: 1.6; 
    color: var(--gray-800); 
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden { opacity: 0; visibility: hidden; }

.loading-content { text-align: center; color: var(--white); }
.loading-logo { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.loading-logo i { 
    margin-right: 15px; 
    font-size: 2.5rem;
    animation: rotate 2s linear infinite;
}

.loading-bar {
    width: 200px; height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* Navigation */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all var(--transition);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex; align-items: center; text-decoration: none;
    transition: transform var(--transition);
}

.nav-logo:hover { transform: scale(1.05); }

.logo-icon {
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-right: 15px;
}


.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-size: 1.5rem; font-weight: 700; color: var(--primary); line-height: 1;
}

.logo-sub {
    font-size: 0.8rem; font-weight: 500; color: var(--gray-600); line-height: 1;
}

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

.nav-link {
    color: var(--gray-800); text-decoration: none; font-weight: 500;
    transition: all var(--transition); position: relative; padding: 10px 0;
}

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

.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--secondary), #ff4400);
    color: var(--white); padding: 12px 24px; border-radius: 25px;
    text-decoration: none; font-weight: 600;
    transition: all var(--transition);
    display: flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
}

.nav-cta::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover::before { left: 100%; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

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

.bar {
    width: 25px; height: 3px; background: var(--gray-800);
    margin: 3px 0; transition: var(--transition); border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.hero-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }

.hero-particles {
    position: absolute; width: 100%; height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,215,0,0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,215,0,0.3), transparent);
    background-repeat: repeat; background-size: 200px 100px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.hero-gradient {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(0,102,204,0.1) 0%, rgba(255,107,53,0.1) 100%);
}

.hero-content {
    position: relative; z-index: 2; color: var(--white);
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main {
    text-align: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    padding: 12px 24px; border-radius: 25px; margin-bottom: 30px;
    font-weight: 500; border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge i { color: var(--accent); font-size: 1.2rem; }

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 30px;
    margin-top: 0px;
}

.title-line { display: block; animation: fadeInUp 1s ease both; }
.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }

.highlight {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem; line-height: 1.6; margin-bottom: 50px;
    opacity: 0.9; max-width: 700px; margin-left: auto; margin-right: auto;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stats {
    display: flex; justify-content: center; gap: 60px; margin-bottom: 50px;
    animation: fadeInUp 1s ease 1s both;
}

.stat-item { text-align: center; }
.stat-number {
    font-size: 2.5rem; font-weight: 900; color: var(--accent);
    line-height: 1; margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem; font-weight: 500; opacity: 0.8;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.hero-main {
    margin-bottom: 60px;
    padding-top: 100px;
}

.hero-scroll {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 2; animation: fadeInUp 1s ease 1.6s both;
}

.scroll-indicator {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7); cursor: pointer;
    transition: all var(--transition);
}

.scroll-indicator:hover { color: var(--white); transform: translateY(-5px); }

.scroll-indicator span {
    font-size: 0.9rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
}

.scroll-indicator i { font-size: 1.5rem; animation: bounce 2s infinite; }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* WhatsApp Widget */
.whatsapp-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease 1.4s both;
    margin-top: 60px;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.whatsapp-header i {
    font-size: 2.5rem;
    color: #25D366;
    animation: pulse 2s infinite;
}

.whatsapp-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.whatsapp-title p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.whatsapp-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.whatsapp-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-800);
    font-size: 0.95rem;
    font-weight: 500;
}

.whatsapp-features .feature i {
    color: #25D366;
    font-size: 1.1rem;
    width: 20px;
}

.whatsapp-number {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.number-display i {
    font-size: 1.5rem;
    color: #25D366;
}

.number-display span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.whatsapp-number p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    width: 100%;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: 600;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: var(--gray-800) !important;
    font-size: 0.8rem;
    text-align: center;
}

.whatsapp-note i {
    color: var(--gray-800) !important;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 25px; text-decoration: none;
    font-weight: 600; font-size: 1rem; transition: all var(--transition);
    border: 2px solid transparent; position: relative; overflow: hidden;
    cursor: pointer; white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: var(--white); color: var(--primary);
    transform: translateY(-3px); box-shadow: var(--shadow-lg);
}

.btn-emergency {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); animation: pulse-glow 2s infinite;
}

.btn-emergency:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-outline-primary {
    background: transparent; color: var(--primary); border-color: var(--primary);
}

.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

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

.btn-shine {
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-shine { left: 100%; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,102,0,0.4); }
    50% { box-shadow: 0 0 30px rgba(255,102,0,0.6); }
}

/* Trust Section */
.trust-section {
    padding: 80px 0; background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
}

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

.trust-item {
    display: flex; align-items: center; gap: 20px;
    padding: 30px; background: var(--white); border-radius: 15px;
    box-shadow: var(--shadow-sm); transition: all var(--transition);
}

.trust-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.trust-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.trust-icon i { font-size: 1.5rem; color: var(--white); }

.trust-content h3 {
    font-size: 1.2rem; font-weight: 600; color: var(--gray-800); margin-bottom: 5px;
}

.trust-content p { color: var(--gray-600); font-size: 0.9rem; }

/* Section Styles */
.section-header { text-align: center; margin-bottom: 80px; }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); padding: 8px 20px; border-radius: 25px;
    font-size: 0.9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
    color: var(--gray-800); margin-bottom: 20px; line-height: 1.2;
}

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

/* Services Preview - Simplified */
.services-preview { 
    padding: 100px 0; 
    background: var(--gray-100);
}

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

.service-card {
    background: var(--white); 
    border-radius: 15px; 
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease; 
    border: 1px solid var(--gray-200);
}

.service-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.service-background {
    display: none;
}

.service-icon {
    width: 70px; 
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 25px; 
    box-shadow: 0 5px 15px rgba(0,102,204,0.2);
}

.service-icon i { 
    font-size: 1.8rem; 
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem; 
    font-weight: 600; 
    margin-bottom: 15px; 
    color: var(--gray-800);
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-600); 
    margin-bottom: 25px; 
    line-height: 1.6;
    font-size: 1rem;
}

.service-features { 
    list-style: none; 
    margin-bottom: 30px;
    display: grid;
    gap: 8px;
}

.service-features li {
    display: flex; 
    align-items: center; 
    gap: 10px;
    color: var(--gray-600); 
    font-size: 0.95rem;
}

.service-features i { 
    color: var(--success); 
    font-size: 0.8rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-link {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover { 
    gap: 12px; 
    color: var(--primary-dark);
}

.service-link i {
    transition: transform 0.3s ease;
}

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

.services-cta { 
    text-align: center; 
}

.services-cta .btn {
    padding: 15px 35px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Services Badges */
.services-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-300);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.badge-icon.baxi-icon {
    background: linear-gradient(135deg, #ff6600, #cc5500);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.badge-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.badge-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Page Header */
.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white); text-align: center; position: relative; overflow: hidden;
}

.page-header-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }

.header-gradient {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(0,102,204,0.1) 0%, rgba(255,107,53,0.1) 100%);
}

.header-pattern {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 60px 60px;
}

.page-header-content { position: relative; z-index: 2; }

.breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-bottom: 20px; font-size: 0.9rem; opacity: 0.8;
}

.breadcrumb a { color: var(--white); text-decoration: none; transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: 1; }

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem; opacity: 0.9; max-width: 600px; margin: 0 auto;
}

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

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

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

/* Page Load Animation Classes */
.page-load-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.page-load-animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-up { animation-name: fadeInUp; }
.animate-fade-left { animation-name: fadeInLeft; }
.animate-fade-right { animation-name: fadeInRight; }
.animate-fade-scale { animation-name: fadeInScale; }
.animate-slide-top { animation-name: slideInFromTop; }

/* Staggered Animation Delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }
.animate-delay-900 { animation-delay: 0.9s; }
.animate-delay-1000 { animation-delay: 1.0s; }
.animate-delay-1200 { animation-delay: 1.2s; }
.animate-delay-1400 { animation-delay: 1.4s; }

.animate-on-scroll {
    opacity: 0; transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* Footer */
.footer {
    background: var(--gray-900); color: var(--white); padding: 80px 0 20px;
}

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

.footer-section.company { max-width: 350px; }

.footer-logo { display: flex; align-items: center; margin-bottom: 25px; }


.footer-section h4 {
    font-size: 1.2rem; font-weight: 600; margin-bottom: 25px; color: var(--white);
}

.footer-section p {
    line-height: 1.7; margin-bottom: 25px; color: var(--gray-300);
}

.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; }

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

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

.social-links { display: flex; gap: 15px; }

.social-links a {
    width: 45px; height: 45px; background: var(--gray-800); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}

.social-links a:hover { background: var(--primary); transform: translateY(-3px); }

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

.contact-item i { color: var(--white); font-size: 1.2rem; margin-top: 2px; }

.contact-item strong { display: block; margin-bottom: 5px; color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--gray-800); padding-top: 30px;
}

.footer-bottom-content {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}

.footer-badges { display: flex; gap: 15px; }

.footer-badges .badge {
    background: var(--primary); color: var(--white);
    padding: 5px 12px; border-radius: 8px;
    font-size: 0.8rem; font-weight: 500;
}

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; background: var(--primary);
    color: var(--white); border: none; border-radius: 50%;
    cursor: pointer; font-size: 1.2rem;
    transition: all var(--transition);
    opacity: 0; visibility: hidden; z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show { opacity: 1; visibility: visible; }

.back-to-top:hover {
    background: var(--secondary); transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; left: -100%; top: 80px; flex-direction: column;
        background: var(--white); width: 100%; text-align: center;
        transition: 0.3s; box-shadow: var(--shadow-md); padding: 30px 0; gap: 20px;
    }

    .nav-menu.active { left: 0; }
    .hamburger { display: flex; }
    
    /* Make logo slightly smaller on mobile and center properly */
    .nav-logo .logo-icon img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .nav-logo .logo-text img {
        height: 40px !important;
    }
    
    .nav-container {
        justify-content: center !important;
    }
    
    .nav-logo {
        margin: 0 auto !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .hero-stats { flex-direction: column; gap: 30px; }
    .hero-main {
        margin-bottom: 20px;
    }
    
    .whatsapp-widget {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .whatsapp-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .services-badges {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .trust-item { flex-direction: column; text-align: center; gap: 15px; }
    
    .footer-content { 
        grid-template-columns: 1fr 1fr; 
        text-align: center; 
        gap: 30px;
    }
    
    .footer-section.company {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-section.contact {
        grid-column: 1 / -1;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-section.contact .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content { 
        flex-direction: column; 
        text-align: center; 
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .nav-container { padding: 0 15px; }
    .hero-content { padding: 0 15px; }
    
    .btn { padding: 14px 24px; font-size: 0.9rem; }
    .btn-large { padding: 16px 28px; font-size: 1rem; }
}

/* ===== ADDITIONAL SECTIONS ===== */

/* Why Choose Us */
.why-choose {
    padding: 0 0 60px 0;
    background: var(--gray-100);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-text .lead {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.why-choose-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity var(--transition);
}

.visual-card:hover .visual-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    margin-left: 5px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background: var(--gray-100);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.stars i {
    color: var(--accent);
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 500;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
}

.verified::before {
    content: '✓';
    font-weight: bold;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 50,100" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px 200px;
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(200px) translateY(200px); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SERVICES PAGE STYLES ===== */

.service-categories {
    padding: 40px 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
}

.categories-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition);
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.service-section {
    padding: 100px 0;
}

.emergency-services {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: var(--white);
}

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-hero-content .section-badge.emergency {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.emergency-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.emergency-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

.emergency-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.emergency-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.emergency-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-indicator {
    width: 12px;
    height: 12px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

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

.emergency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.emergency-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.gas-services {
    background: var(--white);
}

.gas-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gas-service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-300);
}

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

.gas-service-card.premium {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.service-header {
    padding: 30px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.service-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-content {
    padding: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.feature-group h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-600);
}

.service-list i {
    color: var(--success);
    font-size: 0.8rem;
}

.service-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== ABOUT PAGE STYLES ===== */

.company-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-intro {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 15px;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.story-visual {
    position: relative;
}

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

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 40px 30px 30px;
}

.founder-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.founder-quote cite {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.company-values {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 15px;
}

.member-overlay .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.member-overlay .social-links a:hover {
    background: var(--white);
    color: var(--primary);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
}

.member-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.credential {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
}

.member-bio {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Certifications */
.certifications {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.certification-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.cert-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
}

.cert-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.cert-content {
    padding: 25px;
}

.cert-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.cert-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.cert-number {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Awards */
.awards {
    padding: 100px 0;
    background: var(--white);
}

.awards-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--gray-100);
    padding: 30px;
    border-radius: 15px;
    transition: all var(--transition);
}

.award-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.award-icon i {
    font-size: 2rem;
    color: var(--gray-800);
}

.award-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.award-content p {
    color: var(--gray-600);
    margin-bottom: 5px;
}

.award-year {
    background: var(--primary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Company Stats */
.company-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.stat-content .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-content .stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: var(--gray-100);
    text-align: center;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Service Areas Map */
.map-container {
    position: relative;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 250px;
}

.service-radius h4 {
    color: var(--primary);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-radius p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .map-overlay {
        position: static;
        margin-top: 15px;
        max-width: none;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

.emergency-banner {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: var(--white);
    padding: 40px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    border: 2px solid var(--white);
}

.emergency-icon i {
    font-size: 1.5rem;
    color: #ff4757;
}

.emergency-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-methods {
    padding: 100px 0;
    background: var(--white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.method-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all var(--transition);
    border: 1px solid var(--gray-300);
    position: relative;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--gray-400);
}

.method-card.phone {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
}

.method-card.email {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.method-card.whatsapp {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
}

.method-card.whatsapp .method-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all var(--transition);
}

.method-card:hover .method-icon {
    background: var(--primary);
}

.method-card.phone .method-icon {
    background: var(--success);
}

.method-card.email .method-icon {
    background: var(--success);
}

.method-card.whatsapp .method-icon {
    background: var(--success);
}

.method-card.whatsapp:hover .method-icon {
    background: #25D366;
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.method-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.method-content p {
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.6;
}

.method-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.detail-item strong {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 3px;
}

.detail-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.detail-item a:hover {
    text-decoration: underline;
}

.detail-item span {
    color: var(--gray-600);
}

.method-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
}

.method-btn:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Quote Form */
.quote-form-section {
    padding: 100px 0;
    background: var(--gray-100);
}

.form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.form-step {
    display: none;
}

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

.form-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--gray-800);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all var(--transition);
    font-family: var(--font);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
}

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

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

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

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

.checkbox-text {
    color: var(--gray-800);
    font-size: 0.95rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.next-step,
.prev-step {
    border: none;
    background: none;
    cursor: pointer;
}

.form-progress {
    margin-top: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-300);
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width var(--transition);
    width: 33.33%;
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.progress-steps .step {
    width: 40px;
    height: 40px;
    background: var(--gray-300);
    color: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition);
}

.progress-steps .step.active {
    background: var(--primary);
    color: var(--white);
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gray-800);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-800);
    font-size: 0.95rem;
}

.benefits-list i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Service Areas */
.service-areas {
    padding: 60px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.area-card {
    background: var(--gray-100);
    padding: 30px 25px;
    border-radius: 15px;
    transition: all var(--transition);
}

.area-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.area-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-800);
}

.area-card:hover h3 {
    color: var(--white);
}

.area-card ul {
    list-style: none;
}

.area-card li {
    padding: 5px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.area-card:hover li {
    color: rgba(255, 255, 255, 0.9);
}

.coverage-note {
    text-align: center;
    background: var(--gray-100);
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
}

.coverage-note p {
    color: var(--gray-800);
    margin: 0;
}

.coverage-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* FAQ */
.contact-faq {
    padding: 100px 0;
    background: var(--gray-100);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ===== SIMPLIFIED SERVICES PAGE STYLES ===== */

.services-main {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(0,102,204,0.05) 50%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}

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

.services-main .section-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0,102,204,0.2), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,107,53,0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0,102,204,0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,107,53,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particles 20s linear infinite;
}

.services-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,102,204,0.03) 0%, rgba(255,107,53,0.03) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-300);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(0,51,102,0.02) 0%, rgba(255,107,53,0.02) 100%);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,51,102,0.8) 0%, rgba(0,51,102,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-overlay .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.3);
}

.service-overlay .service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-content {
    padding: 30px;
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,102,204,0.2);
}

.service-card .service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-800);
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--success);
    font-size: 0.8rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-why-choose {
    padding: 80px 0;
    background: var(--gray-100);
}

.services-why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 50px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.services-why-choose .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.services-why-choose .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.services-why-choose .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-why-choose .feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.services-why-choose .feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.services-why-choose .feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ===== ADDITIONAL RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .gas-services-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-why-choose .feature-item {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .emergency-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .quote-form {
        padding: 30px 20px;
    }
    
    .sidebar-card {
        padding: 25px 20px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== SIMPLE PAGE TRANSITIONS ===== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Loading screen improvements */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Prevent flash of unstyled content */
html {
    scroll-behavior: smooth;
}

/* Preload critical styles */
.preload-fonts {
    font-family: var(--font);
    font-weight: 300;
    font-weight: 400;
    font-weight: 500;
    font-weight: 600;
    font-weight: 700;
    font-weight: 800;
    font-weight: 900;
    position: absolute;
    left: -9999px;
    visibility: hidden;
}
