:root {
    --primary: #0A66C2;
    --primary-dark: #084d94;
    --primary-light: #e8f1fa;
    --dark: #1a1a2e;
    --text: #333333;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(10, 102, 194, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

body::-webkit-scrollbar {
    display: none;
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Navbar */
.navbar {
    transition: var(--transition);
    padding: 0.25rem 0;
    min-height: 0;
}
.navbar .container {
    align-items: center;
}
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 1rem;
    line-height: 1;
}
.navbar.scrolled { box-shadow: var(--shadow) !important; }
.navbar-brand span { font-size: 1.25rem; line-height: 1.2; }
.navbar-brand .site-logo {
    width: auto;
    height: 56px;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.site-logo {
    width: auto;
    height: 40px;
    max-width: 140px;
    object-fit: contain;
}
.site-logo-footer {
    filter: brightness(0) invert(1);
}
.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 0.35rem 1rem !important;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* Hero Slider */
.hero-slider-section {
    position: relative;
    height: 92vh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
}
.hero-swiper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}
.hero-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}
.hero-swiper .swiper-slide-active .hero-slide-bg {
    transform: scale(1.08);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Strong tint on left (text); fades so right side shows more of the image */
    background: linear-gradient(
        105deg,
        rgba(10, 102, 194, 0.88) 0%,
        rgba(10, 102, 194, 0.7) 35%,
        rgba(10, 102, 194, 0.38) 55%,
        rgba(0, 40, 80, 0.15) 72%,
        transparent 88%
    );
}
.page-home .home-hero .hero-overlay {
    background: linear-gradient(
        100deg,
        rgba(10, 102, 194, 0.9) 0%,
        rgba(10, 102, 194, 0.68) 32%,
        rgba(10, 102, 194, 0.32) 52%,
        rgba(0, 40, 80, 0.1) 70%,
        transparent 85%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}
.page-home .home-hero .hero-content {
    padding-top: 72px;
    padding-bottom: 70px;
}
.hero-slide-inner {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
.hero-swiper .swiper-slide-active .hero-slide-inner {
    opacity: 1;
    transform: translateY(0);
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.92);
    max-width: 620px;
    margin-bottom: 1.5rem !important;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}
.hero-buttons .btn {
    white-space: nowrap;
}
.hero-buttons .btn-lg {
    padding: 0.7rem 1.35rem;
    font-size: 0.95rem;
    border-radius: 10px;
}
.hero-buttons .btn-light {
    font-weight: 600;
}
.hero-buttons .btn-outline-light {
    border-width: 2px;
}
.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
}
/* Hero pagination */
.hero-pagination {
    bottom: 32px !important;
    z-index: 10;
}
.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.45);
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 6px;
    background: #fff;
}
/* Hero arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.hero-nav:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }
.hero-scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: heroBounce 2s infinite;
}
.hero-scroll-down:hover { color: #fff; border-color: #fff; }
@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
/* Legacy single hero (other pages) */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Page Banner */
.page-banner {
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
}
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-banner a { text-decoration: none; }
.page-banner a:hover { color: #fff !important; }

/* Section */
.section-padding { padding: 80px 0; }
.section-title {
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}
.section-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Stats */
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(10,102,194,0.08);
}
.stat-card:hover { transform: translateY(-5px); }
.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}
.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-card .stat-label {
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: center;
}
.service-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
    transform: translateY(-5px);
}
.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--primary);
}

/* Feature Box */
.feature-box {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--primary-light);
    height: 100%;
    transition: var(--transition);
}
.feature-box:hover { background: var(--primary); color: #fff; }
.feature-box:hover .feature-icon { background: rgba(255,255,255,0.2); color: #fff; }
.feature-box:hover h5, .feature-box:hover p { color: #fff; }
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}
/* Homepage Why Us – icon on same row as title */
.page-home .home-features .feature-box {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.75rem;
    row-gap: 0.65rem;
    align-items: start;
}
.page-home .home-features .feature-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.page-home .home-features .feature-box h5 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}
.page-home .home-features .feature-box p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 0;
}

