/**
 * Take Off Fleet Corp - WordPress Theme Styles
 * Version: 1.0.0
 * Description: Custom styles for Take Off Fleet Corp landing page
 */

/* ==========================================================================
   CSS VARIABLES & THEME
   ========================================================================== */

:root {
    /* CLIENT PALETTE */
    --brand-primary: #2e0f52;
    --brand-accent: #6520b6;
    
    /* Derived Colors */
    --brand-gradient: linear-gradient(135deg, #2e0f52 0%, #6520b6 100%);
    
    /* Neutrals */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-white: #FFFFFF;
    --bg-off-white: #F8FAFC;
    
    /* Layout */
    --container-width: 1280px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Effects */
    --shadow-soft: 0 10px 40px -10px rgba(46, 15, 82, 0.08);
    --shadow-hover: 0 25px 50px -12px rgba(101, 32, 182, 0.15);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: -0.02em;
}

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

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

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.tof-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.tof-section-padding {
    padding: 120px 0;
}

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

.tof-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 12px;
    display: block;
}

.tof-section-title {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.tof-section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.tof-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

.tof-btn-primary {
    background: var(--brand-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(101, 32, 182, 0.3);
}

.tof-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(101, 32, 182, 0.4);
    filter: brightness(1.1);
    color: #fff;
}

.tof-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tof-btn-outline:hover {
    background: #fff;
    color: var(--brand-primary);
    border-color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.tof-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.tof-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes tof-slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */

.tof-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.tof-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.tof-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.tof-logo {
    display: block;
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.tof-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.tof-header.scrolled .tof-logo img {
    filter: none;
}

.tof-nav-links {
    display: flex;
    gap: 40px;
}

.tof-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.tof-header.scrolled .tof-nav-links a {
    color: var(--text-main);
}

.tof-header.scrolled .tof-nav-links a:hover {
    color: var(--brand-accent);
}

.tof-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--brand-accent);
    transition: 0.3s;
}

.tof-nav-links a:hover::after {
    width: 100%;
}

.tof-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tof-mobile-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.tof-header.scrolled .tof-mobile-toggle {
    color: var(--brand-primary);
}

/* Mobile Menu */
.tof-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--brand-primary);
    z-index: 999;
    padding: 100px 24px 24px;
    flex-direction: column;
    gap: 30px;
}

.tof-mobile-menu.active {
    display: flex;
}

.tof-mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.tof-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    overflow: hidden;
}

.tof-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    animation: tof-slowZoom 25s infinite alternate;
}

.tof-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(46, 15, 82, 0.4) 0%, rgba(46, 15, 82, 0.9) 100%);
    z-index: 1;
}

.tof-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
}

.tof-hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tof-hero p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tof-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   FEATURES / SERVICES SECTION
   ========================================================================== */

.tof-features {
    background: var(--bg-white);
    position: relative;
    z-index: 2;
    border-radius: 40px 40px 0 0;
    margin-top: -60px;
}

.tof-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tof-feature-card {
    padding: 40px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid #F1F5F9;
    transition: var(--transition);
}

.tof-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(101, 32, 182, 0.2);
}

.tof-feature-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(101, 32, 182, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--brand-accent);
    font-size: 1.5rem;
}

.tof-feature-card:hover .tof-feature-icon-box {
    background: var(--brand-gradient);
    color: #fff;
}

.tof-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tof-feature-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */

.tof-fleet {
    background: var(--bg-off-white);
}

.tof-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tof-fleet-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.tof-fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tof-fleet-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.tof-fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.tof-fleet-card:hover .tof-fleet-image img {
    transform: scale(1.05);
}

.tof-fleet-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-white);
    color: var(--brand-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tof-fleet-content {
    padding: 30px;
}

.tof-fleet-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tof-fleet-model {
    color: var(--brand-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.tof-fleet-specs {
    display: flex;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tof-fleet-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tof-fleet-specs i {
    color: var(--brand-accent);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.tof-testimonials {
    background: var(--brand-gradient);
    color: #fff;
}

.tof-testimonials .tof-section-title,
.tof-testimonials .tof-subtitle {
    color: #fff;
}

.tof-testimonials .tof-subtitle {
    opacity: 0.8;
}

.tof-testimonials .tof-section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.tof-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tof-review-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: var(--radius-md);
}

.tof-stars {
    color: #FBBF24;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.tof-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.tof-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tof-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.tof-author h4 {
    color: #fff;
    margin-bottom: 0;
}

.tof-author-role {
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.tof-contact {
    background: var(--bg-white);
}

.tof-contact-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #fff;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.tof-contact-info {
    background: var(--brand-primary);
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tof-contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--brand-accent);
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(50px);
}

.tof-contact-info h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.tof-contact-intro {
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
}

.tof-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    position: relative;
}

.tof-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.tof-info-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: block;
}

.tof-contact-form {
    padding: 60px;
}

.tof-contact-form h3 {
    margin-bottom: 20px;
}

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

.tof-input-group {
    margin-bottom: 0;
}

.tof-input-group input,
.tof-input-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
    outline: none;
    color: var(--text-main);
    font-size: 1rem;
}

