/* ========================================
   APEX PAINTING - MAIN STYLESHEET
   Based on logo colors: Navy (#1C2E4A) with Green/Blue gradient
   ======================================== */

/* ----------------------------------------
   1. VARIABLES & RESET
   ---------------------------------------- */
:root {
    /* Primary Colors - Directly from your APEX PAINTING logo */
    --primary-dark: #1C2E4A;     /* Exact navy from APEX PAINTING text */
    --primary-medium: #2A3F5E;   /* Slightly lighter navy for depth */
    --primary-light: #F5F7FA;    /* Clean off-white background */
    
    /* Accent Colors - Your preferred gradient colors */
    --accent-green: #85c441;      /* Fresh green */
    --accent-blue: #1c83c5;       /* Bright blue */
    --accent-gradient: linear-gradient(135deg, #85c441 0%, #1c83c5 100%);
    --accent-light: #E8F0E8;      /* Light green-tinted background */
    
    /* Neutral Colors */
    --text-dark: #1C2E4A;         /* Navy for headings */
    --text-medium: #4A5A6E;       /* Medium gray-blue for body text */
    --text-light: #6F7D8C;        /* Lighter text for secondary info */
    --white: #FFFFFF;              /* Pure white */
    --off-white: #F8F9FC;          /* Slightly off-white for backgrounds */
    --border-light: #E1E5EC;       /* Light border color */
    
    /* Shadows - Using navy with opacity */
    --shadow-sm: 0 15px 30px -15px rgba(28,46,74,0.1);
    --shadow-hover: 0 30px 40px -20px #1C2E4A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--white);
    line-height: 1.5;
    color: var(--text-medium);
    font-weight: 400;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gradient text utility */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Gradient background utility */
.gradient-bg {
    background: var(--accent-gradient);
    color: white;
}

/* ----------------------------------------
   2. TYPOGRAPHY
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6,
.section-title,
.page-header h1,
.hero h1 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    margin-left: 25px;
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.2rem;
    border-left: 5px solid;
    border-image: var(--accent-gradient) 1;
    border-left: 5px solid transparent;
    padding-left: 1.5rem;
    margin-bottom: 3.5rem;
}

/* Page Description - ADDED */
.page-description {
    font-size: 1.3rem;
    color: var(--text-medium);
    max-width: 600px;
}

/* ----------------------------------------
   3. HEADER & NAVIGATION
   ---------------------------------------- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    background: var(--white);
    position: relative;
    z-index: 1000;
}

.navbar-brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Hamburger icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-dark);
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: 0.3s;
}

.nav-links a {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Phone button */
.btn-outline {
    border: 1.5px solid var(--primary-dark);
    background: transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-family: 'Montserrat', 'Inter', sans-serif;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ----------------------------------------
   4. HERO SLIDER
   ---------------------------------------- */
.hero-swiper {
    width: 100%;
    height: 600px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(28,46,74,0.85) 0%, rgba(28,46,74,0.4) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    padding: 0 2rem;
    margin-left: 5%;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.slide-content .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 3px solid transparent;
    border-image: var(--accent-gradient) 1;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.slide-btn {
    background: var(--accent-gradient);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
}

.slide-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(28,46,74,0.3);
}

/* Swiper navigation */
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gradient) !important;
    opacity: 1;
}

.swiper-button-prev, .swiper-button-next {
    color: white !important;
    background: rgba(0,0,0,0.15);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: 0.2s;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background: var(--accent-gradient);
}

/* ----------------------------------------
   5. TRUST BAND
   ---------------------------------------- */
.trust-band {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-medium);
    font-weight: 500;
}

