/* CSS Variables for easy color management - Option 2: Urban Authority (Tweaked) */
:root {
    --charcoal-black: #1a1a1a;
    --pure-black: #000000;
    --dark-gray: #111111;
    --silver: #9ca3af;
    --light-silver: #d1d5db;
    --lime-green: #84cc16;
    --bright-lime: #a3e635;
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --text-gray: #6B7280;
    --shadow: 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);

    /* Legacy color mappings for smooth transition */
    --deep-teal: var(--charcoal-black);
    --bright-teal: var(--lime-green);
    --light-teal: var(--bright-lime);
    --primary-navy: var(--charcoal-black);
    --dark-navy: var(--pure-black);
    --electric-blue: var(--lime-green);
    --light-blue: var(--bright-lime);
    --primary-red: var(--charcoal-black);
    --dark-red: var(--pure-black);
    --yellow: var(--lime-green);
    --light-yellow: var(--bright-lime);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure all images load smoothly */
img.loading {
    filter: blur(5px);
    transition: filter 0.3s;
}

img.loaded {
    filter: blur(0);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--electric-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--charcoal-black);
    border: 2px solid var(--silver);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

/* Give the nav section a dark, professional look */
.nav {
    background: linear-gradient(135deg, var(--pure-black) 0%, var(--charcoal-black) 50%, var(--pure-black) 100%);
    border-top: 2px solid var(--lime-green);
    position: relative;
}

/* Add subtle texture overlay */
.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.01) 10px,
            rgba(255,255,255,0.01) 20px
        );
    pointer-events: none;
}

.header-top {
    background-color: var(--pure-black);
    color: var(--white);
    padding: 1rem 0; /* Fully restored original padding */
    position: relative;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-right: 2rem; /* Push phone number closer to right edge */
}

/* Emergency text - positioned at far left of viewport */
.header-emergency {
    position: absolute;
    left: 1rem; /* Small padding from viewport edge */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 100;
}

/* Option 1: Pulsing Dot */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--lime-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Option 2: Text-Only with Accent */
.header-emergency-text {
    letter-spacing: 0.5px;
}

.emergency-accent {
    color: var(--lime-green);
    font-weight: 900;
    font-size: 1rem;
    margin-right: 0.25rem;
}

/* Option 3: Custom SVG Icon */
.emergency-icon {
    color: var(--lime-green);
    flex-shrink: 0;
    animation: signal-pulse 3s ease-in-out infinite;
}

@keyframes signal-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Option 4: Status Bar Style */
.status-badge {
    background-color: var(--lime-green);
    color: var(--pure-black);
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 2px;
    position: relative;
}

.status-badge::before {
    content: '[';
    position: absolute;
    left: -8px;
    color: var(--light-gray);
}

.status-badge::after {
    content: ']';
    position: absolute;
    right: -8px;
    color: var(--light-gray);
}

/* Option 5: Minimal Line Accent */
.line-accent {
    color: var(--lime-green);
    font-weight: 400;
    margin-right: 0.25rem;
    font-size: 1.2rem;
    line-height: 1;
}

/* Professional Pulsing Lightbulb */
.pulse-lightbulb {
    color: var(--lime-green);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* Emoji with Pulse Animation */
.pulse-emoji {
    display: inline-block;
    animation: pulse 2s infinite;
    font-size: 1rem;
}

/* Emergency text highlighting */
.emergency-text {
    color: var(--lime-green);
    font-weight: 700;
}

.header-phone {
    position: fixed;
    right: 2%; /* 2% from right edge */
    top: 5px;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lime-green);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    z-index: 1001;
    text-decoration: none;
}

.header-phone:hover {
    color: var(--bright-lime);
    transform: scale(1.05);
}

/* Removed hover underline effect for cleaner look */

/* Navigation */
.nav {
    padding: 2rem 0; /* Fully restored original height */
}

.nav-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 2rem; /* Align with phone number above */
}

/* Header logo positioning */
.nav .logo {
    position: absolute;
    left: 1rem; /* Same as emergency text for alignment */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    line-height: 1;
    z-index: 10;
}

/* Footer logo - normal positioning */
.footer .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}

.logo-urgent {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    position: relative;
    letter-spacing: 0.02em;
}