/* Homepage section "View All" CTAs */
.page-home .section-view-all {
    margin-top: 1.75rem;
}
.page-home .btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 220px;
    min-height: 48px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
}
.page-home .btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.2);
}
.page-home .btn-view-all-light:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.page-home .btn-view-all .bi {
    transition: transform 0.2s ease;
}
.page-home .btn-view-all:hover .bi {
    transform: translateX(3px);
}

/* Project Card */
.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}
.project-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.project-card .project-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.project-card .project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .project-img img { transform: scale(1.08); }
.project-card .project-body { padding: 1.25rem; }
.project-card .project-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.project-card .project-meta i { color: var(--primary); }

/* Testimonial */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 1rem;
}
.testimonial-card .client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-light);
}
.testimonial-card .stars { color: #ffc107; margin-bottom: 1rem; }
.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Homepage swipers */
.testimonial-swiper { padding-bottom: 2.5rem; }
.testimonial-swiper .swiper-pagination-bullet-active { background: var(--primary); }
.partner-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; padding: 0.5rem; }

/* Project card header */
.project-card-head h5 { line-height: 1.35; }

/* Property Card */
.property-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}
.property-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.property-card .property-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.property-card .property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .property-img img { transform: scale(1.08); }
.property-card .property-body { padding: 1.25rem; }
.property-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.property-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}
.property-price-lg {
    font-size: 1.5rem;
}
.property-price-suffix {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}
.property-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.property-meta i { color: var(--primary); }
.property-detail-hero {
    max-height: 450px;
    object-fit: cover;
}
.property-media-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.property-media-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.property-media-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.75rem;
}
.property-media-thumb {
    position: relative;
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.property-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.property-media-thumb:hover img { transform: scale(1.06); }
.property-media-thumb .gallery-overlay {
    opacity: 0;
}
.property-media-thumb:hover .gallery-overlay { opacity: 1; }
.property-media-thumb.is-video .gallery-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.35);
}
.property-media-thumb.is-video .gallery-overlay i {
    font-size: 2.25rem;
}
.property-filter-toolbar {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.property-filter-group .btn { white-space: nowrap; }

/* Homepage map */
.home-map-wrap iframe { display: block; width: 100%; }

/* Partner */
.partner-logo {
    height: 60px;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}
.partner-logo:hover { transform: scale(1.05); }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

/* Blog Card */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.blog-card .blog-img { height: 200px; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .blog-body { padding: 1.25rem; }
.blog-card .blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.blog-content {
    line-height: 1.8;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.blog-content img,
.blog-content iframe,
.blog-content video,
.blog-content table {
    max-width: 100%;
}
.blog-content img { height: auto; border-radius: var(--radius); }
.blog-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Team Card */
.team-card {
    text-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-card .team-photo {
    height: 280px;
    overflow: hidden;
}
.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-card .team-info { padding: 1.5rem; }
.team-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}
.team-social-link:hover {
    background: var(--primary);
    color: #fff;
}

/* Contact */
.contact-info-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--primary-light);
    height: 100%;
}
.contact-info-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Gallery */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,102,194,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { font-size: 2rem; color: #fff; }

/* Filter buttons – horizontal scroll on small screens */
.filter-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    margin: 0 auto;
    max-width: 100%;
    scrollbar-width: thin;
}
.filter-scroll-wrap::-webkit-scrollbar { height: 4px; }
.filter-scroll-wrap::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.filter-scroll-wrap .btn-group {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.filter-scroll-wrap .btn {
    white-space: nowrap;
}
.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.property-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.property-item-hidden {
    display: none !important;
}

/* Timeline */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
}
.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

/* Footer */
.site-footer {
    background: var(--dark);
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}
.social-icon:hover { background: var(--primary); color: #fff; }

/* Newsletter – label left, input right */
.footer-newsletter {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    flex-wrap: wrap;
}
.footer-newsletter-text {
    flex: 0 1 auto;
    min-width: 200px;
}
.footer-newsletter .newsletter-form {
    flex: 1 1 280px;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
}
.footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}
.hover-text-white:hover {
    color: #fff !important;
}
.hover-gold:hover {
    color: #FFD700 !important;
}
@media (min-width: 768px) {
    .footer-copyright {
        text-align: left;
    }
}
.newsletter-form {
    max-width: 100%;
}
.newsletter-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.newsletter-input {
    width: 100%;
    min-height: 46px;
    padding: 0.65rem 3.25rem 0.65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    transition: var(--transition);
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.25);
}
.newsletter-send-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-send-btn:hover,
.newsletter-send-btn:focus {
    background: var(--primary-dark);
    color: #fff;
}
.newsletter-send-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.newsletter-send-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
.newsletter-form.is-loading .newsletter-send-btn i {
    animation: newsletter-spin 0.8s linear infinite;
}
@keyframes newsletter-spin {
    to { transform: rotate(360deg); }
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 10px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.back-to-top:hover { background: var(--primary-dark); }
.back-to-top.show { display: flex; }

/* Forms */
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(10,102,194,0.15);
}

