@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --primary: #0a74da;
    --primary-dark: #085bb0;
    --accent: #00c6ff;
    --gold: #d4a853;
    --gold-dark: #b8923d;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light-bg: #f5f5f0;
    --text-dark: #2d2d2d;
    --text-muted: #6c757d;
    --card-shadow: 0 2px 15px rgba(0,0,0,0.06);
    --card-shadow-hover: 0 12px 35px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

a { text-decoration: none; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ─── TOP BAR ─────────────────────────────────────────────────────────────── */
.top-bar {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-area .logo-icon {
    width: 65px; height: 65px;
    background: var(--dark);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 24px; font-weight: 800;
    flex-shrink: 0;
    letter-spacing: 1px;
}
.logo-area .logo-text h1 {
    font-size: 20px; font-weight: 800;
    color: var(--dark); margin: 0;
    letter-spacing: 1.5px; line-height: 1.2;
}
.logo-area .logo-text span {
    font-size: 12px; color: var(--gold);
    font-weight: 500; letter-spacing: 0.5px;
}
.header-contact {
    display: flex; align-items: center;
    justify-content: flex-end; gap: 25px;
}
.header-contact-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-dark);
}
.header-contact-item i {
    color: var(--primary);
    font-size: 14px;
}
.header-contact-item a {
    color: var(--text-dark); font-weight: 500;
}
.header-contact-item a:hover { color: var(--primary); }
.header-cta {
    background: var(--gold);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center; gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}
.header-cta:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
.main-nav {
    background: var(--dark);
    padding: 0;
    border: none;
    z-index: 1000;
}
.main-nav .navbar-nav .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500; font-size: 14px;
    padding: 16px 22px;
    transition: all 0.3s;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
}
.main-nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
}
.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link.active {
    color: #fff;
}
.main-nav .navbar-nav .nav-link:hover::after,
.main-nav .navbar-nav .nav-link.active::after {
    left: 22px; right: 22px;
}
.main-nav .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    padding: 8px 12px;
}
.main-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-cta-wrap { display: flex; align-items: center; margin-left: auto; }
.nav-cta {
    background: var(--gold);
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 5px;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    transition: all 0.3s;
}
.nav-cta:hover {
    background: var(--gold-dark) !important;
    color: #fff !important;
}
.nav-cta::after { display: none !important; }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}
.hero-section .swiper { width: 100%; height: 100%; }
.hero-section .swiper-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 0 20px;
    pointer-events: none;
}
.hero-overlay * { pointer-events: auto; }
.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}
.hero-overlay h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.15;
    max-width: 750px;
}
.hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.6;
}
.hero-buttons {
    display: flex; gap: 15px;
    flex-wrap: wrap; justify-content: center;
}
.hero-btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600; font-size: 15px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s;
}
.hero-btn-primary:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,168,83,0.35);
}
.hero-btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-weight: 600; font-size: 15px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s;
}
.hero-btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.swiper-button-next, .swiper-button-prev {
    color: rgba(255,255,255,0.6) !important;
    transition: color 0.3s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #fff !important;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--gold) !important;
}

/* ─── TRUST BAR ───────────────────────────────────────────────────────────── */
.trust-bar {
    background: var(--dark);
    padding: 20px 0;
    border-bottom: 3px solid var(--gold);
}
.trust-bar .trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px; font-weight: 500;
    white-space: nowrap;
}
.trust-item i {
    color: var(--gold);
    font-size: 18px;
}

