/* File: /public/assets/css/style.css */
/* Custom CSS for SOLIDTRACK TRANSPORT LIMITED */

/* ========================================
   Root Variables
   ======================================== */
:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --primary-light: #cfe2ff;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --transition: all 0.3s ease;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
}

/* ========================================
   Base Styles
   ======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

.service-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* ========================================
   Topbar
   ======================================== */
.topbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1020;
}

.topbar-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.topbar-link:hover {
    color: var(--primary-light);
}

.topbar-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar i {
    font-size: 1.1rem;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    transition: var(--transition);
    top: 0;
    z-index: 1010;
}

.navbar.navbar-scrolled {
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-color) !important;
    display: flex;
    align-items: center;
}

.brand-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    padding: 0.75rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

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

.btn-quote {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%),
        url('/assets/img/banner.jpeg') center center / cover no-repeat;
    padding: 140px 0 120px;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

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

.brand-logo{
    width: 170px;
}

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

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
    margin: 2rem auto 0;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.98;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background: #fff;
    color: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}



@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 80px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    /* Hide nav link underline on mobile/tablet */
    .nav-link::after {
        display: none !important;
    }
    
    /* Compact topbar on tablets */
    .topbar {
        font-size: 0.85rem;
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   Trust Badges
   ======================================== */
.trust-badges {
    background: transparent;
    padding: 2rem 0;
    position: relative;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    border: 2px solid #f0f0f0;
}

.trust-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-badge:hover::before {
    opacity: 1;
}

.trust-badge:hover {
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
    border-color: transparent;
}

.trust-badge i {
    font-size: 1.75rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge:hover i {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.trust-badge .text-success {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(25, 135, 84, 0.15) 100%);
    color: #198754;
}

.trust-badge:hover .text-success {
    background: linear-gradient(135deg, #198754 0%, #14623b 100%);
    color: #fff;
}

.trust-badge .text-primary {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #0d6efd;
}

.trust-badge:hover .text-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: #fff;
}

.trust-badge span {
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.trust-badge:hover span {
    color: var(--primary-color);
}

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

.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
     padding-top: 13px;
}

/* Services Preview Section */
.services-preview {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   Service Cards
   ======================================== */
.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
    border-color: var(--primary-light);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.75rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
}

.service-card:hover .service-icon::after {
    opacity: 0.6;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.service-link:hover::after {
    width: calc(100% - 30px);
}

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

.service-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   Features / Why Choose Us
   ======================================== */
.feature-item {
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.15);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #fff;
    margin: 0 auto 1.75rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-item:hover .feature-icon::after {
    opacity: 0.6;
}

.feature-item h4 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.feature-item:hover h4 {
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

.bg-primary .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
}

.bg-success .feature-icon {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
}

.bg-warning .feature-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.bg-info .feature-icon {
    background: linear-gradient(135deg, #0dcaf0 0%, #0d6efd 100%);
}

.bg-warning .feature-icon {
    background: linear-gradient(135deg, #f09819 0%, #edde5d 100%);
}

.bg-info .feature-icon {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.testimonial-rating {
    color: var(--warning-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info strong {
    display: block;
    color: var(--dark-color);
    font-weight: 700;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0 40px;
    color: #fff;
    position: relative;
    text-align: center;
}

.page-header .breadcrumb {
    justify-content: center;
}

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

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem;
    background: #fff;
}

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

.faq-accordion .accordion-body {
    padding: 1.5rem 1.25rem;
    color: var(--text-muted);
}

/* ========================================
   About Page
   ======================================== */
.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.highlight-item i {
    font-size: 1.25rem;
}

.mission-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.15);
    border-color: var(--primary-light);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.75rem;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mission-icon i {
    font-size: 2.25rem;
    line-height: 1;
}

.mission-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(15px);
}

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

.mission-card:hover .mission-icon::after {
    opacity: 0.5;
}

.mission-card h4 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.mission-card:hover h4 {
    color: var(--primary-color);
}

.mission-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: #fff;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15);
    opacity: 1;
}

.stat-number {
    font-size: 2.55rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.3;
}

/* ========================================
   Sustainability Section
   ======================================== */
.sustainability-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sustainability-point:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.point-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--light-color);
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.point-icon i {
    font-size: 2rem;
    line-height: 1;
}
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sustainability-point:hover .point-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Background gradients for different icon types */
.point-icon.icon-success {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.15) 0%, rgba(32, 201, 151, 0.15) 100%);
}

.point-icon.icon-primary {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.point-icon.icon-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
}

/* Icon colors with stronger visibility */
.point-icon .icon-success,
.point-icon .text-success {
    color: #198754;
    filter: drop-shadow(0 2px 4px rgba(25, 135, 84, 0.3));
}

.point-icon .icon-primary,
.point-icon .text-primary {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(13, 110, 253, 0.3));
}

