/* California-inspired color palette for GarageConversionPlans.com */
:root {
    /* Primary - Warm Earthy Orange */
    --color-primary: #F97316;
    --color-primary-dark: #EA580C;
    --color-primary-light: #FED7AA;
    
    /* Secondary - Soft Sage/Slate */
    --color-secondary: #6B7280;
    --color-secondary-dark: #4B5563;
    --color-secondary-light: #E5E7EB;
    
    /* Background/Neutral - Clean Off-White */
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    
    /* Accent - Charcoal/Slate */
    --text-dark: #1E293B;
    --text-light: #6B7280;
    --color-accent: #1E293B;
    
    /* Highlight - Soft Yellow */
    --color-highlight: #FCD34D;
    --color-highlight-dark: #F59E0B;
    
    /* Utility colors */
    --color-muted: #6B7280;
    --foreground-rgb: 30, 41, 59;
    --background-start-rgb: 255, 255, 255;
    --background-end-rgb: 249, 250, 251;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Base styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

/* Typography - Mobile-First Responsive */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

/* Mobile-first heading sizes - Optimized for small screens */
h1 { font-size: 1.5rem; } /* 24px */
h2 { font-size: 1.25rem; }  /* 20px */
h3 { font-size: 1.125rem; } /* 18px */
h4 { font-size: 1rem; } /* 16px */
h5 { font-size: 0.875rem; }    /* 14px */
h6 { font-size: 0.75rem; } /* 12px */

/* Display classes - much smaller on mobile */
.display-1 { font-size: 1.875rem; line-height: 1.2; }
.display-2 { font-size: 1.75rem; line-height: 1.2; }
.display-3 { font-size: 1.625rem; line-height: 1.2; }
.display-4 { font-size: 1.5rem; line-height: 1.2; }
.display-5 { font-size: 1.375rem; line-height: 1.2; }
.display-6 { font-size: 1.25rem; line-height: 1.2; }

.display-3, .display-4, .display-5 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Lead text - responsive - Smaller on mobile */
.lead {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.4;
}

/* Tablet and up - Responsive scaling */
@media (min-width: 768px) {
    h1 { font-size: 2rem; } /* 32px */
    h2 { font-size: 1.75rem; } /* 28px */
    h3 { font-size: 1.5rem; }  /* 24px */
    h4 { font-size: 1.25rem; } /* 20px */
    h5 { font-size: 1rem; } /* 16px */
    h6 { font-size: 0.875rem; } /* 14px */
    
    .display-1 { font-size: 3rem; }
    .display-2 { font-size: 2.75rem; }
    .display-3 { font-size: 2.5rem; }
    .display-4 { font-size: 2.25rem; }
    .display-5 { font-size: 2rem; }
    .display-6 { font-size: 1.875rem; }
    
    .lead {
        font-size: 1.125rem;
    }
    
    /* Tablet button adjustments */
    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Tablet spacing adjustments */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-4 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 3rem !important;
    }
    
    .mb-4 {
        margin-bottom: 2rem !important;
    }
    
    .gap-4 {
        gap: 1.5rem !important;
    }
    
    .gap-3 {
        gap: 1rem !important;
    }
    
    .card .p-4, .plan-card .p-4, .project-card .p-4, .news-card .p-4 {
        padding: 1.5rem !important;
    }
    
    .hero-section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

/* Desktop and up - Full sizing */
@media (min-width: 1200px) {
    h1 { font-size: 2.25rem; } /* 36px */
    h2 { font-size: 1.875rem; } /* 30px */
    h3 { font-size: 1.5rem; }  /* 24px */
    h4 { font-size: 1.25rem; } /* 20px */
    
    .display-1 { font-size: 3.5rem; }
    .display-2 { font-size: 3rem; }
    .display-3 { font-size: 2.75rem; }
    .display-4 { font-size: 2.5rem; }
    .display-5 { font-size: 2.25rem; }
    .display-6 { font-size: 2rem; }
    
    .lead {
        font-size: 1.25rem;
    }
    
    /* Desktop button adjustments */
    .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .btn-lg {
        font-size: 1.125rem;
        padding: 0.875rem 2rem;
    }
    
    /* Desktop spacing adjustments */
    .py-5 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    
    .py-4 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .mb-5 {
        margin-bottom: 3rem !important;
    }
    
    .gap-4 {
        gap: 1.5rem !important;
    }
    
    .card .p-4, .plan-card .p-4, .project-card .p-4, .news-card .p-4 {
        padding: 2rem !important;
    }
    
    .hero-section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

/* Desktop and up */
@media (min-width: 1200px) {
    h1 { font-size: 2.5rem; } /* 40px */
    h2 { font-size: 2rem; }   /* 32px */
    h3 { font-size: 1.75rem; } /* 28px */
    
    .display-1 { font-size: 4rem; }
    .display-2 { font-size: 3.5rem; }
    .display-3 { font-size: 3rem; }
    .display-4 { font-size: 2.75rem; }
    .display-5 { font-size: 2.5rem; }
}

/* Mobile Typography Overrides for Common Elements */
@media (max-width: 767px) {
    /* Hero sections */
    .hero-title, 
    .hero h1,
    .hero .display-4,
    .hero .display-5 {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
    }
    
    /* Section titles */
    .section-title,
    section h2,
    .row h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Card titles */
    .card-title,
    .blog-title,
    .team-member h5,
    .service-card h4 {
        font-size: 1.125rem !important;
    }
    
    /* Statistics and numbers */
    .stat-number,
    .counter-number {
        font-size: 2rem !important;
    }
    
    /* General text sizing */
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .small, small {
        font-size: 0.8rem;
    }
    
    /* Button text */
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Specific homepage elements */
    .hero .lead {
        font-size: 1rem !important;
    }
    
    /* Statistics section */
    .stats-section .h4 {
        font-size: 1.125rem !important;
    }
    
    /* CTA sections */
    .cta-section h2,
    .cta-section h3 {
        font-size: 1.375rem !important;
    }
    
    /* Footer adjustments */
    .footer h5,
    .footer h6 {
        font-size: 1rem !important;
    }
    
    /* Navigation adjustments */
    .navbar-nav .nav-link {
        font-size: 0.9rem !important;
    }
    
    /* About page team section */
    .team-member .text-muted {
        font-size: 0.85rem !important;
    }
    
    /* Gallery and project cards */
    .gallery-item .overlay h5,
    .project-card h5 {
        font-size: 1rem !important;
    }
    
    /* Blog page specific */
    .blog-excerpt {
        font-size: 0.9rem !important;
    }
    
    /* Service areas page */
    .service-area-card h4 {
        font-size: 1.125rem !important;
    }
}

/* Navigation - SNAPADU Style */
.navbar {
    background-color: var(--bg-white) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-nav {
    gap: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #4B5563 !important;
    transition: color 0.3s ease;
    padding: 0.5rem 0 !important;
    font-size: 0.95rem;
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary) !important;
}

.navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.dropdown-menu {
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #4B5563;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #F9FAFB;
    color: var(--color-primary);
}

/* Right side phone and button styling */
.navbar .text-muted {
    font-size: 0.8rem;
    color: #9CA3AF !important;
}

.navbar a[href^="tel:"] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4B5563 !important;
}

.navbar .btn-primary {
    background-color: #10B981;
    border-color: #10B981;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
}

.navbar .btn-primary:hover {
    background-color: #059669;
    border-color: #059669;
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 0.95rem;
}

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

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

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

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://kryqqikeihgrctvllqpz.supabase.co/storage/v1/object/public/cdn/pexels-expect-best-79873-323772.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.hero-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
}