/* Invisible line (gap) through URGENT - matches background gradient */
.logo-urgent::after {
    content: '';
    position: absolute;
    top: 29.5%;
    left: 0; /* Start exactly at letter edge */
    width: 71.5%; /* Adjustable - ends before T overhang */
    height: 5px; /* Made thicker for better proportion */
    /* Match the nav gradient at this position */
    background: linear-gradient(135deg, var(--pure-black) 0%, var(--charcoal-black) 50%, var(--pure-black) 100%);
    z-index: 2;
}

.logo-towing {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--silver);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Footer logo styling */
.footer .logo-urgent {
    color: var(--electric-blue);
}

.footer .logo-urgent::after {
    background: var(--dark-gray); /* Matches footer background */
}

.footer .logo-towing {
    color: var(--white);
}

.nav-menu {
    position: absolute;
    right: 2%; /* 2% from right edge, aligned with phone */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--silver);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--lime-green);
}

.nav-cta {
    background-color: var(--electric-blue);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
}

.nav-cta:hover {
    background-color: var(--primary-navy);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    background-color: var(--electric-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-highlight {
    color: var(--light-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
}

.hero-feature-text {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-feature-separator {
    width: 1px;
    height: 20px;
    background-color: var(--white);
    margin: 0 2rem;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.feature-list li {
    padding: 0.25rem 0;
    color: var(--text-gray);
    list-style-type: disc;
    margin-bottom: 0.25rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-featured {
    grid-column: span 2;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    list-style-type: disc;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Price Badge Styling */
.price-badge {
    display: inline-block;
    background-color: transparent;
    color: var(--lime-green);
    border: 2px solid var(--lime-green);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
    cursor: default;
}

.additional-services {
    text-align: center;
}

.additional-services h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-tag {
    background-color: var(--electric-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Fleet Section */
.fleet {
    padding: 4rem 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.fleet-item {
    text-align: center;
}

.fleet-item img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.fleet-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Service Areas */
.service-areas {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.areas-map {
    position: relative;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.areas-map iframe {
    border-radius: 1rem;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.map-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.map-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.legend-item {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-item.primary::before {
    background-color: var(--lime-green);
}

.legend-item.extended::before {
    background-color: var(--bright-teal);
}

.areas-list h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.area-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-item {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--lime-green);
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left-color: var(--pure-black);
}

.area-item.extended {
    border-left-color: var(--bright-teal);
    background-color: rgba(7, 89, 133, 0.05);
}

.area-item.extended:hover {
    border-left-color: var(--bright-teal);
    background-color: rgba(7, 89, 133, 0.1);
}

.extended-areas {
    margin-bottom: 2rem;
}

.area-highways {
    background-color: var(--pure-black);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.area-highways p {
    margin: 0;
    font-size: 0.95rem;
}

.area-highways strong {
    color: var(--lime-green);
}

.area-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--pure-black);
}

.area-item p {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
}

.area-special {
    background-color: var(--bright-teal);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background-color: var(--charcoal-black);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-award {
    position: relative;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFD700 100%);
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 3px solid var(--pure-black);
    min-width: 140px;
}

.award-ribbon {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: var(--pure-black);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 50% 80%, 10% 100%);
}

.award-content {
    position: relative;
    z-index: 1;
}

.award-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--pure-black);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.award-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pure-black);
    letter-spacing: 1px;
    line-height: 1.2;
}

.badge-number {
    font-size: 2rem;
    font-weight: 900;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 2rem 0 1rem;
}

.footer-container {
    max-width: 1600px;
    margin-left: 20%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 250px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-urgent {
    color: var(--yellow);
}

.footer-brand .logo-towing {
    color: var(--white);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--electric-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(7, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: -0.5rem;
    font-size: 0.875rem;
    margin-left: 20%;
}

.footer-column h3 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: var(--lime-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-column li {
    color: var(--white);
    opacity: 0.8;
    padding: 0.25rem 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    opacity: 0.6;
    font-size: 0.813rem;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--electric-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    font-weight: 600;
    transition: all 0.3s ease;
    display: none;
}

.floating-call-btn:hover {
    background-color: var(--primary-navy);
    transform: translateY(-3px);
}

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid,
    .features-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    /* Navigation */
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-cta {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-feature-separator {
        display: none;
    }

    /* Grid Layouts */
    .services-grid,
    .features-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .service-featured {
        grid-column: span 1;
    }

    .areas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-header {
        flex-direction: column;
        text-align: center;
    }

    .service-award {
        margin: 1rem auto;
    }

    .area-items {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        margin-left: 0;
    }

    .footer-brand {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Styles */
@media (max-width: 991px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    /* Floating Call Button */
    .floating-call-btn {
        display: flex;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
    }
}