.trust-logos span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.trust-logos i {
    font-size: 1.6rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------
   6. SERVICE CARDS (UPDATED WITH ALL STYLES)
   ---------------------------------------- */
.services {
    padding: 5rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    background: var(--primary-light);
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2.6rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex: 1;
}

.service-tag {
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-tag i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* Feature List - ADDED */
.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Card CTA - ADDED */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: gap 0.3s;
    margin-top: auto;
}

.card-cta:hover {
    gap: 1.2rem;
}

/* ----------------------------------------
   7. PAGE HEADER
   ---------------------------------------- */
.page-header {
    background: var(--primary-light);
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 40px 40px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.page-header .breadcrumb a {
    color: var(--primary-dark);
    text-decoration: none;
}

.page-header .breadcrumb a:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------
   8. EXPERTISE STRIP
   ---------------------------------------- */
.expertise-strip {
    background: var(--primary-dark);
    color: white;
    padding: 5rem 0;
}

.expertise-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.expertise-left {
    flex: 1 1 300px;
}

.expertise-left h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: white;
}

.expertise-left p {
    color: #cddee9;
    font-size: 1.2rem;
}

.expertise-badge {
    background: var(--primary-medium);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 0.9rem;
}

.expertise-grid {
    flex: 1 1 400px;
    display: grid;
    gap: 2rem;
}

.expertise-item {
    background: var(--primary-medium);
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
    transition: 0.2s;
}

.expertise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.3);
}

