/**
 * Prime House Depot - Main Stylesheet
 * ===================================
 */

/* =====================================================
   CSS Variables / Custom Properties
   ===================================================== */
:root {
    /* Primary Colors */
    --primary-blue: #1a4b8c;
    --primary-blue-dark: #143a6d;
    --secondary-blue: #2d7dd2;
    --accent-orange: #f7941d;
    --accent-orange-dark: #e07d0a;
    
    /* Neutral Colors */
    --dark-navy: #0d2137;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --light-gray: #f5f7fa;
    --border-gray: #e0e5eb;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-orange);
}

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

/* =====================================================
   Utility Classes
   ===================================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.text-primary-blue { color: var(--primary-blue); }
.text-accent-orange { color: var(--accent-orange); }
.text-muted { color: var(--text-muted); }

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

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

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

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

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

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

/* =====================================================
   Top Bar
   ===================================================== */
.top-bar {
    background-color: var(--dark-navy);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-info {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-info span {
    margin-right: 25px;
}

.top-bar-info i {
    color: var(--accent-orange);
    margin-right: 6px;
}

.top-bar-contact a {
    color: var(--white);
    font-weight: 500;
}

.top-bar-contact a:hover {
    color: var(--accent-orange);
}

.top-bar-contact i {
    color: var(--accent-orange);
    margin-right: 6px;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.navbar.scrolled .navbar-brand .logo {
    height: 50px;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-navy);
    padding: 10px 18px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--accent-orange);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 10px 0;
}

.dropdown-item {
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition-fast);
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--accent-orange);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

.nav-cta {
    font-size: 0.85rem !important;
    padding: 10px 20px !important;
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* Brand Text */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-blue);
}

.footer-brand-name {
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Hide brand text on small screens if logo is wide */
@media (max-width: 400px) {
    .brand-text {
        display: none;
    }
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent-orange);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.hero-feature span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* =====================================================
   Categories Section
   ===================================================== */
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    transition: var(--transition-normal);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    transform: scale(1.1);
}

.category-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-card h4 {
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =====================================================
   Why Choose Us Section
   ===================================================== */
.why-card {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 75, 140, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    transition: var(--transition-normal);
}

.why-card:hover .why-icon {
    background-color: var(--accent-orange);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h4 {
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =====================================================
   Locations Section
   ===================================================== */
.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

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

.location-map {
    height: 200px;
    background-color: var(--light-gray);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    padding: 30px;
}

.location-info h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info h4 i {
    color: var(--accent-orange);
}

.location-details {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.location-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.location-details li i {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.location-details li a {
    color: var(--text-dark);
}

.location-details li a:hover {
    color: var(--accent-orange);
}

/* =====================================================
   Deals/Offers Section
   ===================================================== */
.deals-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    position: relative;
}

.deals-section .section-header h2,
.deals-section .section-header p {
    color: var(--white);
}

.deals-section .section-header h2::after {
    background: var(--accent-orange);
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

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

.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
}

.deal-image {
    height: 180px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-image i {
    font-size: 4rem;
    color: var(--border-gray);
}

.deal-content {
    padding: 25px;
}

.deal-content h4 {
    margin-bottom: 12px;
}

.deal-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.deal-dates {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.deal-dates i {
    color: var(--accent-orange);
    margin-right: 5px;
}

/* =====================================================
   Financing Section
   ===================================================== */
.financing-section {
    background-color: var(--light-gray);
}

.financing-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.financing-box h3 {
    margin-bottom: 15px;
}

.financing-box p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

.financing-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.financing-partners img {
    height: 50px;
    width: auto;
    filter: grayscale(0.3);
    transition: var(--transition-normal);
}

.financing-partners img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    padding: 60px 0;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 25px;
}

/* =====================================================
   About Page Styles
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    margin-top: 20px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--accent-orange);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-content {
    padding: var(--section-padding) 0;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
}

.values-grid {
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-content h5 {
    margin-bottom: 8px;
}

.value-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* =====================================================
   Products Page Styles
   ===================================================== */
.product-category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-category-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-image i {
    font-size: 5rem;
    color: var(--white);
}

.product-category-content {
    padding: 30px;
}

.product-category-content h4 {
    margin-bottom: 12px;
}

.product-category-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.more-products {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
}

.more-products h3 {
    margin-bottom: 15px;
}

.more-products p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 25px;
}

.more-products-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.more-products-list span {
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-dark);
}

/* =====================================================
   Location Page Styles
   ===================================================== */
.location-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    padding: 60px 0;
}

.location-hero-content {
    color: var(--white);
}

.location-hero-content h1 {
    color: var(--white);
    margin-bottom: 25px;
}

.location-hero-content h1 i {
    color: var(--accent-orange);
    margin-right: 10px;
}

.location-hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.location-hero-info .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-hero-info .info-item i {
    font-size: 1.3rem;
    color: var(--accent-orange);
}

.location-hero-info .info-item a {
    color: var(--white);
}

.location-hero-info .info-item a:hover {
    color: var(--accent-orange);
}

.location-map-large {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.location-map-large iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-gallery {
    padding: var(--section-padding) 0;
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--border-gray);
}

/* =====================================================
   Contact Page Styles
   ===================================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

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

.contact-form-card h3 {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 75, 140, 0.1);
}

.captcha-box {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.captcha-question {
    font-weight: 600;
    color: var(--dark-navy);
    white-space: nowrap;
}

.captcha-input {
    max-width: 120px;
}

.contact-sidebar h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.contact-info-card h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.contact-info-card h5 i {
    color: var(--accent-orange);
}

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

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list li i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.contact-info-list li a {
    color: var(--text-dark);
}

.contact-info-list li a:hover {
    color: var(--accent-orange);
}

/* Alert Messages */
.alert {
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    margin-bottom: 25px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

/* =====================================================
   Offers Page Styles
   ===================================================== */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.no-deals-message {
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.no-deals-message i {
    font-size: 4rem;
    color: var(--border-gray);
    margin-bottom: 20px;
}

.no-deals-message h4 {
    margin-bottom: 10px;
}

.no-deals-message p {
    color: var(--text-muted);
}

/* =====================================================
   Footer Styles
   ===================================================== */
.footer {
    background-color: var(--dark-navy);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-financing span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.financing-logos {
    display: flex;
    gap: 15px;
}

.financing-logos img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
}

.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);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

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

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

.footer-contact li i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--accent-orange);
}

.footer-location-link {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-location-link:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-tagline {
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1199px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        padding: 20px 0;
        background: var(--white);
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
    }
    
    .navbar-nav .nav-link::after {
        left: 0;
        right: auto;
        width: 0;
    }
    
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 30px;
    }
    
    .nav-cta {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .location-map-large {
        margin-top: 0;
        height: 350px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .top-bar {
        display: none;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 25px;
    }
    
    .captcha-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .captcha-input {
        max-width: 100%;
        width: 100%;
    }
    
    .location-hero-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .financing-box {
        padding: 30px 20px;
    }
    
    .financing-partners {
        gap: 25px;
    }
    
    .financing-partners img {
        height: 40px;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .more-products {
        padding: 30px 20px;
    }
    
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