.point-icon .icon-warning,
.point-icon .text-warning {
    color: #ffc107;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.point-content h5 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.point-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    height: 100%;
}

.why-item:hover {
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.why-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-icon i {
    font-size: 2rem;
    line-height: 1;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
}

.why-content h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.why-item:hover .why-content h5 {
    color: var(--primary-color);
}

.why-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ========================================
   Services Page
   ======================================== */
.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.service-detail-content h2 {
    margin-bottom: 0.35rem;
}

.service-detail-content .lead {
    margin-bottom: 0;
    font-size:1.05rem;
}

.service-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.service-features i {
    font-size: 1.25rem;
}

.quote-checklist {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.checklist-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.checklist-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checklist-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.checklist-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

/* ========================================
   Pricing Page
   ======================================== */
.pricing-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

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

.pricing-card.popular {
    border-color: var(--primary-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.pricing-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.pricing-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-price .amount {
    font-size: 3rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    vertical-align: middle;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.pricing-features i {
    font-size: 1.25rem;
}

.additional-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.additional-pricing:hover {
    box-shadow: var(--shadow);
}

.additional-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.additional-content {
    flex: 1;
    padding: 0 1.5rem;
}

.additional-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

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

.factor-item {
    padding: 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.factor-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.factor-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.factor-item h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.pricing-disclaimer {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.pricing-disclaimer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing-disclaimer p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.pricing-disclaimer ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.pricing-disclaimer li {
    color: var(--text-muted);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-form-container {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-info-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    color: #fff;
}

.form-title,
.info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.contact-info-container .info-title {
    color: #fff;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-subtitle {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Form Groups */
.contact-form-container .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.375rem;
    font-size: 0.9rem;
    display: block;
}

.contact-form-container .form-label span {
    color: var(--danger-color);
    margin-left: 2px;
}

.contact-form-container .form-control {
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: #fff;
}

.contact-form-container .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

.contact-form-container .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

.contact-form-container .form-control:hover:not(:focus) {
    border-color: #b6b6b6;
}

/* Form Sections */
.form-section {
    background: #fafafa;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.25rem;
    border: 1px solid #f0f0f0;
}

.form-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Check */
.contact-form-container .form-check {
    background: #fafafa;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    border: 1px solid #f0f0f0;
}

.contact-form-container .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.1rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.contact-form-container .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-form-container .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.contact-form-container .form-check-label {
    font-weight: 500;
    color: var(--dark-color);
    cursor: pointer;
    margin-left: 0.625rem;
    font-size: 0.9rem;
}

.contact-form-container .form-check-label a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-form-container .form-check-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-form-container .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.contact-form-container .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a4db8 100%);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

.method-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.method-icon.email {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
}

.method-icon.location {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.method-content {
    flex: 1;
}

.method-content h5 {
    font-weight: 700;
    margin-bottom: 0.125rem;
    color: #fff;
    font-size: 1rem;
}

.method-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.service-hours {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-hours h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-contact-buttons .row {
    margin: 0;
}

.quick-contact-buttons .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.quick-contact-buttons .btn i {
    flex-shrink: 0;
}

.contact-info-container .btn-primary {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    background: #fff;
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.contact-info-container .btn-primary:hover {
    background: var(--light-color);
    color: var(--primary-dark);
}

.contact-info-container .btn-success:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.map-placeholder {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--light-color);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin-bottom: 2rem;
}

.map-container iframe {
    display: block;
}

.map-fallback {
    text-align: center;
    color: var(--text-muted);
}

.map-fallback i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-fallback p {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* Service Area Cards */
.service-area-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    height: 100%;
}

.service-area-card:hover {
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.area-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.area-icon.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.area-icon.success {
    background: linear-gradient(135deg, var(--success-color) 0%, #14a44d 100%);
}

.area-content {
    flex: 1;
    text-align: left;
}

.area-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.area-content p {
    margin-bottom: 0.5rem;
    color: #706f6f;
    font-weight: 600;
    font-size: 0.95rem;
}

.area-desc {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Legal Pages
   ======================================== */
/* ========================================
   Legal Pages Styling
   ======================================== */
.legal-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 5px solid #ffc107;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.1);
}

.notice-header {
    margin-bottom: 1rem;
}

.notice-header h5 {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--dark-color);
}

.legal-notice p {
    margin-bottom: 0;
    color: var(--dark-color);
    line-height: 1.8;
}

.legal-header-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border-top: 5px solid var(--primary-color);
}

.legal-content h2 {
    font-size: 1.55rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
}

.privacy-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.legal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--dark-color);
}

.legal-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    padding-left: 0.5rem;
}

.legal-content li::marker {
    color: var(--primary-color);
}

.legal-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

.contact-box {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0 0;
    border: 2px solid rgba(13, 110, 253, 0.1);
}

.contact-row {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-row:hover {
    background: rgba(13, 110, 253, 0.05);
    border-radius: 12px;
}

.contact-row:last-child {
    border-bottom: none;
    padding-bottom: 1.25rem;
}

.contact-row strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-row p {
    margin-bottom: 0;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
}

.legal-footer {
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-brand .brand-name {
    color: #fff;
}

.footer-brand .brand-tagline {
    color: rgba(255, 255, 255, 0.6);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: #fff;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

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

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* ========================================
   Back to Top Button
   ======================================== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 1000;
}

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

.btn-back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float i {
    animation: whatsappShake 1s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

@keyframes whatsappShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 991px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        margin-top: 0.5rem;
    }
    
    /* Hide nav link underline on mobile */
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        color: var(--primary-color) !important;
        font-weight: 600;
    }
    
    /* Full width button in mobile menu */
    .btn-quote {
        width: 100%;
        margin-top: 1rem;
    }
    
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
       
    }

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

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .form-title,
    .info-title {
        font-size: 1.35rem;
    }

    .form-subtitle,
    .info-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .form-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .form-section-title {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .service-hours {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .service-hours h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .hours-row {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .contact-methods {
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }

    .contact-method {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .method-content h5 {
        font-size: 0.9rem;
    }

    .method-content p {
        font-size: 0.8rem;
    }

    .quick-contact-buttons {
        gap: 0.625rem;
    }

    .map-container {
        height: 300px;
    }

    .service-area-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .area-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto 0.75rem;
    }

    .area-content h5 {
        font-size: 1.1rem;
    }

    .area-content p {
        font-size: 0.875rem;
    }

    .area-desc {
        font-size: 0.85rem;
        margin-top: 0.375rem;
    }
}

@media (max-width: 575px) {
    .topbar {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .topbar .row > div {
        justify-content: center !important;
        margin-bottom: 0.5rem;
    }
    
    .topbar .row > div .d-flex {
        justify-content: center !important;
        width: 100%;
    }
    
    .topbar-info {
        font-size: 0.8rem;
    }
    
    .topbar-info span {
        display: none;
    }
    
    /* Hide phone number on mobile */
    .topbar-phone {
        display: none !important;
    }
    
    /* Hide address on mobile */
    .topbar-address {
        display: none !important;
    }
    
    /* Show email on mobile centered */
    .topbar-email {
        display: inline-flex !important;
        font-size: 0.85rem;
        justify-content: center;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Center Get a Quote buttons on mobile */
    .service-detail .mt-4,
    .cta-section .cta-buttons,
    .section .text-center {
        display: flex;
        justify-content: center;
    }
    
    .service-detail .btn,
    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   Contact Page Alerts
   ======================================== */
.contact-page-alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-page-alert .btn-close {
    opacity: 0.7;
    transition: var(--transition);
}

.contact-page-alert .btn-close:hover {
    opacity: 1;
}

/* ========================================
   Utilities
   ======================================== */
.rounded-4 {
    border-radius: var(--border-radius-lg) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color) !important;
}