/* ─── PAGE BANNER ─────────────────────────────────────────────────────────── */
.page-banner {
    position: relative; width: 100%;
    height: 350px; overflow: hidden;
    background-size: cover;
    background-position: center;
}
.page-banner::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15,15,26,0.75) 0%, rgba(15,15,26,0.3) 100%);
}
.page-banner .banner-text {
    position: absolute; bottom: 40px; left: 0; right: 0;
    z-index: 2; text-align: center;
}
.page-banner .banner-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 700;
    color: #fff; margin: 0;
}
.page-banner .banner-text p {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ─── SECTIONS ────────────────────────────────────────────────────────────── */
.section-padding { padding: 80px 0; }
.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px; font-weight: 700;
    color: var(--dark); margin-bottom: 20px;
    line-height: 1.2;
}
.section-title.light { color: #fff; }
.section-subtitle {
    font-size: 16px; color: var(--text-muted);
    margin-bottom: 40px; max-width: 600px;
    line-height: 1.7;
}
.section-subtitle.centered { margin-left: auto; margin-right: auto; }

/* ─── CONTENT ─────────────────────────────────────────────────────────────── */
.content-section p {
    font-size: 16px; line-height: 1.85;
    color: #555; margin-bottom: 15px;
}
.content-section a { color: var(--primary); font-weight: 500; }
.content-section a:hover { text-decoration: underline; }

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.about-images img {
    width: 100%; height: 200px;
    object-fit: cover; border-radius: 6px;
    transition: transform 0.3s;
}
.about-images img:hover { transform: scale(1.02); }

/* ─── FEATURES / WHY US ──────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.feature-item {
    display: flex; gap: 15px;
    align-items: flex-start;
}
.feature-icon {
    width: 50px; height: 50px;
    background: rgba(10,116,218,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}
.feature-item h4 {
    font-size: 16px; font-weight: 700;
    color: var(--dark); margin-bottom: 4px;
}
.feature-item p {
    font-size: 14px; color: #777;
    line-height: 1.5; margin: 0;
}

/* ─── STATS SECTION ───────────────────────────────────────────────────────── */
.stats-section {
    background: var(--dark);
    padding: 60px 0;
}
.stat-item {
    text-align: center;
    padding: 10px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── SERVICE CARDS ───────────────────────────────────────────────────────── */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s, box-shadow 0.4s;
    height: 100%;
    display: flex; flex-direction: column;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}
.service-card.popular {
    border: 2px solid var(--gold);
}
.popular-badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--gold);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}
.service-card .card-img { height: 200px; overflow: hidden; }
.service-card .card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.service-card:hover .card-img img { transform: scale(1.08); }
.service-card .card-body {
    padding: 25px;
    flex: 1;
    display: flex; flex-direction: column;
}
.service-card .card-body h3 {
    font-size: 17px; font-weight: 700;
    color: var(--dark); margin-bottom: 5px;
}
.service-card .card-body .price-tag {
    font-size: 22px; font-weight: 800;
    color: var(--primary); margin-bottom: 15px;
}
.service-card .card-body ul {
    list-style: none; padding: 0; margin: 0; flex: 1;
}
.service-card .card-body ul li {
    padding: 5px 0; font-size: 13px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative; padding-left: 22px;
}
.service-card .card-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute; left: 0;
    color: var(--gold); font-size: 11px;
}
.service-card .card-body .description {
    font-size: 14px; color: #666;
    line-height: 1.65;
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials-section {
    background: var(--light-bg);
    padding: 80px 0;
}
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex; flex-direction: column;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 10px; left: 25px;
    line-height: 1;
}
.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex: 1;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    background: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600; font-size: 14px;
    color: var(--dark);
}
.testimonial-location {
    font-size: 12px; color: var(--text-muted);
}

