:root {
    --deep-navy: #0B1B3D;
    --deep-navy-dark: #08142c;
    --action-orange: #f97316; /* Made more vibrant to look like customer service */
    --action-orange-hover: #ea580c;
    --support-green: #10b981; /* Added for call buttons to signify "go/call" */
    --support-green-hover: #059669;
    
    --surface-light: #F8F9FA;
    --white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    
    --bg-blue: #3b82f6;
    --bg-orange: #f97316;
    --bg-green: #10b981;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-soft: 0.75rem;
    --shadow-soft: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0; /* Will be adjusted in media query for mobile button */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--deep-navy);
    font-weight: 700;
}

p {
    color: var(--text-secondary);
}

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

/* Top Bar */
.top-bar {
    background-color: var(--deep-navy-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.support-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
}

.support-badge .material-symbols-outlined {
    font-size: 18px;
    color: var(--action-orange);
}

.toll-free {
    color: #cbd5e1;
}

.toll-free strong {
    color: var(--white);
    font-size: 16px;
    letter-spacing: 0.5px;
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.section-subtitle.left-align {
    text-align: left;
    margin: 0 0 48px 0;
}

/* Material Icons Customization */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-soft);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--action-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--action-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.btn-secondary {
    background-color: var(--support-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--support-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--deep-navy);
    padding: 10px 24px;
}

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

.btn-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--support-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 16px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
    transition: all 0.2s;
}

.text-link:hover {
    background: var(--support-green);
    color: var(--white);
}

/* Header */
.header {
    background-color: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--deep-navy);
    display: flex;
    align-items: center;
}

.header-logo {
    height: 32px;
    margin-right: 12px;
    vertical-align: middle;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--action-orange);
}

.call-header-btn {
    border-color: var(--support-green);
    color: var(--support-green);
}

.call-header-btn:hover {
    background-color: var(--support-green);
    color: var(--white);
    border-color: var(--support-green);
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background-color: var(--surface-light);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--action-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    border: 2px solid var(--white);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.bg-blue { background-color: var(--bg-blue); }
.bg-orange { background-color: var(--bg-orange); }
.bg-green { background-color: var(--bg-green); }

/* Grid Layouts */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

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

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

/* Services */
.services {
    padding: 100px 0;
}

.service-card {
    background-color: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--action-orange);
    transform: translateY(-4px);
}

.icon-large {
    font-size: 48px;
    color: var(--deep-navy);
    margin-bottom: 24px;
    display: inline-block;
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-soft);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.brand-logo-large {
    height: 48px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 24px;
    display: inline-block;
}

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

.service-card p {
    font-size: 15px;
    margin-bottom: 16px;
}

/* Issues Section */
.issues {
    padding: 100px 0;
}

.issue-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--surface-light);
    border-radius: var(--radius-soft);
    border-left: 4px solid #ef4444;
}

.issue-icon .material-symbols-outlined {
    color: #ef4444;
    font-size: 32px;
    background: rgba(239, 68, 68, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.issue-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.issue-content p {
    font-size: 15px;
}

.quote-block {
    margin-top: 48px;
    padding: 40px;
    background-color: var(--deep-navy);
    border-radius: var(--radius-soft);
    text-align: center;
}

.quote-block p {
    color: var(--white);
    font-size: 22px;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
}

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

.feature-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

.icon-feature {
    font-size: 48px;
    color: var(--action-orange);
    margin-bottom: 16px;
}

.feature-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-navy);
}

/* Bookings */
.bookings {
    padding: 100px 0;
    background-color: var(--surface-light);
}

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 48px;
    border-radius: var(--radius-soft);
    color: var(--text-primary);
    box-shadow: var(--shadow-hover);
    border-top: 5px solid var(--action-orange);
}

.booking-form-wrapper h2 {
    color: var(--deep-navy);
    margin-bottom: 12px;
    font-size: 32px;
    text-align: center;
}

.form-intro {
    margin-bottom: 32px;
    text-align: center;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--deep-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-soft);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    background-color: var(--surface-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--action-orange);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Footer */
.footer {
    background-color: var(--deep-navy-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

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

.social-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 1;
    color: var(--action-orange);
}

.footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--action-orange);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact .material-symbols-outlined {
    color: var(--action-orange);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Mobile Floating Call Button - Hidden on Desktop */
.mobile-call-wrapper {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px; /* Space for the floating button */
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .nav { display: none; }
    .hero h1 { font-size: 36px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    
    .call-header-btn {
        display: none; /* Hide header call button on mobile, use bottom sticky instead */
    }
    
    .grid-4, .grid-3, .grid-2, .form-row, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Optimize Padding and Typography for Mobile */
    .hero { padding: 40px 0 60px; }
    .services, .issues, .why-choose-us, .bookings, .faqs { padding: 60px 0; }
    .footer { padding: 50px 0 30px; }
    
    .section-title { font-size: 28px; margin-bottom: 32px; }
    .section-header { margin-bottom: 40px; }
    
    .social-proof { flex-direction: column; text-align: center; gap: 8px; }
    
    .booking-form-wrapper { padding: 32px 24px; }
    
    /* Mobile Floating Call Button */
    .mobile-call-wrapper {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: var(--white);
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        padding: 10px 16px;
        animation: slideUp 0.5s ease-out;
    }
    
    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background-color: var(--support-green);
        color: var(--white);
        padding: 14px 20px;
        border-radius: 8px;
        text-decoration: none;
        width: 100%;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    
    .mobile-call-btn .material-symbols-outlined {
        font-size: 32px;
        animation: pulse 2s infinite;
    }
    
    .call-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .call-title {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.9;
    }
    
    .call-number {
        font-size: 20px;
        font-weight: 800;
        font-family: var(--font-heading);
    }
}

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

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