.tof-input-group input:focus,
.tof-input-group select:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(101, 32, 182, 0.05);
}

.tof-input-group input::placeholder {
    color: var(--text-muted);
}

.tof-select-wrapper {
    margin-bottom: 20px;
}

.tof-btn-full {
    width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.tof-footer {
    background: var(--brand-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

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

.tof-footer-brand {
    /* Brand column styles */
}

.tof-footer-brand .tof-logo {
    height: 40px;
}

.tof-footer-brand .tof-logo img {
    filter: brightness(0) invert(1);
}

.tof-footer-brand p {
    margin-top: 20px;
}

.tof-footer-links h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.tof-footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.tof-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    .tof-section-padding {
        padding: 80px 0;
    }
    
    .tof-section-title {
        font-size: 2.5rem;
    }
    
    .tof-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {
    .tof-hero h1 {
        font-size: 3rem;
    }
    
    .tof-contact-box {
        grid-template-columns: 1fr;
    }
    
    .tof-form-row {
        grid-template-columns: 1fr;
    }
    
    .tof-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tof-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .tof-nav-links {
        display: none;
    }
    
    .tof-mobile-toggle {
        display: block;
    }
    
    .tof-section-title {
        font-size: 2.2rem;
    }
    
    .tof-section-padding {
        padding: 60px 0;
    }
    
    .tof-logo {
        height: 40px;
    }
    
    .tof-hero h1 {
        font-size: 2.5rem;
    }
    
    .tof-hero p {
        font-size: 1.1rem;
    }
    
    .tof-features-grid,
    .tof-fleet-grid,
    .tof-review-grid {
        grid-template-columns: 1fr;
    }
    
    .tof-fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .tof-feature-card,
    .tof-review-card {
        padding: 30px;
    }
    
    .tof-contact-info,
    .tof-contact-form {
        padding: 40px 24px;
    }
    
    .tof-btn {
        padding: 14px 28px;
    }
    
    .tof-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tof-hero-buttons .tof-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .tof-hero h1 {
        font-size: 2rem;
    }
    
    .tof-section-title {
        font-size: 1.8rem;
    }
    
    .tof-container {
        padding: 0 16px;
    }
    
    .tof-fleet-specs {
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   WORDPRESS SPECIFIC OVERRIDES
   ========================================================================== */

/* Reset WordPress default styles that might conflict */
.tof-hero,
.tof-features,
.tof-fleet,
.tof-testimonials,
.tof-contact,
.tof-footer,
.tof-options-hero,
.tof-earnings-section,
.tof-options-features,
.tof-new-trucks-section,
.tof-why-choose,
.tof-final-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Ensure proper box-sizing */
.tof-hero *,
.tof-features *,
.tof-fleet *,
.tof-testimonials *,
.tof-contact *,
.tof-footer *,
.tof-options-hero *,
.tof-earnings-section *,
.tof-options-features *,
.tof-new-trucks-section *,
.tof-why-choose *,
.tof-final-cta * {
    box-sizing: border-box;
}

/* Override theme button styles if needed */
.tof-btn {
    text-decoration: none !important;
}

/* Ensure images don't inherit theme max-width */
.tof-fleet-image img,
.tof-hero-bg {
    max-width: none;
    width: 100%;
}/* ==========================================================================
   OPTIONS PAGE STYLES - Add to END of takeoff-fleet.css
   ========================================================================== */

/* Options Hero */
.tof-options-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    overflow: hidden;
}

.tof-options-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.tof-options-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(46, 15, 82, 0.5) 0%, rgba(46, 15, 82, 0.95) 100%);
    z-index: 1;
}

.tof-options-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.tof-options-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.tof-options-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Earnings Section */
.tof-earnings-section {
    background: var(--bg-white);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.tof-earnings-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(46, 15, 82, 0.15);
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tof-earnings-content {
    flex: 1;
    min-width: 300px;
}

.tof-earnings-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-accent);
    display: block;
    margin-bottom: 10px;
}

.tof-earnings-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 15px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tof-earnings-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.tof-earnings-cta {
    flex-shrink: 0;
}

/* Options Features Grid */
.tof-options-features {
    background: var(--bg-off-white);
}

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

.tof-option-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.tof-option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(101, 32, 182, 0.2);
}