.expertise-item i {
    font-size: 2.4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.expertise-item p {
    font-size: 0.95rem;
    color: #cddee9;
}

/* ----------------------------------------
   9. COMPREHENSIVE LIST
   ---------------------------------------- */
.comprehensive {
    padding: 5rem 0;
    background: var(--white);
}

.section-badge {
    background: var(--primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-badge i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

.approval-badge {
    color: var(--primary-medium);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.approval-badge i {
    margin-right: 0.5rem;
    color: var(--accent-blue);
}

.comp-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: var(--off-white);
    padding: 3rem;
    border-radius: 50px;
    margin: 3rem 0;
}

.comp-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comp-list-item i {
    font-size: 1.4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: white;
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.comp-list-item span {
    font-weight: 600;
    color: var(--primary-dark);
}

.comp-note {
    color: var(--text-medium);
    font-style: italic;
    background: var(--primary-light);
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    display: inline-block;
}

.comp-note i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

/* ----------------------------------------
   10. PROCESS SECTION (ADDED)
   ---------------------------------------- */
.process-section {
    background: var(--primary-dark);
    color: white;
    padding: 5rem 0;
    margin-top: 3rem;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: white;
}

.process-subtitle {
    text-align: center;
    color: #cddee9;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: white;
    transition: transform 0.3s;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: white;
}

.process-step p {
    color: #cddee9;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ----------------------------------------
   11. CTA BANNER (ADDED)
   ---------------------------------------- */
.cta-banner {
    background: linear-gradient(135deg, #9e7e5e 0%, #b99e82 100%);
    border-radius: 40px;
    padding: 4rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-banner h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.btn-light {
    background: var(--primary-dark);
    color: white;
    padding: 1.2rem 3.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.btn-light:hover {
    background: transparent;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.2);
}

/* ----------------------------------------
   12. CTA SECTION
   ---------------------------------------- */
.cta-section {
    background: var(--primary-light);
    border-radius: 40px 40px 0 0;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.4rem;
    color: var(--primary-medium);
    margin: 1rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-dark);
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 10px 20px -5px var(--primary-dark);
    border: 1px solid var(--primary-medium);
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary:hover {
    background: var(--accent-gradient);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(28,46,74,0.3);
}

.btn-secondary {
    background: white;
    border: 1.5px solid var(--primary-dark);
    padding: 1rem 3rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Montserrat', 'Inter', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-secondary:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(28,46,74,0.3);
}

.cta-note {
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cta-note i {
    color: var(--accent-blue);
}

/* ----------------------------------------
   13. FOOTER
   ---------------------------------------- */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    color: var(--text-medium);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer a {
    color: var(--primary-medium);
    text-decoration: none;
}

.footer a:hover {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-company {
    font-weight: 600;
    color: var(--primary-dark);
}

.footer-abn {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ----------------------------------------
   14. EMPTY STATE (ADDED)
   ---------------------------------------- */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.5;
}

.empty-state-mini {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.empty-state-mini i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------
   15. CARD CTA LINKS
   ---------------------------------------- */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.card-cta:hover {
    gap: 1.2rem;
    border-image: var(--accent-gradient) 1;
    border-bottom: 2px solid transparent;
}

/* Rating stars */
.stars {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------
   16. FILTER BAR (Projects Page)
   ---------------------------------------- */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border-radius: 60px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    font-weight: 600;
    color: var(--text-medium);
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.filter-btn i {
    color: var(--accent-gradient);
    transition: color 0.2s;
}

.filter-btn.active {
    background: var(--accent-gradient);
    color:  var(--white);
    border-color: var(--accent-gradient);
}

.filter-btn.active i {
    color: white;
}
.filter-btn:hover {
    background: var(--accent-gradient);
    color:  var(--white);
}
.filter-btn:hover i {
     color:  var(--white);
}

/* ----------------------------------------
   17. PROJECT GRID
   ---------------------------------------- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.project-card {
    border-radius: 40px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.project-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.tag {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
    margin-top: auto;
}

.stat-small {
    display: flex;
    flex-direction: column;
}

.stat-small .number {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.stat-small .label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--accent);
    margin-top: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.project-link:hover {
    gap: 1.2rem;
}

/* ----------------------------------------
   18. FEATURED PROJECT
   ---------------------------------------- */
.featured-project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--primary-dark);
    border-radius: 60px;
    overflow: hidden;
    margin: 5rem 0;
    color: white;
}

.featured-image {
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .accent-text {
    color: var(--accent-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.featured-content p {
    color: #cddee9;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.featured-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.featured-stat {
    text-align: left;
}

.featured-stat strong {
    color: white;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.2rem;
}

.featured-stat span {
    color: var(--accent-light);
    font-size: 0.9rem;
}

.featured-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: 0.2s;
    text-decoration: none;
    width: fit-content;
}

.featured-btn:hover {
    background: var(--accent-gradient);
    transform: translateX(5px);
}

/* ----------------------------------------
   19. TESTIMONIAL STRIP
   ---------------------------------------- */
.testimonial-strip {
    background: var(--off-white);
    border-radius: 40px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.testimonial-strip i {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.testimonial-strip p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: #f4b740;
    font-size: 1.2rem;
}

/* ----------------------------------------
   20. TESTIMONIAL GRID
   ---------------------------------------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stars {
    color: #f4b740;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ----------------------------------------
   21. VIDEO CAROUSEL
   ---------------------------------------- */
.video-carousel {
    background: var(--primary-light);
    border-radius: 60px;
    padding: 4rem;
    margin: 5rem 0;
}

.video-slide {
    background: white;
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.video-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-thumb {
    width: 100%;
    height: 200px;
    background: var(--primary-dark);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-thumb:hover img {
    transform: scale(1.1);
}

.video-thumb:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.play-button i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-left: 5px;
}

/* ----------------------------------------
   22. CONTACT PAGE
   ---------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin: 5rem 0;
}

.info-card {
    background: var(--white);
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    transition: 0.2s;
}

.info-card:hover {
    box-shadow: var(--shadow-hover);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.info-icon i {
    font-size: 2.2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-link-text {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link-text:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.4rem;
    transition: 0.2s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-3px);
}

.hours-card {
    background: var(--primary-dark);
    border-radius: 40px;
    padding: 2.5rem;
    color: white;
}

.hours-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-row .day {
    color: var(--accent-light);
}

.hours-row:last-child {
    border-bottom: none;
}

.emergency-note {
    margin-top: 2rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 24px;
    text-align: center;
}

.emergency-note i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.directions-link:hover {
    gap: 0.8rem;
}

.appointment-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-light);
}

/* ----------------------------------------
   23. CONTACT FORM
   ---------------------------------------- */
.form-card {
    background: var(--white);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.form-card h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

input, select, textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: 30px;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.2s;
    background: var(--off-white);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 1.3rem 3rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid transparent;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.submit-btn:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(28,46,74,0.3);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.form-checkbox input {
    width: auto;
    padding: 0;
}

.secure-note {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.secure-note i {
    color: var(--accent-blue);
}

/* ----------------------------------------
   24. MAP SECTION
   ---------------------------------------- */
.map-section {
    margin: 5rem 0;
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
    height: 450px;
    background: var(--primary-light);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-dark);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-hover);
}

.map-overlay i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* ----------------------------------------
   25. FAQ SECTION
   ---------------------------------------- */
.faq-section {
    background: var(--primary-light);
    border-radius: 60px 60px 0 0;
    padding: 5rem 0;
    margin-top: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: 0.2s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.faq-item h4 i {
    color: var(--accent);
}

.faq-item p {
    color: var(--text-medium);
}

/* ----------------------------------------
   26. CTA MINI
   ---------------------------------------- */
.cta-mini {
    background: linear-gradient(135deg, #9e7e5e 0%, #b99e82 100%);
    border-radius: 40px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-mini h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cta-mini p {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.btn-dark {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    transition: 0.2s;
    border: 2px solid transparent;
}

.btn-dark:hover {
    background: transparent;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ----------------------------------------
   27. ABOUT PAGE
   ---------------------------------------- */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature {
    margin-top: 2rem;
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--accent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: 0.2s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.team-member {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.2s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    height: 320px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.member-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-decoration: none;
    transition: 0.2s;
}

.member-social a:hover {
    background: var(--accent-gradient);
    color: white;
}

/* ----------------------------------------
   28. PAGINATION
   ---------------------------------------- */
.pagination-wrapper {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.pagination li.active span {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

.pagination li a:hover {
    background: var(--primary-light);
    border-color: var(--accent-green);
}

/* ----------------------------------------
   29. ANIMATIONS
   ---------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content {
    animation: fadeInUp 1s ease;
}

.service-card {
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.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; }

/* ----------------------------------------
   30. RESPONSIVE DESIGN (UPDATED WITH ALL MEDIA QUERIES)
   ---------------------------------------- */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .process-grid {
        gap: 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
}

/* Desktop */
@media (max-width: 992px) {
    .hero-swiper {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .slide-btn {
        padding: 0.9rem 2.4rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cta-banner h2 {
        font-size: 2.4rem;
    }
    
    .cta-banner {
        padding: 3rem;
    }
    
    .expertise-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .expertise-grid {
        width: 100%;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-project {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 350px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        gap: 1.5rem;
        align-items: flex-start;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links .btn-outline {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-swiper {
        height: 450px;
    }

    .slide-content {
        margin-left: 0;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .swiper-button-prev, .swiper-button-next {
        display: none !important;
    }

    .trust-logos {
        justify-content: center;
        gap: 1.5rem;
    }

    .trust-logos span {
        font-size: 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }

    .services {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .service-card {
        padding: 1.8rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2.2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .process-section {
        padding: 4rem 0;
    }

    .process-section h2 {
        font-size: 2rem;
    }

    .process-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .process-grid {
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .process-step h4 {
        font-size: 1.2rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }

    .cta-banner p {
        font-size: 1.1rem;
    }

    .btn-light {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1.1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .map-container {
        height: 350px;
    }

    .map-overlay {
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-mini {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 50px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-swiper {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .trust-band {
        padding: 1.5rem 0;
    }

    .trust-logos {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .trust-logos span {
        font-size: 0.95rem;
    }

    .services {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .feature-list {
        margin-bottom: 1.5rem;
    }

    .feature-list li {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .process-section {
        padding: 3rem 0;
    }

    .process-section h2 {
        font-size: 1.8rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-banner {
        padding: 2rem;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .btn-light {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-description {
        font-size: 1rem;
    }

    .info-card, .hours-card, .form-card {
        padding: 1.5rem;
    }

    .info-card h3, .hours-card h3 {
        font-size: 1.5rem;
    }

    .hours-row {
        flex-direction: column;
        text-align: center;
        gap: 0.2rem;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .map-container {
        height: 300px;
    }

    .map-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-note {
        flex-direction: column;
        gap: 0.3rem;
    }

    .comp-list {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }

    .comp-list-item {
        flex-direction: column;
        text-align: center;
    }

    .featured-content {
        padding: 1.5rem;
    }

    .featured-content h2 {
        font-size: 1.8rem;
    }

    .featured-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .featured-btn {
        width: 100%;
        justify-content: center;
    }

    .testimonial-strip {
        padding: 2rem 1rem;
    }

    .testimonial-strip p {
        font-size: 1.1rem;
    }

    .testimonial-footer {
        flex-direction: column;
        text-align: center;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .card-cta {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .hero-swiper {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .feature-list li {
        font-size: 0.8rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .cta-mini h3 {
        font-size: 1.5rem;
    }

    .cta-mini p {
        font-size: 1rem;
    }
}