.hero-content .lead {
    color: #6b7280 !important;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-align: left;
    font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
}

.hero-content {
    text-align: center;
    padding: 2rem;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Benefits Section */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.icon-circle {
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Process Steps */
.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Cards */
.card {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

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

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modern Button Styles */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Service Area Cards */
.service-area-card {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* FAQ Accordion Styling */
.accordion-item {
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--bg-white);
    border: none;
    border-radius: 1rem !important;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--bg-white);
}

.accordion-collapse {
    border-top: 1px solid var(--border-color);
}

/* Enhanced Sections */
section {
    position: relative;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: 3rem auto;
    width: 100px;
}

/* Logo styling - Fixed size */
.navbar-brand img {
    height: 48px;
    max-height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Improved spacing */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Better text spacing */
.mb-5 {
    margin-bottom: 3rem !important;
}

/* Enhanced borders */
.rounded-3 {
    border-radius: 1rem !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

/* Footer Styling */
footer {
    background-color: var(--color-accent) !important;
    color: white !important;
}

footer h5, footer h6 {
    color: white !important;
}

footer p, footer li {
    color: white !important;
}

footer a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-highlight) !important;
    text-decoration: underline;
}

footer .social-links a:hover {
    color: var(--color-highlight) !important;
    transform: translateY(-2px);
}

/* Gallery Styling */
.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.image-container {
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 115, 22, 0.0);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1rem;
    transition: background-color 0.3s ease;
    opacity: 0;
}

.image-container:hover .image-overlay {
    background: rgba(249, 115, 22, 0.8);
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.image-container:hover .overlay-content {
    transform: translateY(0);
}

/* Process Steps Enhancement */
.step-icon-circle {
    transition: all 0.3s ease;
}

.process-step:hover .step-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

/* Gallery Navigation Styling */
.gallery-nav-btn {
    background-color: transparent !important;
    border: 2px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.5rem !important;
    margin: 0 0.25rem !important;
    transition: all 0.3s ease !important;
}

.gallery-nav-btn:hover {
    background-color: var(--color-primary-light) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.gallery-nav-btn.active,
.gallery-nav-btn.active:focus,
.gallery-nav-btn.active:hover {
    background-color: var(--color-primary) !important;
    color: white !important;
    border-color: var(--color-primary) !important;
}

/* Bootstrap pill nav override for active state */
.nav-pills .nav-link.active,
.nav-pills .nav-link.active:focus,
.nav-pills .nav-link.active:hover {
    background-color: var(--color-primary) !important;
    color: white !important;
    border-color: var(--color-primary) !important;
}

/* Gallery Title Styling */
.gallery h1, .gallery h2, .gallery h3, .gallery h4, .gallery h5, .gallery h6 {
    color: var(--color-primary) !important;
}

/* Remove default blue colors */
.gallery a {
    color: var(--color-primary) !important;
    text-decoration: none;
}

.gallery a:hover {
    color: var(--color-primary-dark) !important;
    text-decoration: underline;
}

.gallery .btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

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

/* Service Areas Styling */
.city-card {
    transition: all 0.3s ease;
    border: none !important;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15) !important;
}

.city-card .card-img-top {
    transition: all 0.3s ease;
}

.city-card:hover .card-img-top {
    transform: scale(1.02);
}

.city-card .text-success {
    color: var(--color-primary) !important;
}

.city-card .btn-outline-secondary {
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}

.city-card .btn-outline-secondary:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: white !important;
}

/* Service Areas responsive layout */
@media (max-width: 768px) {
    .city-card .d-flex {
        flex-direction: column !important;
        gap: 0.5rem;
    }
    
    .city-card .btn-group-sm {
        width: 100%;
    }
    
    .city-card .btn-group-sm .btn {
        width: 48%;
    }
}

/* Modern Footer Styling */
.modern-footer .footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.5;
}