/* Career / Service detail */
.service-detail-card {
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid #eee;
    margin-bottom: 2rem;
    scroll-margin-top: 100px;
}
.service-detail-card:hover { border-color: var(--primary); }

/* Services page */
.services-stats-row { margin-bottom: 0.5rem; }
.services-stat-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    height: 100%;
    transition: var(--transition);
}
.services-stat-pill:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.services-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}
.services-stat-pill strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--primary);
}
.services-stat-pill span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.services-nav-section {
    position: sticky;
    top: 72px;
    z-index: 102;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}
.services-jump-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.services-jump-nav::-webkit-scrollbar { height: 4px; }
.services-jump-nav::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.services-jump-link {
    flex-shrink: 0;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border: 1px solid #dee2e6;
    background: var(--white);
    transition: var(--transition);
    white-space: nowrap;
}
.services-jump-link:hover,
.services-jump-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.services-overview-card {
    display: block;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    border: 1px solid #eee;
    transition: var(--transition);
    color: inherit;
}
.services-overview-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
    color: inherit;
}
.services-overview-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.services-overview-card:hover .services-overview-icon {
    background: var(--primary);
    color: #fff;
}
.services-overview-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.services-overview-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}
.services-overview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.services-overview-card:hover .services-overview-link {
    color: var(--primary-dark);
}
.services-overview-card:hover .services-overview-link i {
    transform: translateX(4px);
}
.services-overview-link i {
    transition: transform 0.2s ease;
}

.service-detail-sidebar { top: 100px !important; }
.service-full-description { line-height: 1.8; }
.service-feature-list-page { margin-bottom: 0; }

.service-detail-section {
    padding: 70px 0;
    scroll-margin-top: 130px;
}
.service-detail-section .service-detail-card {
    margin-bottom: 0;
    padding: 0;
    border: none;
    background: transparent;
}
.service-detail-section .service-detail-card:hover { border: none; }

.service-detail-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.service-detail-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.service-detail-media:hover img { transform: scale(1.03); }
.service-detail-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    line-height: 1;
    letter-spacing: 1px;
}

