/* Global Styles */
:root {
    --primary-color: #1565c0;
    --secondary-color: #2c3e50;
    --accent-color: #ff7043; /* Fire/Orange */
    --earth-color: #43a047;  /* Earth/Green */
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --section-padding: 5rem 0;
    --scroll-padding: 80px; /* For fixed header offset */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px !important;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

.sticky-cta .btn {
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header Styles */
.header {
    padding-top: 0.2rem;
}

.navbar {
    padding: 0.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-decoration: none !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
    display: none !important;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover, .nav-link:focus {
    color: #1565c0 !important;
    text-decoration: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafdff 0%, #e3e9ef 100%) !important;
    padding-top: 60px !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge .badge {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
}

.hero-badge .badge.bg-primary {
    background: #1565c0 !important;
    color: #fff !important;
}

.hero-badge .badge.bg-success {
    background: var(--earth-color) !important;
    color: #fff !important;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1565c0;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-main {
    font-size: 3.5rem;
    color: #1565c0;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1565c0;
    margin: 0.5rem 0;
}

.hero-title-tagline {
    font-size: 1.75rem;
    color: #424242;
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.hero-title-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #ff6d00;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #222 !important;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.15);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    border: 1px solid #e3e9ef;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.feature-item:hover {
    background-color: #f8f9fa;
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--earth-color) !important;
    margin-top: 0.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-image-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
}

.hero-media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
    transition: all 0.5s ease;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.play-button i {
    font-size: 30px;
    color: #1565c0;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    background: #fff;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.youtube-player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.youtube-player-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #1565c0 !important;
    color: #fff !important;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff !important;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e0e0e0;
}

.service-badge i {
    color: var(--primary-color) !important;
    font-size: 1.25rem;
}

/* Fix hero wave to always stretch full width */
.hero-wave {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    line-height: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
}
.hero-wave svg {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100px;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafdff 0%, #e3e9ef 80%, #e8f5e9 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(21,101,192,0.13);
    transform: translateY(-6px) scale(1.025);
}

.service-card:hover .service-icon {
    background: #fafdff;
    color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(21,101,192,0.18);
    transform: scale(1.13) rotate(-6deg);
}

.service-icon {
    width: 72px;
    height: 72px;
    font-size: 2.8rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--primary-color);
    background: #fafdff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(21,101,192,0.08);
    transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding);
}

.why-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.why-card i {
    transition: var(--transition);
}

.why-card:hover i {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #fafdff 0%, #e3e9ef 100%);
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.08);
    border: 1px solid #e3e9ef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.12);
}

.testimonial-content {
    flex-grow: 1;
    position: relative;
    padding-left: 1.5rem;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    color: #1976d2;
    opacity: 0.2;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #e3e9ef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author i {
    color: #1976d2;
    font-size: 1.2rem;
}

.testimonial-author span {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 767.98px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
}