.modern-footer .footer-link:hover {
    color: #F97316;
    text-decoration: none;
}

.modern-footer .social-link:hover {
    color: #F97316 !important;
    transform: translateY(-2px);
}

.modern-footer .contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.modern-footer .footer-heading {
    margin-bottom: 1rem !important;
}

.modern-footer .footer-links li {
    margin-bottom: 0.5rem;
}

/* Footer Responsive Design */
@media (max-width: 991px) {
    .modern-footer .footer-main {
        padding: 3rem 0 2rem !important;
    }
    
    .modern-footer .col-lg-5 {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .modern-footer .social-links {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .modern-footer .footer-main {
        padding: 2.5rem 0 1.5rem !important;
    }
    
    .modern-footer .contact-item {
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }
    
    .modern-footer .d-flex.gap-4 {
        flex-direction: column;
        gap: 1rem !important;
        align-items: center;
    }
    
    .modern-footer .footer-heading {
        text-align: center;
        margin-bottom: 1.5rem !important;
    }
    
    .modern-footer .footer-links {
        text-align: center;
    }
    
    .modern-footer .footer-links li {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 576px) {
    .modern-footer .footer-main {
        padding: 2rem 0 1rem !important;
    }
    
    .modern-footer .social-links a {
        padding: 0.5rem;
        margin: 0 0.25rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 32px;
    }
}
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Cards */
.card, .benefit-card, .service-card, .testimonial-card, .pricing-card {
    border: none;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover, .benefit-card:hover, .service-card:hover, .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-card {
    text-align: center;
    height: 100%;
}

.service-card {
    height: 100%;
    padding: 2rem 1.5rem;
}

.service-card i {
    display: block;
    margin-bottom: 1rem;
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    z-index: 10;
}

.pricing-header {
    border-radius: 1rem 1rem 0 0;
}

.features-list li {
    padding: 0.25rem 0;
}

/* Testimonials */
.testimonial-card {
    height: 100%;
}

.testimonial-avatar {
    font-size: 1.25rem;
    font-weight: 600;
}

.stars {
    color: var(--accent-color);
}

/* Gallery */
.gallery-item {
    margin-bottom: 2rem;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.image-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.before-after-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

/* Forms */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content-center;
    font-weight: 600;
    margin-right: 1rem;
}

.step-title {
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

/* Progress Steps */
.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-step {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step .step-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content-center;
    font-weight: 600;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background-color: var(--primary-color);
    color: white;
}

/* Process Timeline */
.process-timeline .step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.process-step {
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: 100px;
    background: var(--border-color);
    z-index: 1;
}

/* FAQ */
.accordion-button {
    background-color: var(--bg-light);
    border: none;
    font-weight: 500;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    background-color: #1f2937 !important;
}

footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Focus States */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    border-radius: 0.5rem;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: none !important;
    }
}


/* SNAPADU Style Additions */
/* Hero Section - SNAPADU Style */
.hero-section {
    background-color: #ffffff;
}

.hero-content {
    padding-right: 2rem;
}

.hero-image img {
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Stats Section */
.stats-section {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stats-section h2 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Projects Section */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image img {
    transition: transform 0.3s ease;
}

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

.project-specs {
    font-weight: 500;
}

/* Review Platform Cards */
.review-platform {
    transition: transform 0.3s ease;
}

.review-platform:hover {
    transform: translateY(-3px);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Typography Improvements */
.display-4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.lead {
    font-weight: 400;
    line-height: 1.6;
}

/* Button Improvements */
.btn-outline-primary {
    border-width: 1px;
    font-weight: 500;
}

.btn-outline-secondary {
    border-width: 1px;
    font-weight: 500;
    color: #6b7280;
    border-color: #6b7280;
}

.btn-outline-secondary:hover {
    background-color: #6b7280;
    border-color: #6b7280;
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .stats-section .col-md-4 {
        margin-bottom: 2rem;
    }
}

/* Consistent Orange Color Theme - Matching Navbar Contact Button */
:root {
    --primary-orange: #F97316;
    --primary-orange-dark: #EA580C;
    --primary-orange-light: #FB923C;
    --primary-orange-hover: #EA580C;
}

/* Override all primary colors to match navbar button */
.btn-primary {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-orange-hover) !important;
    border-color: var(--primary-orange-hover) !important;
    color: white !important;
}

.btn-outline-primary {
    color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
}

/* Text primary colors */
.text-primary {
    color: var(--primary-orange) !important;
}

/* Background primary colors */
.bg-primary {
    background-color: var(--primary-orange) !important;
}

/* Link colors */
a.text-primary {
    color: var(--primary-orange) !important;
}

a.text-primary:hover {
    color: var(--primary-orange-hover) !important;
}

/* Stats section numbers */
.stats-section h2 {
    color: var(--primary-orange) !important;
}

/* Service icons */
.service-icon {
    color: var(--primary-orange) !important;
}

/* CTA sections */
.cta-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%) !important;
}

/* Gallery hover effects */
.gallery-item:hover .overlay {
    background-color: rgba(249, 115, 22, 0.9) !important;
}

/* Progress bars */
.progress-bar {
    background-color: var(--primary-orange) !important;
}

/* Badges */
.badge-primary {
    background-color: var(--primary-orange) !important;
}

/* Form focus states */
.form-control:focus {
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25) !important;
}

/* Pagination */
.page-link {
    color: var(--primary-orange) !important;
}

.page-item.active .page-link {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

/* Dropdown active items */
.dropdown-item:active {
    background-color: var(--primary-orange) !important;
}

/* Navbar brand and links hover */
.navbar-brand:hover {
    color: var(--primary-orange) !important;
}

/* Footer links */
.footer-link:hover {
    color: var(--primary-orange) !important;
}

/* Quote form step indicators */
.step-indicator.active {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

/* Testimonial stars */
.stars {
    color: var(--primary-orange) !important;
}

/* Gallery category buttons */
.gallery-filter.active {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
}

/* Process step numbers */
.process-step-number {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

/* Contact form submit button */
.contact-form .btn-primary {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

/* Service area cards hover */
.city-card:hover {
    border-color: var(--primary-orange) !important;
}

/* FAQ accordion headers */
.accordion-button:not(.collapsed) {
    background-color: rgba(249, 115, 22, 0.1) !important;
    color: var(--primary-orange) !important;
}

/* Breadcrumb active */
.breadcrumb-item.active {
    color: var(--primary-orange) !important;
}

/* Alert primary */
.alert-primary {
    background-color: rgba(249, 115, 22, 0.1) !important;
    border-color: var(--primary-orange) !important;
    color: var(--primary-orange-dark) !important;
}

/* Modal header */
.modal-header {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

/* Spinner/loader */
.spinner-border-primary {
    color: var(--primary-orange) !important;
}

/* Custom checkbox/radio */
.form-check-input:checked {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
}

/* Range slider */
.form-range::-webkit-slider-thumb {
    background-color: var(--primary-orange) !important;
}

.form-range::-moz-range-thumb {
    background-color: var(--primary-orange) !important;
}

/* Scroll to top button */
.scroll-to-top {
    background-color: var(--primary-orange) !important;
}

.scroll-to-top:hover {
    background-color: var(--primary-orange-hover) !important;
}

/* Gallery Navigation Tabs - Consistent Orange */
.gallery-nav-btn {
    color: #6b7280 !important;
    border: 1px solid #e5e7eb !important;
    background-color: white !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem !important;
    font-weight: 500 !important;
}

.gallery-nav-btn.active {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
}

.gallery-nav-btn:hover {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
}

/* Nav pills override */
.nav-pills .nav-link.active {
    background-color: var(--primary-orange) !important;
}

.nav-pills .nav-link {
    color: #6b7280 !important;
}

.nav-pills .nav-link:hover {
    background-color: var(--primary-orange) !important;
    color: white !important;
}

/* Improved CTA Section Styling */
.cta-content {
    animation: fadeInLeft 0.8s ease-out;
}

.cta-image {
    animation: fadeInRight 0.8s ease-out;
}

.icon-wrapper {
    transition: transform 0.3s ease;
}

.cta-content:hover .icon-wrapper {
    transform: scale(1.1);
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsiveness for new CTA */
@media (max-width: 768px) {
    .cta-content {
        text-align: center;
        padding-right: 0;
    }
    
    .d-flex.gap-3 {
        justify-content: center;
    }
    
    .d-flex.gap-3 .btn {
        flex: 1;
        max-width: 250px;
    }
}

/* Team Section Styling */
.team-member {
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-image img {
    transition: transform 0.3s ease;
    border: 3px solid #f8f9fa;
}

.team-member:hover .team-image img {
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

.social-links a {
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: var(--primary-orange) !important;
}

.join-team-cta {
    transition: all 0.3s ease;
}

.join-team-cta:hover {
    background-color: #f3f4f6 !important;
}

/* Why Choose Cards Styling */
.why-choose-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb !important;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    border-color: var(--primary-orange) !important;
}

.why-choose-card .icon-wrapper {
    transition: transform 0.3s ease;
}

.why-choose-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.why-choose-card i {
    color: var(--primary-orange) !important;
}

/* Blog Page - Remove all shadows */
.blog-card {
    box-shadow: none !important;
}

.blog-card img,
.blog-image img {
    box-shadow: none !important;
    border: none !important;
}

.blog-card:hover {
    box-shadow: none !important;
    transform: none;
}

/* Process page animations and hover effects */
.process-card {
    transition: all 0.3s ease !important;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2) !important;
}

.process-card .icon-circle {
    transition: all 0.3s ease;
}

.process-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.timeline-phase {
    transition: all 0.3s ease !important;
}

.timeline-phase:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.25) !important;
}

.advantage-card {
    transition: all 0.3s ease !important;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15) !important;
}

.advantage-card:hover .icon-wrapper {
    transform: scale(1.05) rotate(-5deg);
}

.icon-wrapper {
    transition: all 0.3s ease;
}

/* CTA button hover effects */
.process-cta .btn:hover {
    transform: translateY(-3px);
}

.process-cta .btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

/* Scroll animations for process cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card,
.timeline-phase,
.advantage-card {
    animation: fadeInUp 0.6s ease-out;
}

.process-card:nth-child(2) {
    animation-delay: 0.1s;
}

.process-card:nth-child(3) {
    animation-delay: 0.2s;
}

.timeline-phase:nth-child(2) {
    animation-delay: 0.1s;
}

.timeline-phase:nth-child(3) {
    animation-delay: 0.2s;
}

.timeline-phase:nth-child(4) {
    animation-delay: 0.3s;
}

/* Testimonials page animations */
.modern-testimonial-card {
    transition: all 0.3s ease !important;
}

.modern-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.testimonials-cta .btn:hover {
    transform: translateY(-3px);
}

.review-form-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4) !important;
}

.testimonials-hero .reviews-badge {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-testimonial-card {
    animation: testimonialFadeIn 0.6s ease-out;
}

.modern-testimonial-card:nth-child(2) {
    animation-delay: 0.1s;
}

.modern-testimonial-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Pagination styling */
.pagination-container {
    transition: all 0.3s ease;
}

.pagination-container:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.15) !important;
}

.pagination .page-link {
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    transform: translateY(-2px);
    background-color: rgba(249, 115, 22, 0.1) !important;
    color: #F97316 !important;
}

/* Learn More button hover fix */
.learn-more-btn:hover {
    background-color: white !important;
    border-color: white !important;
    color: #1e293b !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

.learn-more-btn:focus {
    background-color: white !important;
    border-color: white !important;
    color: #1e293b !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #F97316, #EA580C) !important;
    border-color: #F97316 !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    color: white !important;
}

/* Review loading animation */
.testimonials-loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Area Page Styling */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

.service-card .service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* FAQ Styling */
.faq-question:hover {
    background-color: #f8fafc !important;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: #10b981 !important;
}

.faq-question[aria-expanded="true"] .faq-icon i {
    transform: rotate(90deg);
}

/* CTA Section Animations */
.cta-section .btn:hover {
    transform: translateY(-3px);
}

.trust-item {
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.25) !important;
}

/* Breadcrumb hover effects */
.breadcrumb a:hover {
    color: #F97316 !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .service-area h1 {
        font-size: 1.75rem !important;
    }
    
    .cta-section {
        padding: 2rem 1rem !important;
    }
    
    .trust-indicators .col-md-4 {
        margin-bottom: 1rem;
    }
}

/* Homepage Specific Styles */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.floating-review {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.process-step:hover .step-icon > div {
    transform: scale(1.1);
}

.process-step .step-icon > div {
    transition: transform 0.3s ease;
}

.review-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-badge {
    transition: all 0.3s ease;
}

/* CTA button hover effects */
.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;
}

/* Blog Card Hover Effects */
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

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

.blog-card:hover .blog-title a {
    color: #F97316 !important;
}

/* Blog Post Content Styling */
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: #1E293B !important;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.post-content h2 {
    font-size: 2rem;
    color: #F97316 !important;
    border-bottom: 2px solid #FED7AA;
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content p {
    color: #1E293B !important;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    color: #1E293B !important;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.post-content strong {
    color: #F97316 !important;
    font-weight: 700;
}

.post-content a {
    color: #F97316 !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: #EA580C !important;
}

.post-content blockquote {
    background: #F9FAFB;
    border-left: 4px solid #F97316;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #64748B !important;
}

.post-content code {
    background: #F1F5F9;
    color: #F97316 !important;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: #1E293B;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-content pre code {
    background: none;
    color: white;
    padding: 0;
}

/* Sidebar Hover Effects */
.related-post a:hover {
    color: #F97316 !important;
}

.topics .badge:hover {
    background: #F97316 !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Hero animation effects */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.1;
    }
}