/* ─── PRICING ─────────────────────────────────────────────────────────────── */
.pricing-section { background: var(--dark); color: #fff; }
.pricing-section .section-title { color: #fff; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th {
    background: rgba(212,168,83,0.15);
    color: var(--gold);
    padding: 15px 20px;
    font-weight: 600; font-size: 14px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
.pricing-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}
.pricing-table tbody td {
    padding: 15px 20px; font-size: 15px;
}
.pricing-table tbody td:last-child {
    font-weight: 700; color: var(--gold); font-size: 17px;
}

/* ─── GALLERY ─────────────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: 10px; cursor: pointer;
}
.gallery-pair .gallery-item { border-radius: 0; }
.gallery-item img {
    width: 100%; height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-pair .gallery-item img { height: 220px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,26,46,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: #fff; font-size: 24px; }
.gallery-item .badge-label {
    position: absolute; top: 10px; left: 10px;
    background: var(--dark);
    color: #fff;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}
.badge-after { background: var(--gold) !important; }
.gallery-pair-label {
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    background: #fff;
}

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-info-card {
    background: var(--dark);
    color: #fff;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
}
.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px; font-weight: 700;
    margin-bottom: 8px;
}
.contact-info-card > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    font-size: 14px;
}
.contact-info-card .info-item {
    display: flex; align-items: flex-start;
    gap: 15px; margin-bottom: 25px;
}
.contact-info-card .info-item i {
    color: var(--gold); font-size: 18px; margin-top: 3px;
}
.contact-info-card .info-item div h5 {
    font-size: 15px; font-weight: 600;
    margin-bottom: 2px;
}
.contact-info-card .info-item div span {
    color: rgba(255,255,255,0.6); font-size: 14px;
}
.contact-info-card .info-item div a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.contact-info-card .info-item div a:hover { color: var(--gold); }
.contact-form .form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 6px;
    margin-bottom: 15px;
    background: #fafafa;
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(10,116,218,0.08);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600; font-size: 15px;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,116,218,0.25);
}
.btn-gold {
    background: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 20px rgba(212,168,83,0.3);
}
.btn-dark-custom {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600; font-size: 15px;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-dark-custom:hover {
    background: var(--darker);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── CTA SECTION ─────────────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1f2547 100%);
    padding: 60px 0;
    text-align: center;
}
.cta-banner h3 {
    font-family: 'Playfair Display', serif;
    color: #fff; font-size: 32px;
    font-weight: 700; margin-bottom: 12px;
}
.cta-banner p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    margin-bottom: 30px;
}

/* ─── VAN / MOBILE SERVICE SECTION ────────────────────────────────────────── */
.van-section {
    padding: 80px 0;
    background: #fff;
}
.van-section img {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.main-footer {
    background: var(--darker);
    color: #fff;
    padding: 60px 0 30px;
}
.footer-logo h4 {
    font-size: 18px; font-weight: 800;
    margin-bottom: 15px;
}
.footer-logo h4 span { color: var(--gold); }
.footer-logo p {
    color: rgba(255,255,255,0.5);
    font-size: 13px; line-height: 1.8;
}
.footer-logo a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.footer-logo a:hover { color: var(--gold); }
.main-footer h5 {
    font-size: 15px; font-weight: 700;
    margin-bottom: 20px; color: #fff;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}
.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.social-icons a {
    display: inline-flex;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    margin-right: 6px;
    transition: all 0.3s;
    font-size: 15px;
}
.social-icons a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 40px; padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

/* ─── LIGHTBOX ────────────────────────────────────────────────────────────── */
.lightbox-overlay {
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center; justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
    max-width: 90%; max-height: 90%;
    border-radius: 6px;
}
.lightbox-overlay .close-btn {
    position: absolute; top: 20px; right: 30px;
    color: #fff; font-size: 35px;
    cursor: pointer; z-index: 10000;
}

/* ─── FLOATING CALL BUTTON ────────────────────────────────────────────────── */
.float-call {
    position: fixed;
    bottom: 25px; left: 25px;
    z-index: 998;
    display: flex; align-items: center; gap: 10px;
    background: var(--gold);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600; font-size: 14px;
    box-shadow: 0 6px 25px rgba(212,168,83,0.4);
    transition: all 0.3s;
    text-decoration: none;
}
.float-call:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212,168,83,0.5);
}
.float-call i { font-size: 18px; }

/* ─── SCROLL TOP ──────────────────────────────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--dark);
    color: #fff;
    border: none; border-radius: 6px;
    font-size: 16px; cursor: pointer;
    display: none; z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-section { height: 60vh; min-height: 400px; }
    .hero-overlay h2 { font-size: 32px; }
    .hero-sub { font-size: 15px; }
    .page-banner { height: 280px; }
    .page-banner .banner-text h2 { font-size: 32px; }
    .header-contact { justify-content: flex-start; margin-top: 10px; gap: 15px; flex-wrap: wrap; }
    .header-cta { display: none; }
    .about-images { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: 1fr; gap: 20px; }
    .trust-bar .trust-items { gap: 20px; }
    .stat-number { font-size: 36px; }
    .nav-cta-wrap { display: none; }
    .section-title { font-size: 28px; }
    .gallery-pair { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .hero-section { height: 75vh; min-height: 350px; }
    .hero-overlay h2 { font-size: 26px; }
    .hero-tagline { font-size: 11px; letter-spacing: 2px; }
    .hero-sub { font-size: 14px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .page-banner { height: 220px; }
    .page-banner .banner-text h2 { font-size: 26px; }
    .section-title { font-size: 24px; }
    .about-images { grid-template-columns: 1fr; }
    .trust-bar .trust-items { gap: 12px; }
    .trust-item { font-size: 12px; }
    .trust-item i { font-size: 14px; }
    .stat-item { padding: 15px 5px; }
    .stat-number { font-size: 30px; }
    .stat-label { font-size: 11px; }
    .float-call span { display: none; }
    .float-call { padding: 14px; border-radius: 50%; }
    .testimonial-card { padding: 25px 20px; }
}