.tof-option-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 1.8rem;
}

.tof-option-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.tof-option-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Brand New Trucks Section */
.tof-new-trucks-section {
    background: var(--brand-gradient);
    padding: 100px 0;
}

.tof-new-trucks-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tof-new-trucks-content {
    color: #fff;
}

.tof-new-trucks-content h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.tof-new-trucks-content > p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tof-truck-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tof-truck-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tof-truck-features li:last-child {
    border-bottom: none;
}

.tof-truck-features i {
    color: #4ade80;
    font-size: 1rem;
}

.tof-new-trucks-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.tof-new-trucks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Section */
.tof-why-choose {
    background: var(--bg-white);
}

.tof-why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.tof-why-content .tof-section-title {
    text-align: left;
}

.tof-why-content > p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.tof-why-stats {
    display: flex;
    gap: 40px;
}

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

.tof-stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.tof-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Card */
.tof-cta-card {
    background: var(--brand-gradient);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    color: #fff;
    text-align: center;
}

.tof-cta-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tof-cta-card > p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.tof-cta-card .tof-btn-primary {
    background: #fff;
    color: var(--brand-primary);
}

.tof-cta-card .tof-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.tof-cta-contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.tof-cta-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.tof-phone-link {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tof-phone-link:hover {
    opacity: 0.8;
}

/* Final CTA Section */
.tof-final-cta {
    background: var(--bg-off-white);
    padding: 100px 0;
}

.tof-final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tof-final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.tof-final-cta-content > p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.tof-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tof-final-cta .tof-btn-outline {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.tof-final-cta .tof-btn-outline:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Button Sizes */
.tof-btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.tof-btn i {
    margin-left: 8px;
}

.tof-btn i:first-child {
    margin-left: 0;
    margin-right: 8px;
}

/* Responsive Styles for Options Page */
@media (max-width: 1024px) {
    .tof-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tof-new-trucks-box {
        grid-template-columns: 1fr;
    }
    
    .tof-new-trucks-image {
        order: -1;
        max-height: 400px;
    }
    
    .tof-why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .tof-earnings-amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .tof-options-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tof-options-grid {
        grid-template-columns: 1fr;
    }
    
    .tof-earnings-box {
        padding: 35px 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .tof-earnings-amount {
        font-size: 2.5rem;
    }
    
    .tof-why-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tof-stat {
        min-width: 120px;
    }
    
    .tof-final-cta-content h2 {
        font-size: 2rem;
    }
    
    .tof-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tof-final-cta-buttons .tof-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .tof-cta-card {
        padding: 40px 25px;
    }
}

/* ==========================================================================
   HOMEPAGE ADDITIONAL STYLES
   ========================================================================== */

/* Hero Phone CTA */
.tof-hero-cta {
    margin-top: 30px;
}

.tof-phone-cta {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tof-phone-cta:hover {
    color: var(--brand-accent);
    transform: scale(1.05);
}

.tof-phone-cta i {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 50%;
}

/* CTA Banner */
.tof-cta-banner {
    background: var(--brand-gradient);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tof-cta-banner p {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.tof-cta-banner .tof-btn-primary {
    background: #fff;
    color: var(--brand-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.tof-cta-banner .tof-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.tof-cta-banner .tof-btn i {
    margin-right: 8px;
}

/* 4-Column Review Grid */
@media (min-width: 1200px) {
    .tof-review-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .tof-review-card {
        padding: 30px;
    }
    
    .tof-quote {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Footer Disclaimer */
.tof-footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
}

.tof-footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.6;
}

.tof-footer-disclaimer a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

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

/* Footer Contact Links */
.tof-footer-links a i {
    margin-right: 8px;
    width: 16px;
}

.tof-footer-links li {
    line-height: 1.8;
}

/* Contact Section CTA */
.tof-contact-cta {
    margin-top: 20px;
}

/* Responsive for CTA */
@media (max-width: 768px) {
    .tof-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .tof-cta-banner p {
        font-size: 1.1rem;
    }
    
    .tof-phone-cta {
        font-size: 1rem;
    }
}

/* ==========================================================================
   MOBILE MENU FIXES
   ========================================================================== */

.tof-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--brand-primary);
    z-index: 999;
    padding: 100px 24px 24px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.tof-mobile-menu.active {
    display: flex;
}

.tof-mobile-menu a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    text-decoration: none;
}

.tof-mobile-menu a:last-child {
    border-bottom: none;
}

.tof-mobile-menu a:hover {
    color: var(--brand-accent);
    padding-left: 10px;
}

/* Ensure mobile toggle is above mobile menu */
.tof-mobile-toggle {
    position: relative;
    z-index: 1001;
}

/* Fix header z-index when menu is open */
.tof-header {
    z-index: 1000;
}

/* Mobile menu close button positioning */
@media (max-width: 768px) {
    .tof-mobile-menu a {
        font-size: 1.3rem;
        padding: 18px 0;
    }
    
    .tof-nav-actions .tof-btn-primary {
        display: none;
    }
    
    .tof-nav-actions {
        gap: 0;
    }
}
/* ==========================================================================
   APPLY PAGE STYLES - Add to END of takeoff-fleet.css
   ========================================================================== */

/* Apply Hero */
.tof-apply-hero {
    background: var(--brand-gradient);
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
}

.tof-apply-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.tof-apply-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.tof-apply-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* Apply Section Layout */
.tof-apply-section {
    padding: 80px 0;
    background: var(--bg-off-white);
}

.tof-apply-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.tof-apply-sidebar {
    position: sticky;
    top: 100px;
}

.tof-sidebar-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.tof-sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tof-sidebar-card h3 i {
    color: var(--brand-accent);
}

.tof-sidebar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.tof-sidebar-phone,
.tof-sidebar-email {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

.tof-sidebar-email {
    font-size: 0.95rem;
    word-break: break-all;
}

.tof-sidebar-phone:hover,
.tof-sidebar-email:hover {
    color: var(--brand-accent);
}

/* Form Container */
.tof-apply-form-container {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.tof-apply-form {
    padding: 0;
}

/* Form Sections */
.tof-form-section {
    padding: 40px;
    border-bottom: 1px solid #f1f5f9;
}

.tof-form-section:last-child {
    border-bottom: none;
}

.tof-form-section h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tof-form-step {
    width: 35px;
    height: 35px;
    background: var(--brand-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

/* Form Groups */
.tof-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.tof-form-group {
    margin-bottom: 20px;
}

.tof-form-group:last-child {
    margin-bottom: 0;
}

.tof-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.tof-form-group label .required {
    color: #ef4444;
}

/* Input Styles */
.tof-form-group input[type="text"],
.tof-form-group input[type="email"],
.tof-form-group input[type="tel"],
.tof-form-group select,
.tof-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    background: #fff;
}

.tof-form-group input:focus,
.tof-form-group select:focus,
.tof-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(101, 32, 182, 0.1);
}

.tof-form-group input::placeholder,
.tof-form-group textarea::placeholder {
    color: #94a3b8;
}

.tof-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' 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 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.tof-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Styles */
.tof-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tof-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-main);
}

.tof-checkbox-label input[type="checkbox"] {
    display: none;
}

.tof-checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tof-checkbox-label input[type="checkbox"]:checked + .tof-checkbox-custom {
    background: var(--brand-gradient);
    border-color: var(--brand-accent);
}

.tof-checkbox-label input[type="checkbox"]:checked + .tof-checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* Radio Styles */
.tof-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tof-radio-inline {
    gap: 30px;
}

.tof-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-main);
}

.tof-radio-label input[type="radio"] {
    display: none;
}

.tof-radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tof-radio-label input[type="radio"]:checked + .tof-radio-custom {
    border-color: var(--brand-accent);
}

.tof-radio-label input[type="radio"]:checked + .tof-radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--brand-gradient);
    border-radius: 50%;
}

/* File Upload Styles */
.tof-file-upload {
    position: relative;
}

.tof-file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.tof-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tof-file-label i {
    font-size: 2rem;
    color: var(--brand-accent);
    margin-bottom: 10px;
}

.tof-file-label span {
    font-weight: 500;
    color: var(--text-main);
}

.tof-file-label small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 5px;
}

.tof-file-upload:hover .tof-file-label,
.tof-file-label.has-file {
    border-color: var(--brand-accent);
    background: rgba(101, 32, 182, 0.05);
}

.tof-file-name {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--brand-accent);
    font-weight: 500;
}