.hero-main-image {
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.animation-tool {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.animation-tool:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Custom ADU Section Effects */
.custom-content-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.floating-element {
    transition: transform 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.1);
}

/* New Sections Styling */
.sustainability-section .sustainability-image img {
    transition: transform 0.3s ease;
}

.sustainability-section .sustainability-image img:hover {
    transform: scale(1.02);
}

.reduce-costs-section .construction-image img {
    transition: transform 0.3s ease;
}

.reduce-costs-section .construction-image img:hover {
    transform: scale(1.02);
}

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item .icon-circle {
    transition: all 0.3s ease;
}

.feature-item:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-card .news-image img {
    transition: transform 0.3s ease;
}

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

/* Floor Plans Filter Section Responsive Design */
.filter-card {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    border: 1px solid #E5E7EB;
}

.filter-card .form-select {
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-card .form-select:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.filter-card .form-label {
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .filter-card {
        padding: 1.5rem !important;
    }
    
    .filter-card .row {
        gap: 1rem !important;
    }
    
    .filter-card .form-select {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .filter-card .btn {
        padding: 1rem 2rem !important;
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1199px) {
    .filter-card .btn {
        margin-top: 1.85rem;
    }
}

/* Enhanced Final CTA Section */
.final-cta-section .cta-content {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.final-cta-section .cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.final-cta-section .success-stats .stat-item {
    transition: transform 0.3s ease;
}

.final-cta-section .success-stats .stat-item:hover {
    transform: scale(1.05);
}

.final-cta-section .btn {
    transition: all 0.3s ease;
}

.final-cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile responsiveness for final CTA */
@media (max-width: 768px) {
    .final-cta-section .success-stats {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .final-cta-section .success-stats .stat-item {
        min-width: 120px;
    }
    
    .final-cta-section .cta-content {
        padding: 2rem !important;
    }
    
    .final-cta-section .floating-element {
        display: none;
    }
}

/* Mobile-First Button Optimizations */
.btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.btn-lg {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
}

/* Global CTA Button Centering - Applied to all pages */
.cta-section .cta-buttons,
.cta-buttons,
.hero-buttons,
section .cta-buttons,
.final-cta .cta-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Mobile CTA button centering */
@media (max-width: 767px) {
    .cta-section .cta-buttons,
    .cta-buttons,
    .hero-buttons,
    section .cta-buttons,
    .final-cta .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    
    .cta-section .btn,
    .cta-buttons .btn,
    .hero-buttons .btn,
    section .cta-buttons .btn {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
}

/* Tablet and desktop CTA button centering */
@media (min-width: 768px) {
    .cta-section .cta-buttons,
    .cta-buttons,
    .hero-buttons,
    section .cta-buttons,
    .final-cta .cta-buttons {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1.5rem !important;
    }
    
    .cta-section .btn,
    .cta-buttons .btn,
    .hero-buttons .btn,
    section .cta-buttons .btn {
        width: auto !important;
        min-width: 180px !important;
        margin: 0 !important;
    }
}

/* Social Media Icons Styling */
.social-icon:hover {
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4) !important;
    background-color: #EA580C !important;
}

.social-icon:active {
    transform: translateY(0) scale(1.05) !important;
}

/* Mobile responsive social media icons */
@media (max-width: 767px) {
    .footer-social {
        padding: 1.5rem 0 !important;
    }
    
    .social-icons {
        gap: 1rem !important;
    }
    
    .social-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .social-icon i {
        font-size: 1.1rem !important;
    }
}

.btn-sm {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

/* Mobile spacing optimizations */
.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 2rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.gap-4 {
    gap: 1rem !important;
}

.gap-3 {
    gap: 0.75rem !important;
}

/* Mobile card and component adjustments */
.card, .plan-card, .project-card, .news-card {
    margin-bottom: 1rem;
}

.card .p-4, .plan-card .p-4, .project-card .p-4, .news-card .p-4 {
    padding: 1rem !important;
}

/* Hero section mobile optimizations */
.hero-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.hero-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Mobile Image and Icon Optimizations */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Mobile-specific image scaling */
@media (max-width: 767px) {
    .hero-main-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .animation-tool {
        width: 40px !important;
        height: 40px !important;
    }
    
    .animation-tool i {
        font-size: 1rem !important;
    }
    
    .stats-card {
        padding: 0.75rem !important;
        font-size: 0.875rem;
    }
    
    .project-card img, .plan-card img, .news-card img {
        height: 180px !important;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .filter-card {
        padding: 1rem !important;
    }
    
    .form-select {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
}

/* Additional mobile typography */
@media (max-width: 767px) {
    p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .text-muted {
        font-size: 0.8rem;
    }
    
    small {
        font-size: 0.75rem;
    }
}

/* Enhanced Mobile Navigation */
.navbar {
    padding: 0.5rem 0;
    min-height: 60px;
}

.navbar-brand {
    margin-right: 0;
}

.navbar-toggler {
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    border: none !important;
    box-shadow: none !important;
}

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

.navbar-nav .nav-link {
    transition: color 0.3s ease;
    border-radius: 6px;
    margin: 0.125rem 0;
}

.navbar-nav .nav-link:hover {
    color: #F97316 !important;
    background-color: rgba(249, 115, 22, 0.1);
}

.dropdown-menu {
    margin-top: 0.5rem;
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

/* Mobile-specific navbar improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        border-top: 1px solid #E5E7EB;
    }
    
    .navbar-nav {
        text-align: center;
        gap: 0.125rem;
    }
    
    .navbar-nav .nav-item {
        margin: 0.125rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        font-weight: 500;
        border-radius: 6px;
        margin: 0;
    }
    
    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
        position: static !important;
        transform: none !important;
        text-align: center;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        color: #6B7280;
    }
    
    .navbar .btn {
        margin-top: 1rem;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Desktop navbar enhancements */
@media (min-width: 992px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0 0.5rem;
        padding: 0.75rem 1.25rem !important;
    }
    
    .navbar-nav .nav-link:hover {
        padding: 0.75rem 1.75rem !important;
        transition: all 0.3s ease;
    }
    
    .navbar .btn:hover {
        background: #EA580C !important;
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    }
}

/* CTA Section mobile optimizations */
@media (max-width: 768px) {
    .final-cta-section { 
        padding-top: 1.5rem !important; 
        padding-bottom: 1.5rem !important; 
    }
    .final-cta-section .cta-content { 
        padding: 1rem !important; 
    }
    .final-cta-section .success-stats { 
        margin-bottom: 1rem !important; 
    }
    .final-cta-section .cta-buttons {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    .final-cta-section .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* Logo responsive adjustments */
@media (max-width: 576px) {
    .logo-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .logo-icon i {
        font-size: 0.875rem !important;
    }
    
    .navbar-brand span {
        font-size: 0.8rem !important;
    }
}
