:root {
    --deep-blue: #0A3D62;
    --electric-cyan: #00C2FF;
    --vibrant-orange: #FF8C42;
    --dark: #111827;
    --gray-dark: #374151;
    --gray: #6B7280;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --border: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header - REDUCED HEIGHT */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background:white;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 30px;
}

/* LOGO - ENLARGED BIG */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
}

/* Navigation - Normal size */
nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
}

nav ul li a {
    color: var(--gray-dark);
    text-decoration: none;
    padding: 6px 18px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-radius: 8px;
    white-space: nowrap;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--electric-cyan);
    background: rgba(0,194,255,0.08);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #0A3D62;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.slide-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1.3rem;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--vibrant-orange);
}

.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active,
.dot:hover {
    background: var(--vibrant-orange);
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: var(--white);
    max-width: 450px;
    width: 90%;
    border-radius: 20px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
}

.popup-header {
    background: linear-gradient(135deg, var(--deep-blue), var(--electric-cyan));
    padding: 25px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.popup-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.popup-body {
    padding: 25px;
    text-align: center;
}

.popup-body p {
    margin-bottom: 12px;
    color: var(--gray-dark);
}

.popup-offer {
    background: var(--vibrant-orange);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    margin: 15px 0;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 0.875rem;
    border: none;
}

.btn-primary {
    background: var(--deep-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--electric-cyan);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--deep-blue);
    border: 1.5px solid var(--deep-blue);
}

.btn-outline:hover {
    background: var(--deep-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-dark);
    padding-left: 20px;
    position: relative;
}

.badge::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--electric-cyan);
    font-weight: 700;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--electric-cyan);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Services Overview */
.services-overview {
    padding: 60px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.service-card p {
    padding: 0 20px 16px;
    color: var(--gray);
    font-size: 0.875rem;
}

.learn-more {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--electric-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.learn-more:hover {
    color: var(--deep-blue);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 6px;
    display: inline-block;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-left: 2px;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
    display: block;
    font-size: 0.875rem;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 0.5s ease-out;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.testimonial-rating {
    color: var(--vibrant-orange);
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--gray-dark);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.testimonial-author strong {
    display: block;
    color: var(--deep-blue);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--electric-cyan));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 2rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    font-size: 1rem;
}

.cta-section .btn-primary {
    background: var(--vibrant-orange);
}

.cta-section .btn-primary:hover {
    background: var(--white);
    color: var(--deep-blue);
}

/* Page Header */
.page-header {
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1rem;
    color: var(--gray);
}

/* Service Detail Pages */
.service-detail {
    padding: 60px 0;
}

.service-detail.alt-bg {
    background: var(--light);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-image-large {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--electric-cyan);
    margin-bottom: 12px;
}

.service-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.service-info > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.feature h4 {
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.feature ul {
    list-style: none;
}

.feature li {
    padding: 5px 0;
    color: var(--gray-dark);
    padding-left: 18px;
    position: relative;
    font-size: 0.85rem;
}

.feature li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--electric-cyan);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.team-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--electric-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-initials {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.team-card h3 {
    margin-top: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.team-title {
    color: var(--electric-cyan);
    font-weight: 500;
    margin: 6px 0 10px;
    font-size: 0.8rem;
}

.team-bio {
    padding: 0 16px 20px;
    color: var(--gray);
    font-size: 0.8rem;
}

/* Values Section */
.values-section {
    padding: 60px 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.value-card h3 {
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Gallery Page */
.gallery-section {
    padding: 50px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--deep-blue);
    color: var(--white);
    border-color: var(--deep-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 16px;
    color: white;
}

.gallery-overlay h4 {
    font-size: 1rem;
}

.gallery-overlay p {
    font-size: 0.75rem;
}

/* About Page */
.about-story {
    padding: 50px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-placeholder {
    height: 400px;
    border-radius: 20px;
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder .placeholder-content {
    text-align: center;
    color: white;
}

.about-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.mission-box {
    background: var(--light);
    padding: 20px;
    border-radius: 16px;
    margin-top: 25px;
    border-left: 4px solid var(--vibrant-orange);
}

.mission-box h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Certifications */
.certifications {
    padding: 50px 0;
    background: var(--light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    text-align: center;
}

.cert-item {
    padding: 12px;
    background: var(--white);
    border-radius: 40px;
    font-weight: 500;
    color: var(--deep-blue);
    border: 1px solid var(--border);
    font-size: 0.8rem;
}

/* Contact Page */
.contact-info-cards {
    padding: 50px 0 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.contact-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--electric-cyan);
}

.contact-icon-emoji {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #0A3D62;
    display: inline-block;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--gray-dark);
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.contact-card small {
    display: block;
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.7rem;
}

/* Map Section */
.map-section {
    padding: 50px 0 0;
}

.map-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.map-container h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.map-container > p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 16px;
}

.map-address-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.address-detail {
    padding: 16px;
    background: var(--light);
    border-radius: 12px;
}

.address-detail strong {
    display: block;
    color: var(--deep-blue);
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.address-detail p {
    color: var(--gray-dark);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Contact Form Section */
.contact-form-section {
    padding: 50px 0 80px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray);
    font-size: 0.85rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .form-group {
    width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 3px rgba(0,194,255,0.1);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 0;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--deep-blue);
}

.contact-form .btn-primary:hover {
    background: var(--electric-cyan);
}

/* Emergency Section */
.emergency-section {
    padding: 0 0 50px;
}

.emergency-card {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--electric-cyan) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.emergency-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.emergency-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.emergency-phone {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.emergency-content small {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

/* Pricing Page */
.pricing-section {
    padding: 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    border: 2px solid var(--vibrant-orange);
    transform: scale(1.02);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vibrant-orange);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    margin: 12px 0 6px;
}

.price-desc {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card li {
    padding: 6px 0;
    color: var(--gray-dark);
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.discounts-section {
    padding: 50px 0;
    background: var(--light);
}

.discounts-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.discount-card {
    background: var(--white);
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.discount-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.discount-card p {
    font-size: 0.85rem;
}

.discount-card strong {
    color: var(--vibrant-orange);
}
/* Footer */
        footer {
            background: #0a2a3f;
            color: #cbd5e1;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            color: white;
            margin-bottom: 15px;
        }

        .footer-links h4,
        .footer-contact h4 {
            color: white;
            margin-bottom: 15px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: #00C2FF;
        }

        .footer-contact p {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e4a6e;
        }

        .design-credit {
            margin-top: 10px;
            font-size: 0.85rem;
        }

        .design-credit a {
            color: #00C2FF;
            text-decoration: none;
        }
/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-image {
        height: 90px;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 8px 16px;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0A3D62;
        box-shadow: -2px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        padding-top: 70px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 1rem;
        color: white !important;
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background: rgba(255,255,255,0.1);
        color: white !important;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .badges-grid {
        gap: 15px;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        gap: 15px;
    }
    
    .contact-card {
        padding: 20px 16px;
    }
    
    .contact-icon-emoji {
        font-size: 2rem;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .map-address-details {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 40px 0 60px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .emergency-phone {
        font-size: 1.3rem;
    }
    
    .emergency-card {
        padding: 30px 20px;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }
    
    .slide-content h1 {
        font-size: 1.4rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .slider-nav {
        padding: 6px 12px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-suffix {
        font-size: 1.2rem;
    }
    
    .map-wrapper iframe {
        height: 200px;
    }
    
    .emergency-phone {
        font-size: 1.1rem;
    }
    
    .contact-icon-emoji {
        font-size: 1.8rem;
    }
    
    .logo-image {
        height: 38px;
    }
}