/* Consent Checkbox */
.tof-consent-checkbox {
    align-items: flex-start;
}

.tof-consent-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Submit Section */
.tof-form-submit-section {
    background: #f8fafc;
}

.tof-submit-btn {
    margin-top: 20px;
}

.tof-submit-btn i {
    margin-right: 10px;
}

.tof-form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tof-form-note i {
    margin-right: 5px;
    color: var(--brand-accent);
}

/* Apply Page WordPress Overrides */
.tof-apply-hero,
.tof-apply-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Responsive */
@media (max-width: 1024px) {
    .tof-apply-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tof-apply-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .tof-sidebar-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .tof-apply-hero {
        padding: 120px 0 60px;
    }
    
    .tof-apply-hero h1 {
        font-size: 2.2rem;
    }
    
    .tof-apply-section {
        padding: 40px 0;
    }
    
    .tof-apply-sidebar {
        grid-template-columns: 1fr;
    }
    
    .tof-form-section {
        padding: 25px 20px;
    }
    
    .tof-form-row {
        grid-template-columns: 1fr;
    }
    
    .tof-form-section h2 {
        font-size: 1.2rem;
    }
    
    .tof-radio-group,
    .tof-checkbox-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .tof-radio-inline {
        flex-direction: row;
    }
}
/* ==========================================================================
   CONTACT PAGE STYLES - Add to END of takeoff-fleet.css
   ========================================================================== */

