/*
Theme Name: Titan Towing Pro
Theme URI: http://example.com/titan-towing-pro
Author: Atif Mughal
Author URI: http://atifiy.com
Description: A professional, high-conversion towing business theme with industrial black/orange aesthetic.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: titan-towing-pro
*/

:root {
    --primary-gradient: linear-gradient(135deg, #FF5F15 0%, #ff6b35 100%);
    /* Safety Orange */
    --secondary-gradient: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    /* Dark Grey */
    --landing-gradient: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    /* Black to Dark Grey */
    --accent-gradient: linear-gradient(90deg, #FF5F15, #ff8c00, #FF5F15);
    --dark-gradient: linear-gradient(180deg, #000000 0%, #111111 100%);
    --glass-bg: #ffffff;
    --glass-border: rgba(0, 0, 0, 0.1);
    --text-dark: #1a1a2e;
    --text-light: #fff;
    --glow-orange: rgba(255, 95, 21, 0.4);
    --glow-purple: rgba(255, 255, 255, 0.1);
    /* Removed purple, made subtle white */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Base Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn-primary {
    background: #fff;
    color: #e73c7e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-accent {
    background: var(--accent-gradient);
    background-size: 200% 100%;
    color: white;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s ease-in-out infinite;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btn-shine 2s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px var(--glow-orange), 0 0 60px var(--glow-orange);
}

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

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.site-title a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-logo-link img {
    max-height: 50px;
    width: auto;
    display: block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #fff;
}

/* Animations Variables & Keyframes */
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animated-bg {
    background: var(--landing-gradient);
    background-size: 600% 600%;
    animation: gradient-animation 8s ease infinite;
    position: relative;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 95, 21, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 95, 21, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    /* flex-wrap: wrap; */
    width: 100%;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    /* Above bg */
}

.hero-content {
    flex: 1;
    color: #fff;
    padding-right: 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 3s ease-in-out infinite;
    font-size: 1.2em;
    text-shadow: none;
}

@keyframes text-shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Trust Badges */
.trust-badges .badge {
    background: #ffffff;
    color: #333;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-right: 12px;
    display: inline-block;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
    }
}

/* Hero Form - Glassmorphism */
.hero-form-wrapper {
    flex: 0 0 450px;
    max-width: 450px;
}

.hero-form.glass-panel {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: form-float 4s ease-in-out infinite;
}

@keyframes form-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Add a gradient border top to the form */
.hero-form.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-gradient);
}

.form-header h2 {
    margin: 0 0 5px;
    color: #333;
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.form-header p {
    margin: 0 0 25px;
    color: #666;
    font-size: 0.95rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #f9f9f9;
    box-sizing: border-box;
    /* Fix padding issues */
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e73c7e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(231, 60, 126, 0.1);
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: -5px;
    /* Fix small gaps */
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-separator svg {
    display: block;
    width: calc(130% + 1.3px);
    height: 100px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.section-badge {
    text-transform: uppercase;
    color: #e73c7e;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.process-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.2), 0 0 40px var(--glow-orange);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 30px var(--glow-orange);
    transition: all 0.3s ease;
}

.process-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px var(--glow-orange);
}

.icon-wrapper.gradient-icon {
    background: var(--secondary-gradient);
    box-shadow: 0 10px 30px var(--glow-purple);
}

.process-card:hover .icon-wrapper.gradient-icon {
    box-shadow: 0 15px 40px var(--glow-purple);
}

/* Animation triggers (simple CSS classes) */
.animate-pop-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

/* Info Section */
.info-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.info-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

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

.feature-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.feature-list li span {
    margin-right: 15px;
    font-size: 1.5rem;
}

.info-image {
    flex: 1;
    position: relative;
}

.placeholder-img-box {
    width: 100%;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio */
    background: var(--secondary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.animated-float-img {
    animation: float 5s ease-in-out infinite;
}

/* Scrolled Header State */
.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Responsive Info Section */
@media (max-width: 992px) {
    .info-grid {
        flex-direction: column;
    }

    .info-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .feature-list li {
        justify-content: center;
    }
}

/* Page Header (Inner Pages) */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

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

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

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff6b35;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
}

.placeholder-img-about {
    width: 100%;
    height: 400px;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    animation: float 5s ease-in-out infinite;
}

.values-section {
    padding: 80px 0;
    background: var(--dark-gradient);
}

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

.value-card {
    padding: 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.2);
}

.value-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
}

.values-section .section-title {
    color: #fff;
}

/* Timeline Section (How It Works) */
.timeline-section {
    padding-bottom: 100px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 80px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--secondary-gradient);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: var(--primary-gradient);
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px var(--glow-orange);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
}

.cta-banner {
    text-align: center;
    padding: 60px;
    background: var(--secondary-gradient);
    border-radius: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* Responsive Custom Pages */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}

/* ============================================
   NEW SECTIONS - FOOTER, WHY, STATS, ETC.
   ============================================ */

/* Footer Styles */
.site-footer {
    background: var(--dark-gradient);
    color: #fff;
}

.footer-cta {
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-main {
    padding: 80px 0 60px;
    background: #1a1a2e;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.2);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

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

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

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

.footer-links a:hover {
    color: #fff;
}

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

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-hours {
    margin-top: 20px;
    opacity: 0.8;
}

.footer-bottom {
    background: #0f0f1a;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fff;
}

/* Why Section */
.why-section {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.why-card h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #333;
    font-size: 1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid;
    border-image: var(--primary-gradient) 1;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Page CTA Section */
.page-cta {
    padding: 100px 0;
    text-align: center;
}

.page-cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.page-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Process Icon Emoji */
.process-icon {
    font-size: 2rem;
}

/* Text Utilities */
.text-white {
    color: #fff !important;
}

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

/* Intro Section */
.intro-section {
    padding: 60px 0;
}

.intro-text {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Step List in Timeline */
.step-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.step-list li {
    padding: 5px 0;
    color: #555;
}

.step-list li::before {
    content: '✓ ';
    color: #ff6b35;
    font-weight: bold;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.requirement-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.req-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.requirement-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.requirement-card p {
    color: #666;
}

/* Local Section (About Page) */
.local-section {
    padding: 100px 0;
    background: #fff;
}

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

.local-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.local-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.local-list {
    list-style: none;
    padding: 0;
}

.local-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #444;
}

.local-image .placeholder-img-about {
    height: 350px;
}

/* Value Icons */
.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

/* Responsive Footer & New Sections */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

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

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

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

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

    .page-title {
        font-size: 2.5rem;
    }

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

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

/* ============================================
   STEP CARDS (How It Works Page)
   ============================================ */
.steps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.step-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

.step-number-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 20px var(--glow-orange);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.step-card>p {
    color: #666;
    margin-bottom: 15px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.step-details li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.step-details li:last-child {
    border-bottom: none;
}

.step-details li::before {
    content: '✓ ';
    color: #ff6b35;
    font-weight: bold;
}

.step-time {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   TEAM SECTION (About Page)
   ============================================ */
.team-section {
    padding: 100px 0;
    background: #fff;
}

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

.team-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.team-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.team-role {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-card>p:last-child {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   HEADER NAV IMPROVEMENTS
   ============================================ */
.site-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    color: #fff;
}

.nav-phone {
    color: #ffd700 !important;
    font-weight: 700 !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    left: 0;
}

.hamburger::before {
    top: -8px;
    transition: all 0.3s ease;
}

.hamburger::after {
    top: 8px;
    transition: all 0.3s ease;
}

/* Close Animation for Mobile Menu */
.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background: #FF5F15;
    /* Orange Close Icon */
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
    background: #FF5F15;
    /* Orange Close Icon */
}

/* Header CTA button fix */
.header-cta .btn {
    white-space: nowrap;
}

/* Mobile Navigation */
/* ============================================
   RESPONSIVE STYLES (Mobile & Tablet)
   ============================================ */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {

    /* Header */
    .menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0f0f1a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        z-index: 1000;
        gap: 25px;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .header-cta {
        display: none;
    }

    /* Grids */
    .steps-grid,
    .team-grid,
    .why-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-form-wrapper {
        order: 1;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Global Container */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Header */
    .site-logo {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }

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

    /* Forms */
    .hero-form {
        padding: 25px 20px;
    }

    /* Sections */
    .process-grid,
    .why-grid,
    .stats-grid,
    .testimonials-grid,
    .faq-grid,
    .requirements-grid,
    .gallery-grid,
    .values-grid,
    .local-grid,
    .steps-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Footer specifically */
    .footer-grid {
        text-align: center;
        gap: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    /* About Page */
    .local-content {
        order: 1;
    }

    .local-image {
        order: 2;
    }

    /* Misc */
    /* .btn {
        width: 100%;
        display: block;
    } */

    .page-title {
        font-size: 2.5rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .step-icon,
    .why-icon,
    .value-icon {
        font-size: 2.5rem;
    }
}

/* Recent Purchases Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Vehicles We Buy Section */
.vehicles-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.vehicle-card {
    background: #fff;
    padding: 25px 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vehicle-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.vehicle-card h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

/* Responsive Vehicles Grid */
@media (max-width: 992px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.service-areas-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.area-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .service-areas-grid {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

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

/* Form Improvements */
.form-row {
    display: flex;
    margin-right: -10px;
    margin-left: -10px;
}

.col-4 {
    width: 33.3333%;
    padding-left: 10px;
    padding-right: 10px;
}

.col-8 {
    width: 66.6666%;
    padding-left: 10px;
    padding-right: 10px;
}

/* Icon Improvements */
.fas,
.fab {
    display: inline-block;
}

.process-icon,
.vehicle-icon,
.why-icon,
.team-avatar i,
.value-icon {
    color: #FF5F15;
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: initial;
}

.team-avatar i {
    font-size: 4rem;
}

.social-link i {
    color: #fff;
    transition: color 0.3s;
}

.social-link:hover i {
    color: #FF5F15;
}

.footer-contact i,
.local-list i {
    color: #FF5F15;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.req-icon i,
.step-icon i {
    color: var(--primary-gradient);
    background: -webkit-linear-gradient(45deg, #FF5F15, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FontAwesome Icons Fix - Visual Stability */
.process-icon,
.vehicle-icon,
.why-icon,
.team-avatar i,
.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: #FF5F15;
    /* Solid Brand Orange for reliability */
    background: none;
    -webkit-text-fill-color: initial;
    /* Reset any transparent fill */
    background-clip: border-box;
    -webkit-background-clip: border-box;
}

/* Specific wrappers */
.icon-wrapper,
.vehicle-card i,
.why-card i {
    text-align: center;
    /* width: 100%; */
}

/* Fix for Process Icons inside Circle Wrapper */
.icon-wrapper .process-icon {
    margin-bottom: 0;
    /* Fix centering issue */
    color: #ffffff;
    /* White icon on Orange background */
    font-size: 2.5rem;
    /* Adjust size to fit in 90px circle */
    background: none;
    /* Ensure no conflicting background */
    -webkit-text-fill-color: initial;
    display: inline-block;
    line-height: 1;
}