/*
Theme Name: 14dayssold
Theme URI: https://14dayssold.com
Author: 14dayssold Team
Description: Custom WordPress theme for 14dayssold.com - Fast Cash House Buyers
Version: 1.0.0
License: GPL v2
Text Domain: 14dayssold
*/

/* ============================================
   CSS VARIABLES - Color Palette
   ============================================ */
:root {
    --color-primary-dark: #000d30;
    --color-primary: #0a1a4a;
    --color-accent: #72dab5;
    --color-accent-dark: #5bc49f;
    --color-white: #fcfeff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #f5f7fa;
    --color-border: #e0e4e8;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 13, 48, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 13, 48, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

.btn-dark:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color:  #000d30;
    border-bottom: 1px solid rgba(114, 218, 181, 0.1);
    padding: 6px 0;
    font-size: 0.8rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
	display:none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(252, 254, 255, 0.8);
}

.top-bar-phone {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.top-bar-phone svg {
    color: #72dab5;
    margin-right: 6px;
}

.top-bar-hours {
    background-color: rgba(114, 218, 181, 0.15);
    color: #72dab5;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ============================================
   HEADER - FIXED LAYOUT
   ============================================ */
.site-header {
    position: fixed;
    top: 3px; /* Below top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000d30;
    border-bottom: 1px solid rgba(114, 218, 181, 0.15);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    top: 0 !important;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    min-height: 60px;
    max-width: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 20px;
}

.logo-img {
    max-height: 36px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fcfeff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-14 {
    color: #72dab5;
}

/* Main Navigation - CENTERED */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center; /* CENTER THE MENU */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu li {
    position: relative;
    list-style: none;
    flex-shrink: 0;
}

.nav-menu a {
    color: rgba(252, 254, 255, 0.85);
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    padding: 6px 10px;
    position: relative;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #72dab5;
    background-color: rgba(114, 218, 181, 0.1);
}

/* Current page highlight */
.nav-menu .current-menu-item a,
.nav-menu .current-page-ancestor a {
    color: #72dab5;
    background-color: rgba(114, 218, 181, 0.15);
}

/* CTA Button */
.nav-cta {
    margin-left: 12px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    background-color: #72dab5;
    color: #000d30;
    border: 2px solid #72dab5;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-cta:hover {
    background-color: #5bc49f;
    border-color: #5bc49f;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(114, 218, 181, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: 15px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fcfeff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1100px) {
    .nav-menu a {
        font-size: 0.75rem;
        padding: 6px 8px;
    }
    
    .nav-cta {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 60px; /* Below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #000d30;
        padding: 20px;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        border-top: 1px solid rgba(114, 218, 181, 0.15);
        justify-content: flex-start;
        z-index: 999;
    }
    
    /* When top bar is visible on desktop, adjust mobile menu position */
    body:has(.top-bar:not([style*="display: none"])) .main-nav {
        top: 94px; /* 34px top bar + 60px header */
        height: calc(100vh - 94px);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 8px;
        white-space: normal;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 14px 22px;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    
     
    .site-header {
        top: 0; /* No top bar on mobile */
    }
      
    .main-nav {
        top: 50px; /* Below smaller header */
        height: calc(100vh - 50px);
    }
    
    .logo-img {
        max-height: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .header-inner {
        padding: 8px 0;
        min-height: 50px;
    }
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(114,218,181,0.08)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: top-center;
    margin-top: 50px;
}

.hero-text h1 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--color-accent);
}

.hero-text p {
    color: rgba(252, 254, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 0.95rem;
}

.hero-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-form {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-form h3 {
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.hero-form p {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(114, 218, 181, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

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

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-top: 15px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    background-color: rgba(114, 218, 181, 0.15);
    color: #2d8a6e;
    border: 1px solid var(--color-accent);
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background-color: var(--color-bg-light);
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-badges-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--color-accent);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

.section-dark p {
    color: rgba(252, 254, 255, 0.8);
}

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

.section-header h2 {
    margin-bottom: 15px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.section-dark {
    background-color: #00081f;
    color: #fcfeff;
}

.comparison-table-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table thead th {
    padding: 24px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #000d30;
    background: #f0f4f8;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table thead th:first-child {
    text-align: left;
    background: #000d30;
    color: #fcfeff;
    font-weight: 700;
    width: 35%;
}

.comparison-table thead th.accent {
    background: #72dab5;
    color: #000d30;
    font-weight: 700;
}

.comparison-table thead th small {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.8;
}

.comparison-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #edf2f7;
    color: #1a202c;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: #000d30;
    background: #f8fafc;
}

.comparison-table tbody td.price {
    text-align: center;
    font-weight: 600;
    font-family: 'Inter', monospace;
    font-size: 1.05rem;
}

.comparison-table tbody td.price.ours {
    color: #2d6a4f;
    background: rgba(114, 218, 181, 0.1);
    font-weight: 700;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
    padding: 20px;
    font-size: 1.1rem;
}

.comparison-table tbody tr:last-child td.price.ours {
    background: rgba(114, 218, 181, 0.2);
    color: #1b4332;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        border-radius: 12px;
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .comparison-table thead th:first-child {
        width: 40%;
    }
}

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

.testimonial {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-text);
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    cursor: pointer;
    text-align: left;
}

.faq-question svg {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--color-accent);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--color-text-light);
}

/* ============================================
   AREAS GRID
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-card {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card-content {
    padding: 25px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.about-hero p {
    color: rgba(252, 254, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-content {
    padding: 80px 0;
}

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

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

.value-card {
    text-align: center;
    padding: 30px;
}

.value-card svg {
    color: var(--color-accent);
    margin-bottom: 15px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(114,218,181,0.08)'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(252, 254, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================
   GET OFFER PAGE
   ============================================ */
.offer-page {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.offer-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: top;
}

.offer-page-text {
    
    margin-top: 50px;
}


.offer-page-text h1 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.offer-page-text p {
    color: rgba(252, 254, 255, 0.85);
    margin-bottom: 30px;
}

.offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
}

.offer-benefit svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-primary-dark);
    color: rgba(252, 254, 255, 0.7);
    padding: 60px 0 30px;
}

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

.footer-brand img {
    max-height: 45px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(252, 254, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(252, 254, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-accent);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(114, 218, 181, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(252, 254, 255, 0.5);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
}

.pagination a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

.pagination .current {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-color: var(--color-primary-dark);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(252, 254, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404 {
    text-align: center;
    padding: 120px 0;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--color-accent);
    line-height: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-content,
    .about-grid,
    .contact-grid,
    .offer-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps,
    .testimonials-grid,
    .blog-grid,
    .areas-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary-dark);
        padding: 20px;
        flex-direction: column;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps,
    .testimonials-grid,
    .blog-grid,
    .areas-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .error-404 h1 {
        font-size: 5rem;
    }
}

/* ============================================
   FORM MESSAGES
   ============================================ */
.form-message {
    margin-top: 15px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(114, 218, 181, 0.15);
    color: #1b4332;
    border: 1px solid rgba(114, 218, 181, 0.3);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Button loading state */
button:disabled,
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   MARKETING COUNTDOWN TIMER - 13 DAYS
   ============================================ */
.countdown-banner {
    background: #72dab5;
    padding: 140px 0 40px 0;
    text-align: center;
    margin-top: 0;
}

.countdown-inner {
    max-width: 700px;
    margin: 0 auto;
}

.countdown-title {
    color: #000d30;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-unit {
    background: #ffffff;
    padding: 15px 20px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    color: #000d30;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

.countdown-label {
    color: #000d30;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ============================================
   14 DAYS PROMISE BANNER
   ============================================ */
.promise-banner {
    background: #00081f;
    border-bottom: 1px solid rgba(114, 218, 181, 0.1);
    padding: 30px 0;
}

.promise-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.promise-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(114, 218, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-text h3 {
    color: #fcfeff;
    font-size: 1.3rem;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.promise-text h3 .highlight {
    color: #72dab5;
}

.promise-text p {
    color: rgba(252, 254, 255, 0.75);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   FORM ENHANCEMENTS
   ============================================ */
.form-header {
    margin-bottom: 20px;
}

.form-header h3 {
    margin: 0 0 6px 0;
    font-size: 1.3rem;
}

.form-subtitle {
    color: rgba(0, 13, 48, 0.6);
    font-size: 0.85rem;
    margin: 0 0 12px 0;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(114, 218, 181, 0.15);
    color: #2d6a4f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 16px;
}

.btn-submit .btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-submit .btn-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 0.75rem;
    color: rgba(0, 13, 48, 0.5);
}

.form-footer svg {
    flex-shrink: 0;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.trust-pill {
    background: rgba(114, 218, 181, 0.1);
    color: #72dab5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(114, 218, 181, 0.2);
}

.call-box {
    margin-top: 30px;
    padding: 20px 25px;
    background: rgba(114, 218, 181, 0.08);
    border-radius: 12px;
    border-left: 3px solid #72dab5;
}

.call-box p {
    margin: 0;
    color: rgba(252, 254, 255, 0.9);
    font-size: 0.95rem;
}

.call-box a {
    color: #72dab5;
    font-weight: 700;
    text-decoration: none;
}

.call-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .countdown-banner {
        padding: 120px 15px 25px 15px;
    }
    
    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-unit {
        min-width: 70px;
        padding: 10px 12px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .promise-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .promise-text h3 {
        font-size: 1.1rem;
    }
    
    .trust-pills {
        justify-content: center;
    }
}