.service-detail-body { padding: 0.5rem 0; }
.service-detail-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.service-detail-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    margin-bottom: 1rem;
}
.service-detail-desc {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}
@media (min-width: 576px) {
    .service-feature-list { grid-template-columns: 1fr 1fr; }
}
.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}
.service-feature-list li i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.services-reason-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}
.services-reason-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.services-reason-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}
.services-reason-card h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.services-reason-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Alert flash */
.alert-floating {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* FontAwesome Icon Support */
.stat-card .stat-icon i.fas,
.stat-card .stat-icon i.far,
.stat-card .stat-icon i.fab,
.stat-card .stat-icon i.fa {
    font-size: 1.5rem;
    line-height: inherit;
}
.service-card .service-icon i.fas,
.service-card .service-icon i.far,
.service-card .service-icon i.fab,
.service-card .service-icon i.fa {
    font-size: 1.75rem;
    line-height: inherit;
}
.feature-icon i.fas,
.feature-icon i.far,
.feature-icon i.fab,
.feature-icon i.fa {
    font-size: 1.25rem;
    line-height: inherit;
}
.social-icon i.fas,
.social-icon i.far,
.social-icon i.fab,
.social-icon i.fa {
    font-size: 1.1rem;
    line-height: inherit;
}

/* Responsive */
@media (max-width: 1199px) {
    .section-subtitle { margin-bottom: 2rem; }
}

@media (max-width: 991px) {
    .hero-slider-section { height: 85vh; min-height: 500px; }
    .hero-content {
        padding-top: 100px;
        padding-bottom: 70px;
    }
    .hero-nav { width: 42px; height: 42px; font-size: 1.1rem; }
    .hero-nav-prev { left: 12px; }
    .hero-nav-next { right: 12px; }
    .hero-scroll-down { display: none; }
    .hero-section { min-height: 70vh; }
    .section-padding { padding: 60px 0; }
    .page-banner { padding: 80px 0 60px; }
    .page-banner .display-5 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    .cta-section { padding: 60px 0; }

    .project-info-sidebar,
    .service-detail-sidebar {
        position: static !important;
        top: auto !important;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 1rem;
        border-radius: var(--radius);
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid #f1f3f5;
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 0.5rem !important;
    }
    .navbar-nav .btn-primary {
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.6rem !important;
    }

    .row.g-5 { --bs-gutter-y: 2rem; }
    .row.g-4 { --bs-gutter-y: 1.5rem; }
}

@media (max-width: 767px) {
    .stat-card .stat-number { font-size: 2rem; }
    .team-card .team-photo { height: 240px; }
    .gallery-item img { height: 200px; }
    .gallery-item { margin-bottom: 0; }
    .project-card .project-img { height: 200px; }
    .blog-card .blog-img { height: 180px; }
    .testimonial-card { margin: 0; padding: 1.5rem; }

    .page-banner { padding: 70px 0 50px; }
    .section-label { font-size: 0.75rem; letter-spacing: 1.5px; }
    .section-subtitle {
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .contact-info-card { padding: 1.25rem; }
    .footer-contact li { font-size: 0.9rem; word-break: break-word; }
    .footer-newsletter-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .footer-newsletter .newsletter-form {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
    .footer-copyright {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    .newsletter-form {
        max-width: 100%;
    }
    .newsletter-input {
        min-height: 44px;
    }

    .service-detail-actions {
        flex-direction: column;
    }
    .service-detail-actions .btn {
        width: 100%;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 320px;
    }
    .cta-section .d-flex.gap-3 {
        flex-direction: column;
        align-items: center !important;
    }

    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    .modal-footer {
        flex-direction: column-reverse;
        gap: 0.5rem;
    }
    .modal-footer .btn {
        width: 100%;
        margin: 0 !important;
    }

    .form-control,
    .form-select,
    textarea.form-control {
        font-size: 16px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: calc(78px + env(safe-area-inset-bottom, 0px));
        right: max(16px, env(safe-area-inset-right, 16px));
    }
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: max(16px, env(safe-area-inset-bottom, 16px));
        right: max(16px, env(safe-area-inset-right, 16px));
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .section-padding { padding: 45px 0; }
    .hero-slider-section { height: 75vh; min-height: 420px; }
    .hero-content {
        padding-top: 1.5rem;
        padding-bottom: 45px;
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
    .hero-title { font-size: 2.25rem !important; }
    .hero-lead { font-size: 1rem; }
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .hero-buttons .btn {
        width: auto;
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 0;
        text-align: center;
        min-height: 42px;
        font-size: 0.82rem;
        padding: 0.5rem 0.5rem !important;
    }
    .hero-pagination { bottom: 20px !important; }
    .hero-pagination .swiper-pagination-bullet-active { width: 28px; }

    .page-banner { padding: 60px 0 40px; }
    .page-banner .display-5 {
        font-size: 1.65rem;
        line-height: 1.25;
        word-break: break-word;
    }
    .page-banner .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card { padding: 1.25rem 0.75rem; }
    .service-card,
    .feature-box,
    .testimonial-card,
    .services-overview-card,
    .services-reason-card {
        padding: 1.5rem 1rem;
    }

    .services-nav-section { top: 0; }
    .service-detail-section { padding: 45px 0; }
    .services-stat-pill {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    .services-stat-pill strong { font-size: 1.15rem; }
    .services-stat-icon { margin: 0 auto; }
    .service-detail-title { font-size: 1.4rem; }
    .service-feature-list { grid-template-columns: 1fr; }

    .site-footer .row.g-4 { --bs-gutter-y: 2rem; }
    .site-footer h5 { font-size: 1rem; margin-bottom: 1rem !important; }

    .card.p-4.p-lg-5,
    .card .card-body.p-4 {
        padding: 1.25rem !important;
    }

    .btn:not(.btn-sm):not(.navbar-toggler):not(.hero-nav):not(.toggle-password):not(.hero-buttons .btn) {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .filter-scroll-wrap .btn {
        font-size: 0.85rem;
        padding: 0.45rem 0.85rem;
    }

    .property-media-main img {
        height: 260px;
    }

    #galleryGrid .col-6 { padding-left: 0.35rem; padding-right: 0.35rem; }
    #galleryGrid { --bs-gutter-x: 0.5rem; }
    .gallery-item img { height: 160px; }

    .timeline { padding-left: 24px; }
    .timeline-item::before { left: -20px; }
}

/* ============================================================
   Homepage mobile rebuild (.page-home)
   ============================================================ */
@media (max-width: 991px) {
    .page-home .home-hero.hero-slider-section {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .page-home .home-hero .hero-swiper,
    .page-home .home-hero .hero-swiper .swiper-slide {
        min-height: 450px;
    }
    .page-home .home-hero .hero-content {
        padding-top: 2rem;
        padding-bottom: 3rem;
        padding-left: 1.35rem;
        padding-right: 1.35rem;
        min-height: 450px;
        display: flex;
        align-items: flex-start;
    }
    .page-home .home-hero .hero-overlay {
        background: linear-gradient(
            165deg,
            rgba(10, 102, 194, 0.88) 0%,
            rgba(10, 102, 194, 0.72) 45%,
            rgba(0, 40, 80, 0.45) 100%
        );
    }
    .page-home .home-hero .hero-nav {
        display: none;
    }
    .page-home .home-stats.section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .page-home .home-about .section-title,
    .page-home .home-services .section-title,
    .page-home .home-features .section-title,
    .page-home .home-projects .section-title,
    .page-home .home-testimonials .section-title,
    .page-home .home-blog .section-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-top: 2.25rem;
    }

    .page-home .home-hero .hero-swiper,
    .page-home .home-hero .hero-swiper .swiper-slide {
        min-height: 400px;
    }
    .page-home .home-hero .hero-content {
        padding-top: 1.75rem;
        padding-bottom: 2.75rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        min-height: 400px;
        align-items: flex-start;
    }
    .page-home .home-hero .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    .page-home .home-hero .hero-lead {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.25rem !important;
        max-width: 100%;
    }
    .page-home .home-hero .hero-badge {
        font-size: 0.68rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.65rem;
    }
    .page-home .home-hero .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-home .home-hero .hero-buttons .btn {
        width: auto;
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 0;
        margin: 0 !important;
        min-height: 42px;
        font-size: 0.82rem;
        padding: 0.5rem 0.5rem !important;
        white-space: nowrap;
    }
    .page-home .home-hero .hero-pagination {
        bottom: 1rem !important;
    }

    /* Stats – compact 2×2 grid */
    .page-home .home-stats .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.75rem;
    }
    .page-home .home-stats .stat-card {
        padding: 1rem 0.5rem;
        box-shadow: none;
        border: 1px solid #e9ecef;
    }
    .page-home .home-stats .stat-card:hover {
        transform: none;
    }
    .page-home .home-stats .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 0.65rem;
    }
    .page-home .home-stats .stat-number {
        font-size: 1.65rem;
    }
    .page-home .home-stats .stat-label {
        font-size: 0.78rem;
        line-height: 1.3;
        margin-top: 0.35rem;
    }

    /* About – text first on mobile */
    .page-home .home-about.section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .page-home .home-about .btn-primary {
        width: 100%;
        min-height: 46px;
    }

    /* Services – icon inline with title on mobile */
    .page-home .home-services .section-subtitle {
        margin-bottom: 1.5rem;
    }
    .page-home .home-services .service-card {
        display: grid;
        grid-template-columns: auto 1fr auto;
        column-gap: 0.65rem;
        row-gap: 0.5rem;
        align-items: start;
        text-align: left;
        padding: 1.25rem 1rem;
    }
    .page-home .home-services .service-icon {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .page-home .home-services .service-card h5 {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin-bottom: 0;
        font-size: 1.05rem;
        line-height: 1.3;
        padding-right: 0.25rem;
    }
    .page-home .home-services .service-card p {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-bottom: 0;
        font-size: 0.9rem;
        line-height: 1.55;
    }
    .page-home .home-services .service-card .service-card-link {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        justify-self: end;
        width: auto;
        min-height: auto;
        margin: 0;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--primary);
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: none;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.2rem;
    }
    .page-home .home-services .service-card .service-card-link:hover,
    .page-home .home-services .service-card .service-card-link:focus {
        background: transparent;
        border: none;
        color: var(--primary-dark, #0855a8);
        box-shadow: none;
        text-decoration: none;
    }
    .page-home .home-services .service-card .service-card-link .bi {
        font-size: 0.85rem;
        transition: transform 0.2s ease;
    }
    .page-home .home-services .service-card .service-card-link:hover .bi {
        transform: translateX(2px);
    }
    .page-home .section-view-all {
        margin-top: 1.5rem;
        padding: 0 0.25rem;
    }
    .page-home .section-view-all .btn-view-all {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        font-size: 0.95rem;
        box-shadow: 0 2px 10px rgba(10, 102, 194, 0.1);
    }
    .page-home .home-cta .btn-view-all {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Features */
    .page-home .home-features .feature-box {
        padding: 1.25rem 1rem;
    }

    /* Projects */
    .page-home .home-projects .project-card-head {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .page-home .home-projects .project-card-head .badge {
        font-size: 0.7rem;
    }
    .page-home .home-projects .project-body .btn {
        width: 100%;
        min-height: 40px;
    }

    /* Testimonials */
    .page-home .home-testimonials .testimonial-swiper {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        padding-bottom: 2.75rem;
    }
    .page-home .home-testimonials .testimonial-card {
        margin: 0;
        padding: 1.5rem 1.15rem;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .page-home .home-testimonials .testimonial-card blockquote {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .page-home .home-testimonials .client-photo {
        width: 64px;
        height: 64px;
    }

    /* Partners */
    .page-home .home-partners h4 {
        font-size: 1.15rem;
    }
    .page-home .home-partners .partner-logo {
        height: 48px;
        max-width: 120px;
    }

    /* CTA */
    .page-home .home-cta.cta-section {
        padding: 3rem 0;
    }
    .page-home .home-cta .display-6 {
        font-size: 1.5rem;
    }
    .page-home .home-cta .lead {
        font-size: 1rem;
    }

    /* Blog */
    .page-home .home-blog .blog-card .blog-body {
        padding: 1rem;
    }
    .page-home .home-blog .blog-card h5 {
        font-size: 1.05rem;
    }
    .page-home .home-blog .blog-card .btn {
        width: 100%;
    }

    /* Map */
    .page-home .home-map.section-padding {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .page-home .home-map-wrap iframe {
        height: 260px !important;
    }

    /* Floating alert on home */
    .page-home .alert-floating {
        left: 1rem;
        right: 1rem;
        min-width: 0;
        top: 70px;
    }
}

@media (max-width: 575px) {
    .page-home .home-hero .hero-swiper,
    .page-home .home-hero .hero-swiper .swiper-slide {
        min-height: 400px;
    }
    .page-home .home-hero .hero-content {
        padding-top: 1.35rem;
        padding-bottom: 3rem;
        padding-left: max(1.15rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.15rem, env(safe-area-inset-right, 0px));
        min-height: 400px;
        align-items: flex-start;
    }
    .page-home .home-hero .hero-slide-inner {
        max-width: 100%;
        padding-right: 0.15rem;
    }
    .page-home .home-hero .hero-badge {
        max-width: 100%;
    }
    .page-home .home-hero .hero-title {
        font-size: 1.65rem !important;
    }
    .page-home .home-hero .hero-lead {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .page-home .section-padding {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }
    .page-home .home-stats .stat-number {
        font-size: 1.45rem;
    }
    .page-home .home-features .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .page-home .home-partners.section-padding {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .page-home .home-map-wrap iframe {
        height: 220px !important;
    }
}
