/* 
 * A1 CLIMATECH - PREMIUM DESIGN STYLESHEET
 */

:root {
    /* Color Palette */
    --navy-dark: #07172c;
    --navy-medium: #0f2a4a;
    --navy-light: #163e6d;
    --red-brand: #d90429;
    --red-hover: #ef233c;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #20ba5a;
    --text-white: #ffffff;
    --text-light: #f8f9fa;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f3f4f6;
    --bg-card: #ffffff;
    --bg-dark: #0b1522;
    --gold: #ffb703;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --container-max: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: var(--red-brand);
}

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

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--red-brand);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3);
}

.btn-navy {
    background-color: var(--navy-medium);
    color: var(--text-white);
}

.btn-navy:hover {
    background-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 42, 74, 0.3);
}

.btn-accent {
    background-color: var(--red-brand);
    color: var(--text-white);
}

.btn-accent:hover {
    background-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 4, 41, 0.3);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-white {
    background-color: var(--text-white);
    color: var(--whatsapp-green);
}

.btn-whatsapp-white:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--navy-dark);
}

.btn-white:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--navy-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.announcement-info i {
    color: var(--red-brand);
    margin-right: 4px;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.lang-btn.active, .lang-btn:hover {
    color: var(--text-white);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* Header */
header {
    background-color: var(--text-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 50px;
    height: 50px;
    display: block;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.logo:hover .logo-svg {
    transform: scale(1.05) rotate(2deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.accent-text {
    color: var(--red-brand);
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(219, 4, 41, 0.1);
    color: var(--red-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.contact-number {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.1rem;
}

.contact-number:hover {
    color: var(--red-brand);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-dark);
    cursor: pointer;
    padding: 5px;
}

/* Main Navigation Bar */
.main-nav {
    background-color: var(--navy-medium);
    border-top: 3px solid var(--red-brand);
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
}

.nav-links {
    display: flex;
    width: 100%;
}

.nav-links a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 16px 20px;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--red-brand);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-card);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--red-brand);
    z-index: 10;
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 18px;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--red-brand) !important;
}

.dropdown-content a::after {
    display: none;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 135px; /* Adjust according to header size */
    left: 0;
    width: 100%;
    background-color: var(--navy-dark);
    z-index: 80;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
}

.mobile-nav.open {
    display: flex;
    transform: translateY(0);
}

.mobile-nav-link {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--red-brand);
}

.mobile-nav-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 120px 0;
    color: var(--text-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(7, 23, 44, 0.95) 0%, rgba(7, 23, 44, 0.85) 45%, rgba(7, 23, 44, 0.3) 70%, rgba(7, 23, 44, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    color: var(--red-hover);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #00b4d8;
    font-style: italic;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-item i {
    color: #00b4d8;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Floating Google reviews card */
.hero-reviews-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 250px;
    align-self: center;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hero-reviews-badge .stars {
    color: var(--gold);
    display: flex;
    gap: 4px;
    font-size: 1.1rem;
}

.hero-reviews-badge .rating-val {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.hero-reviews-badge .reviews-source {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.google-icon {
    font-size: 0.95rem;
    color: var(--text-white);
}

/* Trust Bar */
.trust-bar {
    background-color: var(--navy-dark);
    color: var(--text-white);
    padding: 30px 0;
    border-bottom: 4px solid var(--red-brand);
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--red-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.trust-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Services & Quote Form Split Section */
.services-quote-split {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.split-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    align-items: start;
}

.section-subtitle {
    display: block;
    color: var(--red-brand);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--navy-dark);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--navy-medium);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--red-brand);
}

.service-card-icon {
    font-size: 2rem;
    color: var(--red-brand);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.services-btn-container {
    margin-top: 35px;
}

/* Quote Form Card */
.quote-form-card {
    background-color: var(--navy-dark);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 90px;
    color: var(--text-white);
}

.quote-form-card .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.quote-form-card h3 {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.quote-form-card p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--red-hover);
    font-weight: 700;
}

.lead-form .form-group {
    margin-bottom: 15px;
}

.lead-form input, 
.lead-form select, 
.lead-form textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lead-form input:focus, 
.lead-form select:focus, 
.lead-form textarea:focus {
    outline: none;
    border-color: var(--red-brand);
    background-color: rgba(255, 255, 255, 0.08);
}

.lead-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

.lead-form select option {
    background-color: var(--navy-dark);
    color: var(--text-white);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.15);
    border: 1px solid var(--whatsapp-green);
    color: #a3ffc7;
}

.form-status.error {
    display: block;
    background-color: rgba(217, 4, 41, 0.15);
    border: 1px solid var(--red-brand);
    color: #ffb3b8;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 20px;
    text-align: center;
}

.form-footer i {
    color: #00b4d8;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 15px;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--text-white);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--red-brand);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--red-brand);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.35rem;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--navy-dark);
    color: var(--text-white);
}

.testimonials .section-title {
    color: var(--text-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .stars {
    color: var(--gold);
    display: flex;
    gap: 4px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--red-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.1rem;
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
}

.client-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials-btn-container {
    text-align: center;
    margin-top: 40px;
}

/* Service Areas & Licensing Section */
.areas-licensing {
    padding: 80px 0;
    background-color: var(--text-white);
}

.areas-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    margin: 30px 0 40px 0;
}

.areas-grid span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.areas-grid i {
    font-size: 1.2rem;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--red-brand);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.address-icon {
    font-size: 1.4rem;
    color: var(--red-brand);
    margin-top: 3px;
}

.address-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-dark);
}

.address-link:hover {
    color: var(--red-brand);
}

/* Custom CSS badge */
.badge-content {
    display: flex;
    justify-content: center;
}

.license-badge {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--navy-light), var(--navy-dark));
    border: 8px double var(--gold);
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle {
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 183, 3, 0.4);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    padding: 15px;
}

.badge-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.badge-logo i {
    color: #00b4d8;
    font-size: 1.3rem;
}

.badge-logo span {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

.stars-badge {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.license-num {
    background-color: var(--red-brand);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
}

/* Need AC Service Banner CTA */
.banner-cta {
    background: linear-gradient(135deg, var(--red-brand) 0%, #b81520 100%);
    color: var(--text-white);
    padding: 45px 0;
}

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

.banner-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.banner-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.emergency-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--navy-dark);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.emergency-tag i {
    color: var(--red-hover);
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

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

.brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links a:hover {
    background-color: var(--red-brand);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--red-brand);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--red-hover);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--red-brand);
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item a:hover {
    color: var(--red-hover);
}

.hours-title {
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    background-color: var(--navy-dark);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a:hover {
    color: var(--red-hover);
}

.dot {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-bottom: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges {
        justify-content: center;
        max-width: 500px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-reviews-badge {
        align-self: center;
        margin-top: 20px;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .areas-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .badge-content {
        order: -1;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .announcement-info {
        display: none;
    }

    .announcement-container {
        justify-content: center;
    }

    .header-actions .btn,
    .header-contact {
        display: none; /* Hide header btn and contact block on tablet/mobile */
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none; /* Hide main horizontal menu */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .banner-actions .btn {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-badges {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }
}