/* Contact Hero */
.tof-contact-hero {
    background: var(--brand-gradient);
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
}

.tof-contact-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.tof-contact-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.tof-contact-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* Contact Cards Section */
.tof-contact-cards-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

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

.tof-contact-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 40px rgba(46, 15, 82, 0.1);
    transition: var(--transition);
}

.tof-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(46, 15, 82, 0.15);
}

.tof-contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(101, 32, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--brand-accent);
    font-size: 1.4rem;
    transition: var(--transition);
}

.tof-contact-card:hover .tof-contact-card-icon {
    background: var(--brand-gradient);
    color: #fff;
}

.tof-contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.tof-contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.tof-contact-card-link {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
}

.tof-contact-card-link:hover {
    color: var(--brand-accent);
}

/* Main Contact Section */
.tof-contact-main-section {
    padding: 80px 0;
    background: var(--bg-off-white);
}

.tof-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Contact Form Wrapper */
.tof-contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.tof-contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tof-contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.tof-contact-page-form .tof-form-group {
    margin-bottom: 20px;
}

.tof-contact-page-form .tof-form-row {
    margin-bottom: 0;
}

.tof-contact-page-form .tof-btn {
    margin-top: 10px;
}

.tof-contact-page-form .tof-btn i {
    margin-right: 8px;
}

/* Map Wrapper */
.tof-contact-map-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.tof-contact-map-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tof-contact-map-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.tof-map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 25px;
}

.tof-map-container iframe {
    display: block;
}

.tof-map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    gap: 20px;
}

.tof-map-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tof-map-info-item i {
    font-size: 1.5rem;
    color: var(--brand-accent);
}

.tof-map-info-item strong {
    display: block;
    color: var(--brand-primary);
    margin-bottom: 3px;
}

.tof-map-info-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.tof-btn-dark {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.tof-btn-dark:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* Social & CTA Section */
.tof-contact-cta-section {
    padding: 80px 0;
    background: #fff;
}

.tof-contact-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tof-contact-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.tof-contact-cta-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.tof-social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tof-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.tof-social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.tof-social-btn i {
    font-size: 1.2rem;
}

.tof-social-facebook {
    background: #1877f2;
}

.tof-social-facebook:hover {
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.tof-social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tof-social-instagram:hover {
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.tof-social-youtube {
    background: #ff0000;
}

.tof-social-youtube:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.tof-social-linkedin {
    background: #0a66c2;
}

.tof-social-linkedin:hover {
    box-shadow: 0 10px 25px rgba(10, 102, 194, 0.4);
}

.tof-contact-apply-cta {
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.tof-contact-apply-cta p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tof-contact-apply-cta .tof-btn i {
    margin-left: 8px;
}

/* Contact Page WordPress Overrides */
.tof-contact-hero,
.tof-contact-cards-section,
.tof-contact-main-section,
.tof-contact-cta-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

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

@media (max-width: 768px) {
    .tof-contact-hero {
        padding: 120px 0 60px;
    }
    
    .tof-contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .tof-contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tof-contact-cards-section {
        margin-top: -30px;
    }
    
    .tof-contact-main-section {
        padding: 50px 0;
    }
    
    .tof-contact-form-wrapper,
    .tof-contact-map-wrapper {
        padding: 25px 20px;
    }
    
    .tof-map-info {
        flex-direction: column;
        text-align: center;
    }
    
    .tof-map-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tof-contact-cta-section {
        padding: 50px 0;
    }
    
    .tof-social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tof-social-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}