/* FAQ Section Improvements */
.faq {
    background: linear-gradient(135deg, #fafdff 0%, #e3e9ef 100%);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}
.faq .section-title, .faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1565c0;
}
.faq .section-title {
    margin-bottom: 0.75rem;
}
.faq-subtitle {
    text-align: center;
    color: #1976d2;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}
.accordion {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    background: none;
    box-shadow: none;
}
.accordion-item {
    background: #fff;
    border: none;
    border-radius: 18px !important;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 24px rgba(25, 118, 210, 0.08);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.accordion-item:before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #1976d2 0%, #42a5f5 100%);
    border-radius: 0 8px 8px 0;
    z-index: 2;
    transition: background 0.3s;
}
.accordion-item.active:before,
.accordion-item:focus-within:before {
    background: linear-gradient(180deg, #42a5f5 0%, #1976d2 100%);
}
.accordion-header {
    padding: 0;
    border: none;
    background: none;
}
.accordion-button {
    background: none !important;
    color: #1565c0;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.5rem 2.5rem 1.5rem 2.5rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
    position: relative;
    outline: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.accordion-button:after {
    display: none !important;
}
.accordion-button .faq-chevron {
    margin-left: auto;
    font-size: 1.2rem;
    color: #1976d2;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}
.accordion-button:not(.collapsed) .faq-chevron {
    transform: rotate(-180deg);
}
.accordion-button:focus {
    background: #e3e9ef !important;
    color: #1976d2;
    outline: 2px solid #ffeb3b;
    outline-offset: 2px;
}
.accordion-button:hover {
    background: #f0f7ff !important;
    color: #1976d2;
}
.accordion-body {
    background: #fafdff;
    color: #222;
    font-size: 1.1rem;
    padding: 1.5rem 2.5rem 2rem 2.5rem;
    border-radius: 0 0 18px 18px;
    border-top: none !important;
    animation: fadeInFAQ 0.4s ease-out forwards;
    transform-origin: top;
    will-change: transform, opacity;
}
@keyframes fadeInFAQ {
    from { 
        opacity: 0; 
        transform: translateY(-10px);
        padding-bottom: 2rem;
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
        padding-bottom: 2rem;
    }
}
/* FAQ Icon at top */
.faq-icon {
    display: block;
    margin: 0 auto 1.5rem auto;
    width: 60px;
    height: 60px;
    color: #1976d2;
    opacity: 0.85;
}
@media (max-width: 767.98px) {
    .faq {
        padding: 3rem 0;
    }
    .accordion-button, .accordion-body {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}
@media (max-width: 1200px) {
    .accordion {
        max-width: 95vw;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-illustration {
    flex: 1;
    max-width: 100%;
    height: auto;
}

.about-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item .label {
    display: block;
    font-size: 0.9rem;
    color: #222 !important;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(255,255,255,0.15);
}

.contact-item .value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contact-item .value:hover {
    color: var(--earth-color) !important;
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background: #1565c0 !important;
    color: #fff !important;
    padding: 5rem 0 4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 90%;
}

.footer-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.85rem;
    letter-spacing: -0.3px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: #ffeb3b;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    font-size: 1.05rem;
    padding: 0.25rem 0;
    transform: translateZ(0.001px);
    will-change: transform;
}

.footer-link:hover {
    color: #ffeb3b !important;
    transform: translateX(3px) translateZ(0.001px);
}

.footer-contact {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.75rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact i {
    width: 24px;
    color: #ffeb3b;
    font-size: 1.1rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 3rem 0 2rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: #ffeb3b;
    color: #1565c0 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 235, 59, 0.3);
}

@media (max-width: 991.98px) {
    .footer {
        padding-bottom: 110px !important;
        border-radius: 0 !important;
    }
    .footer-heading {
        margin-top: 2.5rem;
    }
    .footer-contact {
        margin-top: 2.5rem;
    }
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer {
        text-align: center;
        padding: 4rem 0 110px;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-link:hover {
        transform: none;
    }
    .footer-contact {
        padding: 1.5rem;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 0 !important;
    }
    .footer {
        padding-bottom: 110px !important; /* Increased from 72px to 100px for more space */
        border-radius: 0 !important;
    }
    .sticky-cta-bar {
        position: fixed !important;
        left: 0;
        right: 0;
        bottom: 0 !important;
        width: 100vw;
        z-index: 9999 !important;
        pointer-events: auto;
        visibility: visible;
        opacity: 1;
        will-change: transform;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-title-main {
        font-size: 2.25rem;
    }
    .hero-title-sub {
        font-size: 1.85rem;
    }
    .hero-title-tagline {
        font-size: 1.5rem;
    }
    .hero-title-tagline::before {
        width: 3px;
        height: 20px;
    }
    .hero-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-contact-info {
        padding: 1rem;
    }
    
    .contact-item .value {
        font-size: 1.1rem;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 1.1rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1rem 1.5rem 2.5rem;
    }
    
    .about-img {
        width: 240px;
        height: 240px;
    }
    
    .hero-image-wrapper {
        padding: 0.5rem;
    }
    
    .hero-image {
        border-radius: 15px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 22px;
    }
    
    .hero-features {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }
    
    .feature-item {
        font-size: 1rem;
        padding: 0.4rem;
    }
}

/* SEO Optimizations */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .contact-form {
        display: none;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}

/* Service Modal */
.service-modal .modal-content {
    border-radius: var(--border-radius);
    border: none;
}

.service-modal .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 1rem;
}

.service-modal .modal-body {
    padding: 1rem 2rem 2rem;
}

.service-modal .modal-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.service-modal .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.5;
    transition: var(--transition);
}

.service-modal .close:hover {
    opacity: 1;
}

/* Testimonial Carousel */
.testimonial-carousel {
    margin-top: 3rem;
}

.testimonial-item {
    text-align: center;
    padding: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Alert Messages */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert .close {
    font-size: 1.25rem;
    color: inherit;
    opacity: 0.5;
    transition: var(--transition);
}

.alert .close:hover {
    opacity: 1;
}

/* Hero Contact Info */
.hero-contact-info {
    background: #fff;
    color: #222;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

/* Hero CTA Button */
.btn-hero {
    font-size: 1.4rem;
    padding: 1.4rem 3.2rem;
    border-radius: 60px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.18), 0 0 16px 2px #42a5f5aa;
    position: relative;
    overflow: hidden;
    border: none !important;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-hero .btn-glow {
    display: none;
}

.btn-hero:hover, .btn-hero:focus {
    background: linear-gradient(90deg, #42a5f5 0%, #1976d2 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 40px rgba(66, 165, 245, 0.25), 0 0 32px 4px #42a5f5cc;
    transform: translateY(-2px) scale(1.04);
    outline: 3px solid #ffeb3b;
}

/* Guarantee Badge */
.guarantee-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #27ae60 !important;
    color: #fff !important;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(39,174,96,0.18);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guarantee-badge i {
    font-size: 1.25rem;
    color: #fff !important;
}

/* General link improvements */
a, .contact-item .value {
    text-decoration: underline;
    color: var(--primary-color);
    font-weight: 600;
}

a:hover, .contact-item .value:hover {
    color: var(--earth-color);
    text-decoration: underline;
}

/* Ensure all text on dark backgrounds is white */
.bg-dark, .bg-secondary, .why-card.bg-dark, .testimonial-card.bg-dark {
    color: #fff !important;
}

/* Fix for any gray-on-gray */
body, .about, .services, .contact, .faq, .testimonials {
    background: #f8f9fa !important;
    color: #222 !important;
}

/* HERO SECTION LINKS: Robust backgrounds and styles for readability */
.hero-content a,
.hero-content .contact-item .value {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: underline;
}
.hero-content a:hover,
.hero-content .contact-item .value:hover,
.hero-content a:focus,
.hero-content .contact-item .value:focus {
    background: none !important;
    color: var(--earth-color) !important;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: underline;
}
.hero-content a:active {
    background: none !important;
    color: #0d47a1 !important;
}
.hero-content a:visited {
    color: #512da8 !important;
}

/* Ensure phone/email icons in hero contact info are always visible */
.hero-content .contact-item i {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Carousel overflow fix */
.carousel-inner {
    overflow: visible !important;
}

/* Service icons: color by theme */
.service-icon.fa-fire {
    color: var(--accent-color) !important;
}
.service-icon.fa-leaf {
    color: var(--earth-color) !important;
}
.service-icon.fa-wrench {
    color: var(--primary-color) !important;
}
.service-icon.fa-shield-alt {
    color: var(--secondary-color) !important;
}
.service-icon.fa-exclamation-triangle {
    color: var(--accent-color) !important;
}
.service-icon.fa-tools {
    color: var(--primary-color) !important;
}

/* Badges and highlights */
.badge.bg-success, .feature-item .fa-check-circle {
    background: var(--earth-color) !important;
    color: #fff !important;
}
.badge.bg-danger, .feature-item .fa-exclamation-triangle {
    background: var(--accent-color) !important;
    color: #fff !important;
}

/* Section highlights (example for services) */
.services {
    background: linear-gradient(135deg, #fafdff 0%, #e3e9ef 80%, #e8f5e9 100%);
}

/* About list icons */
.about-list .fa-fire {
    color: var(--accent-color) !important;
}
.about-list .fa-thermometer-half {
    color: var(--accent-color) !important;
}
.about-list .fa-faucet {
    color: var(--earth-color) !important;
}
.about-list .fa-gas-pump {
    color: var(--primary-color) !important;
}

/* CTA button secondary (example) */
.btn-cta-earth {
    background: var(--earth-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 1rem 2.5rem;
    transition: var(--transition);
}
.btn-cta-earth:hover {
    background: #388e3c;
    color: #fff;
}
.btn-cta-fire {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    padding: 1rem 2.5rem;
    transition: var(--transition);
}
.btn-cta-fire:hover {
    background: #d84315;
    color: #fff;
}

.feature-check {
    font-size: 1.1rem !important;
    vertical-align: middle;
    margin-right: 0.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge.bg-danger {
    background: #ff7043 !important;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(255,112,67,0.10);
}

.hero-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-availability i {
    color: #666;
    font-size: 1.1rem;
    opacity: 0.8;
}

.hero-availability .separator {
    color: #ddd;
    margin: 0 0.3rem;
}

.hero-availability .hero-phone-link,
.hero-availability .hero-email-link {
    color: #d32f2f !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-availability .hero-phone-link:hover,
.hero-availability .hero-email-link:hover {
    color: #b71c1c !important;
    text-decoration: none;
    opacity: 0.9;
}

.hero-availability:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .hero-availability {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-availability i {
        font-size: 1rem;
    }
}

/* Phone CTA Link in Navigation */
.phone-cta-link {
    color: #d32f2f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-weight: 700;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 2px 12px rgba(220,53,69,0.10);
    padding: 0.5em 1.2em;
    border: 2px solid #ff7043;
    transition: box-shadow 0.2s, border 0.2s;
    margin-left: 1rem;
}

.phone-cta-link i {
    font-size: 1.5em;
    color: #d32f2f;
    margin-right: 0.2em;
}

.phone-cta-link:hover {
    color: #1565c0;
    background: none;
    border-radius: 32px;
    text-decoration: none;
    box-shadow: none;
    transition: color 0.2s;
}

.phone-cta-link:hover span {
    text-decoration: underline;
}

/* Sticky CTA Bar/Button */
.sticky-cta-bar {
    position: fixed !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    backface-visibility: hidden !important;
    will-change: transform;
}
.sticky-cta-btn {
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 40px;
    background: linear-gradient(90deg, #d32f2f 0%, #ff7043 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(220,53,69,0.15);
    border: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.sticky-cta-btn:hover, .sticky-cta-btn:focus {
    background: linear-gradient(90deg, #ff7043 0%, #d32f2f 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 32px rgba(220,53,69,0.22);
    transform: scale(1.03);
    text-decoration: none;
}

@media (min-width: 992px) {
    .sticky-cta-bar {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .sticky-cta-bar {
        display: flex !important;
        z-index: 9999 !important;
    }
}

/* Hero phone link */
.hero-phone-link {
    color: #d32f2f;
    font-weight: 800;
    text-decoration: underline;
    font-size: 1.13em;
    transition: color 0.2s;
}
.hero-phone-link:hover {
    color: #ff7043;
    text-decoration: underline;
}

/* Local SEO Block */
.local-seo-block {
    background: #fff3e0 !important;
    color: #d84315 !important;
    font-size: 1.08rem;
    font-weight: 600;
    border-top: 2px solid #ff7043;
    border-bottom: 2px solid #ff7043;
    letter-spacing: 0.01em;
}
.local-seo-block .fw-bold {
    color: #d32f2f;
}
@media (max-width: 767.98px) {
    .local-seo-block {
        font-size: 0.98rem;
        padding: 1.2rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .hero-image-wrapper {
        padding: 0.5rem;
    }
    .experience-badge,
    .service-badge,
    .guarantee-badge {
        position: static !important;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        border-radius: 12px;
        text-align: center;
        box-sizing: border-box;
    }
    .hero-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Prevent testimonial carousel and its parents from creating stacking contexts */
#testimonialCarousel,
#testimonialCarousel .carousel,
#testimonialCarousel .carousel-inner,
#testimonialCarousel .carousel-item,
#testimonialCarousel .carousel-item > * {
    position: static !important;
    z-index: 1 !important;
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Form Message Styles */
#formMessage {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 1rem;
    padding: 12px 16px;
}

#formMessage.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

#formMessage.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Multi-City Presence Section */
.multi-city-presence {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-badge {
    margin-bottom: 1.5rem;
}

.section-badge .badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-badge .badge.bg-primary {
    background: linear-gradient(45deg, #1565c0, #1976d2) !important;
}

.section-badge .badge.bg-success {
    background: linear-gradient(45deg, #2e7d32, #43a047) !important;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Single city layout */
.city-grid.single-city {
    max-width: 600px;
    margin: 2rem auto;
}

.city-grid.single-city .city-card {
    max-width: 100%;
    margin: 0 auto;
}

.city-grid.single-city .city-card-inner {
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(21, 101, 192, 0.1);
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.08);
}

.city-grid.single-city .city-header {
    margin-bottom: 2rem;
    text-align: center;
}

.city-grid.single-city .city-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1565c0;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.city-grid.single-city .city-name {
    font-size: 2rem;
    margin: 0;
    color: #1565c0;
}

.city-grid.single-city .city-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(21, 101, 192, 0.03);
    border-radius: 12px;
}

.city-grid.single-city .service-item {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-grid.single-city .service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 101, 192, 0.08);
}

.city-grid.single-city .service-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.2s ease;
}

.city-grid.single-city .city-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.city-grid.single-city .feature {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.05);
    transition: box-shadow 0.2s ease;
}

.city-grid.single-city .feature:hover {
    box-shadow: 0 6px 16px rgba(21, 101, 192, 0.08);
}

.city-grid.single-city .city-link {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.15);
}

.city-grid.single-city .city-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(21, 101, 192, 0.2);
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

.city-grid.single-city .city-link i {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.city-grid.single-city .city-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 767.98px) {
    .city-grid.single-city .city-card-inner {
        padding: 1.5rem;
    }
    
    .city-grid.single-city .city-services {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .city-grid.single-city .city-features {
        grid-template-columns: 1fr;
    }
    
    .city-grid.single-city .city-name {
        font-size: 1.75rem;
    }
}

.city-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.city-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.city-card-inner {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.city-header {
    margin-bottom: 1.5rem;
}

.city-icon {
    font-size: 2.5rem;
    color: #1565c0;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #1565c0, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.city-card:hover .city-icon {
    transform: scale(1.1);
}

.city-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1565c0;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #1565c0, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.city-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.service-item i {
    font-size: 1.25rem;
}

.city-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.feature i {
    font-size: 1.1rem;
}

.city-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border: 2px solid #1565c0;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(45deg, #1565c0, #1976d2);
    color: #fff;
    border: none;
    box-shadow: 0 4px 6px rgba(21, 101, 192, 0.2);
}

.city-link:hover {
    box-shadow: 0 6px 12px rgba(21, 101, 192, 0.3);
    color: #fff;
    text-decoration: none;
}

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

.city-link:hover i {
    transform: translateX(5px);
}

.city-section-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
    font-size: 1.5rem;
    color: #1565c0;
}

.trust-badge span {
    font-weight: 600;
    color: #333;
}

.grecaptcha-badge {
    z-index: 6;
}

@media (max-width: 991.98px) {
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .city-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .city-card-inner {
        padding: 1.5rem;
    }
    
    .city-name {
        font-size: 1.5rem;
    }
    
    .city-services {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .city-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .section-badge .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.hero-city-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.08) 0%, rgba(25, 118, 210, 0.12) 100%);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.08);
    border: 1px solid rgba(21, 101, 192, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-city-badge i {
    color: #1565c0;
    font-size: 1.4rem;
    margin-right: 0.75rem;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.hero-city-badge:hover {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.12) 0%, rgba(25, 118, 210, 0.16) 100%);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.12);
    transform: translateY(-1px);
}

.hero-city-badge:hover i {
    transform: scale(1.1);
}

.hero-city-badge .hero-title-sub {
    color: #1565c0;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

@media (max-width: 767.98px) {
    .hero-city-badge {
        padding: 0.5rem 1.3rem;
    }
    
    .hero-city-badge i {
        font-size: 1.2rem;
        margin-right: 0.6rem;
    }
    
    .hero-city-badge .hero-title-sub {
        font-size: 1.4rem;
    }
} 