/* ============================================================
   GLOBAL RESET & VARIABLES
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #0f2b5c;
    --primary-blue-dark: #091b3d;
    --accent-gold: #dfb76c;
    --accent-gold-light: #f0d28c;
    --accent-gold-dark: #c9a55a;
    --dark-bg: #0b132b;
    --slate-dark: #0f172a;
    --slate-mid: #1e293b;
    --light-bg: #f8fafc;
    --pure-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #94a3b8;
    --text-light: #f1f5f9;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-max: 1280px;
    --card-radius: 6px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   TYPOGRAPHY SYSTEM – Premium
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
}
h4 {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
}
h5 {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
h6 {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 1.1rem;
    }
}

/* ============================================================
   BUTTONS – Premium
   ============================================================ */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 1rem 2.2rem;
    border-radius: var(--card-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(223, 183, 108, 0.25);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(223, 183, 108, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--pure-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 1rem 2.2rem;
    border-radius: var(--card-radius);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    border-color: var(--pure-white);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.btn-gold-outline {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.9rem 2rem;
    border-radius: var(--card-radius);
    border: 1.5px solid var(--accent-gold);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-gold-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.btn-text-link i {
    transition: var(--transition);
}

.btn-text-link:hover {
    color: var(--accent-gold-light);
}

.btn-text-link:hover i {
    transform: translateX(4px);
}

/* ============================================================
   SECTION HEADERS – Premium
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem auto;
}

.section-header .badge {
    display: inline-block;
    background: rgba(223, 183, 108, 0.1);
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(223, 183, 108, 0.1);
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

/* ============================================================
   TRUSTED BY – Premium Section
   ============================================================ */
.trusted-section {
    padding: 5rem 0 4.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(223, 183, 108, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(15, 43, 92, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.trusted-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    background: rgba(223, 183, 108, 0.08);
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(223, 183, 108, 0.12);
    margin-bottom: 1rem;
}

.trusted-badge i {
    font-size: 0.7rem;
}

.trusted-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 0.6rem 0;
    letter-spacing: -0.5px;
}

.trusted-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.trusted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding: 2rem 1.2rem 1.8rem 1.2rem;
    background: var(--pure-white);
    border-radius: 14px;
    border: 1px solid rgba(15, 43, 92, 0.06);
    box-shadow: 0 4px 20px rgba(15, 43, 92, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    cursor: default;
    overflow: hidden;
}

.trusted-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    transition: width 0.5s ease;
    border-radius: 0 0 4px 4px;
}

.trusted-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(223, 183, 108, 0.02), rgba(15, 43, 92, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trusted-item:hover {
    transform: translateY(-8px);
    border-color: rgba(223, 183, 108, 0.2);
    box-shadow: 0 20px 50px rgba(15, 43, 92, 0.08), 0 8px 30px rgba(223, 183, 108, 0.04);
}

.trusted-item:hover::before {
    width: 60%;
}

.trusted-item:hover::after {
    opacity: 1;
}

.trusted-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 43, 92, 0.06), rgba(223, 183, 108, 0.06));
    color: var(--primary-blue);
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.trusted-item:hover .trusted-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--pure-white);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 35px rgba(223, 183, 108, 0.25);
}

.trusted-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.trusted-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.trusted-item:hover .trusted-name {
    color: var(--primary-blue);
}

.trusted-count {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(15, 43, 92, 0.04);
    padding: 0.15rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    align-self: center;
    transition: all 0.3s ease;
}

.trusted-item:hover .trusted-count {
    background: rgba(223, 183, 108, 0.1);
    color: var(--accent-gold);
}

.trusted-accent {
    position: absolute;
    bottom: 12px;
    right: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(15, 43, 92, 0.04);
    transition: all 0.4s ease;
}

.trusted-item:hover .trusted-accent {
    background: var(--accent-gold);
    box-shadow: 0 0 20px rgba(223, 183, 108, 0.3);
    transform: scale(1.2);
}

.trusted-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 1.2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(15, 43, 92, 0.02);
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.marquee-track span {
    color: var(--accent-gold);
    font-size: 0.6rem;
    opacity: 0.5;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trusted-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* ============================================================
   SERVICES SECTION – Premium 3-Column Layout
   ============================================================ */
.services-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(15, 43, 92, 0.04);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(15, 43, 92, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 60px rgba(15, 43, 92, 0.10),
        0 8px 20px rgba(15, 43, 92, 0.05);
    border-color: rgba(223, 183, 108, 0.15);
}

.service-image-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    flex: none;
    overflow: hidden;
    background: var(--slate-dark);
    border-radius: 22px 22px 0 0;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 43, 92, 0.05) 0%,
        rgba(15, 43, 92, 0.15) 40%,
        rgba(11, 19, 43, 0.5) 100%
    );
    opacity: 0.5;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover .service-image-overlay {
    opacity: 0.7;
}

.service-tag {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.service-tag i {
    font-size: 0.65rem;
    color: var(--accent-gold);
}

.service-card:hover .service-tag {
    background: rgba(223, 183, 108, 0.85);
    color: var(--primary-blue);
    border-color: rgba(223, 183, 108, 0.3);
    transform: translateY(-2px);
}

.service-card:hover .service-tag i {
    color: var(--primary-blue);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: var(--pure-white);
    flex: 1;
}

.service-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-header h3 {
    color: var(--primary-blue);
}

.service-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: #64748b;
    margin: 0;
    flex: 1;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
    margin: 0.2rem 0;
}

.specs span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
    background: rgba(15, 43, 92, 0.04);
    padding: 0.2rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 43, 92, 0.04);
    transition: all 0.3s ease;
}

.service-card:hover .specs span {
    background: rgba(223, 183, 108, 0.08);
    border-color: rgba(223, 183, 108, 0.1);
    color: var(--primary-blue);
}

.service-content .btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
    padding: 0.3rem 0;
    border-bottom: 1.5px solid transparent;
}

.service-content .btn-text-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.service-content .btn-text-link:hover {
    color: var(--accent-gold-dark);
    border-bottom-color: var(--accent-gold);
}

.service-content .btn-text-link:hover i {
    transform: translateX(4px);
}

/* ============================================================
   HARDWARE SHOWCASE – Premium
   ============================================================ */
.hardware-section {
    padding: 5rem 0;
    background: var(--slate-dark);
    color: var(--pure-white);
}

.hardware-section .section-header h2 {
    color: var(--pure-white);
}

.hardware-section .section-header p {
    color: #94a3b8;
}

.hardware-section .section-header .badge {
    background: rgba(223, 183, 108, 0.12);
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.hardware-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.hardware-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(223, 183, 108, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hardware-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(223, 183, 108, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hardware-item:hover::before {
    opacity: 1;
}

.hardware-item i {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    display: block;
    transition: transform 0.4s ease;
}

.hardware-item:hover i {
    transform: scale(1.1);
}

.hardware-item h4 {
    color: var(--pure-white);
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.hardware-item p {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

.hardware-cta-wrap {
    text-align: center;
    margin-top: 3.5rem;
}

/* ============================================================
   SPECIAL OFFERS – Premium
   ============================================================ */
.offers-section {
    padding: 5rem 0;
    background: var(--pure-white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(223, 183, 108, 0.04), transparent);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
    border-left-color: var(--accent-gold-dark);
}

.offer-card:hover::before {
    transform: scale(2);
}

.offer-card .offer-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.offer-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.offer-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.offer-card .offer-tag {
    display: inline-block;
    background: rgba(223, 183, 108, 0.1);
    color: var(--accent-gold);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(223, 183, 108, 0.1);
}

/* ============================================================
   TESTIMONIALS – Google-Style Swiper
   ============================================================ */

.testimonials-section {
    padding: 5rem 0;
    background: var(--light-bg, #f8fafc);
    overflow: hidden;
}

/* ---------- Swiper Container ---------- */
.testimonials-swiper {
    padding: 1.5rem 0 3.5rem 0;
    overflow: visible !important;
}

/* ---------- Testimonial Card ---------- */
.testimonial-card {
    background: var(--pure-white, #ffffff);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    box-shadow: 0 4px 25px rgba(15, 43, 92, 0.06);
    border: 1px solid rgba(15, 43, 92, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 45px rgba(15, 43, 92, 0.08);
    border-color: rgba(223, 183, 108, 0.15);
}

/* ---------- Card Header (Avatar + Name) ---------- */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-avatar {
    flex-shrink: 0;
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-blue, #0f2b5c);
    box-shadow: 0 4px 12px rgba(15, 43, 92, 0.1);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #1e293b);
    margin: 0 0 0.1rem 0;
    line-height: 1.2;
}

.client-role {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted, #94a3b8);
    letter-spacing: 0.2px;
}

/* ---------- Star Ratings ---------- */
.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
    color: #f59e0b;
}

.testimonial-stars i {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

/* ---------- Blockquote ---------- */
.testimonial-card blockquote {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark, #1e293b);
    font-style: italic;
    margin: 0;
    flex: 1;
    quotes: none;
}

.testimonial-card blockquote::before {
    content: '"';
    color: var(--accent-gold, #dfb76c);
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
    margin-right: 0.15rem;
}

.testimonial-card blockquote::after {
    content: '"';
    color: var(--accent-gold, #dfb76c);
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
    margin-left: 0.15rem;
}

/* ============================================================
   SWIPER CUSTOMIZATION
   ============================================================ */

.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-blue, #0f2b5c);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold, #dfb76c);
    width: 28px;
    border-radius: 10px;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--primary-blue, #0f2b5c);
    background: var(--pure-white, #ffffff);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(15, 43, 92, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 43, 92, 0.04);
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: var(--primary-blue, #0f2b5c);
    color: var(--pure-white, #ffffff);
    transform: scale(1.05);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- Tablets (768px - 991px) ---------- */
@media (max-width: 991px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .client-avatar {
        width: 3.2rem;
        height: 3.2rem;
    }

    .client-name {
        font-size: 0.9rem;
    }

    .testimonial-card blockquote {
        font-size: 0.85rem;
    }

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }
}

/* ---------- Mobile (<768px) ---------- */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .client-avatar {
        width: 2.8rem;
        height: 2.8rem;
    }

    .client-name {
        font-size: 0.85rem;
    }

    .client-role {
        font-size: 0.7rem;
    }

    .testimonial-stars i {
        font-size: 0.75rem;
    }

    .testimonial-card blockquote {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .testimonials-swiper .swiper-pagination {
        margin-top: 1.5rem;
    }

    .testimonials-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .testimonials-swiper .swiper-pagination-bullet-active {
        width: 22px;
    }
}
/* ============================================================
   GLOBAL FOOTER
   ============================================================ */
.main-footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--accent-gold);
    padding: 4rem 0 0 0;
    color: #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo a {
    font-size: 1.8rem;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem 0;
    max-width: 340px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-brand .legal-note {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.6;
    border-left: 2px solid var(--accent-gold);
    padding-left: 1rem;
}

.footer-col h5 {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 300;
}

.footer-col ul a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
    display: inline-block;
}

.footer-col .county-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
}

.footer-col .county-grid span {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 300;
}

.footer-col .county-grid span i {
    color: var(--accent-gold);
    font-size: 0.65rem;
}

.footer-col .contact-detail {
    margin-bottom: 1rem;
}

.footer-col .contact-detail .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-col .contact-detail a,
.footer-col .contact-detail .value {
    font-weight: 500;
    color: var(--pure-white);
    font-size: 1rem;
}

.footer-col .contact-detail .address {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-col .contact-detail .address strong {
    color: #e2e8f0;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social .social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(223, 183, 108, 0.2);
}

.developer-credit {
    margin-top: 1.2rem;
    font-size: 0.7rem;
    color: #64748b;
    letter-spacing: 0.02em;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}

.developer-credit a {
    color: var(--accent-gold);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.developer-credit a:hover {
    color: var(--accent-gold-light);
    text-decoration: underline;
}

.sub-footer {
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 300;
}

.sub-footer .sub-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sub-footer .sub-links a {
    color: #64748b;
    transition: var(--transition);
    font-size: 0.8rem;
}

.sub-footer .sub-links a:hover {
    color: var(--accent-gold);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: whatsapp-bounce 2.5s infinite ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 2.2rem;
    color: var(--pure-white);
}

@keyframes whatsapp-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ============================================================
   NAVBAR – GLOBAL (Fixed, Glassmorphism)
   ============================================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(15, 43, 92, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    display: block;
    height: 4.6rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.4rem 0;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.emergency-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(223, 183, 108, 0.2);
    padding: 0.45rem 1.2rem 0.45rem 0.8rem;
    border-radius: var(--card-radius);
    transition: var(--transition);
}

.emergency-cta:hover {
    border-color: var(--accent-gold);
    background: rgba(223, 183, 108, 0.08);
    transform: translateY(-1px);
}

.cta-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.cta-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cta-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pure-white);
    font-family: var(--font-heading);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn .bar {
    width: 26px;
    height: 2.5px;
    background: var(--pure-white);
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-menu-btn.open .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-btn.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.open .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE DRAWER – Fixed (No display: none)
   ============================================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--primary-blue-dark);
    z-index: 9998;
    padding: 6rem 2.5rem 2.5rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer .drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.mobile-drawer .drawer-links a {
    color: #e2e8f0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-drawer .drawer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(6px);
}

.mobile-drawer .drawer-contacts {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.mobile-drawer .drawer-contacts p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 300;
}

.mobile-drawer .drawer-contacts a {
    color: var(--pure-white);
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
    text-decoration: none;
}

.mobile-drawer .drawer-contacts .drawer-cta {
    margin-top: 1.5rem;
}

.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
}

.drawer-overlay.open {
    display: block;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- Large Desktop (1441px+) ---------- */
@media (min-width: 1441px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(360px, 1fr));
        gap: 2.5rem;
    }

    .service-card {
        min-height: 560px;
    }

    .service-image-wrap {
        height: 380px;
    }
}

/* ---------- Laptops (992px - 1199px) ---------- */
@media (max-width: 1199px) and (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        gap: 1.8rem;
    }

    .service-card {
        min-height: 480px;
    }

    .service-image-wrap {
        height: 280px;
    }

    .service-content {
        padding: 1.6rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }
}

/* ---------- Tablets (768px - 991px) ---------- */
@media (max-width: 991px) and (min-width: 768px) {
    .trusted-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .service-card {
        min-height: 460px;
    }

    .service-image-wrap {
        height: 260px;
    }

    .service-content {
        padding: 1.6rem;
    }

    .service-header h3 {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }

    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* ---------- Mobile (480px - 768px) ---------- */
@media (max-width: 767px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-card {
        min-height: 460px;
    }

    .service-image-wrap {
        height: 250px;
    }

    .service-content {
        padding: 1.4rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .trusted-item {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem 0.6rem;
        gap: 0.4rem;
    }

    .trusted-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }

    .trusted-name {
        font-size: 0.7rem;
    }

    .trusted-count {
        font-size: 0.55rem;
    }

    .hardware-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .hardware-item {
        padding: 1.5rem 1rem;
    }

    .hardware-item i {
        font-size: 2rem;
    }

    .hardware-item h4 {
        font-size: 0.95rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col .county-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sub-footer {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 3.4rem;
        height: 3.4rem;
        bottom: 1.2rem;
        right: 1.2rem;
    }

    .whatsapp-float i {
        font-size: 1.8rem;
    }

    .mobile-drawer {
        max-width: 100%;
        padding: 5rem 1.8rem 2rem 1.8rem;
    }

    .mobile-drawer .drawer-links a {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0.7rem 1.2rem;
    }

    .logo-img {
        height: 3.2rem;
    }
}

/* ---------- Small Mobile (below 480px) ---------- */
@media (max-width: 479px) {
    .services-section .section-header h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        min-height: 380px;
        border-radius: 14px;
    }

    .service-image-wrap {
        height: 200px;
        border-radius: 14px 14px 0 0;
    }

    .service-content {
        padding: 1rem;
    }

    .service-header h3 {
        font-size: 1rem;
    }

    .service-desc {
        font-size: 0.78rem;
    }

    .service-tag {
        font-size: 0.45rem;
        padding: 0.2rem 0.6rem;
        top: 0.6rem;
        left: 0.6rem;
    }

    .service-content .btn-text-link {
        font-size: 0.65rem;
        margin-top: 0.4rem;
    }

    .specs span {
        font-size: 0.45rem;
        padding: 0.1rem 0.5rem;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .trusted-title {
        font-size: 1.2rem;
    }

    .trusted-badge {
        font-size: 0.5rem;
        padding: 0.3rem 0.8rem;
    }

    .trusted-item {
        padding: 0.6rem 0.4rem;
    }

    .trusted-icon {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.65rem;
    }

    .trusted-name {
        font-size: 0.65rem;
    }

    .trusted-count {
        font-size: 0.5rem;
    }

    .trusted-marquee {
        display: none;
    }

    .hardware-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-col .county-grid {
        grid-template-columns: 1fr;
    }

    .section-header p {
        font-size: 0.9rem;
    }
}

/* ---------- Navbar Responsive ---------- */
@media (max-width: 992px) {
    .nav-links ul {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .emergency-cta .cta-text .cta-label {
        display: none;
    }

    .emergency-cta {
        padding: 0.45rem 0.8rem;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .service-card,
    .service-image,
    .trusted-item,
    .hardware-item,
    .offer-card,
    .testimonial-card {
        transition: none !important;
        transform: none !important;
    }

    .service-card:hover,
    .trusted-item:hover,
    .hardware-item:hover,
    .offer-card:hover,
    .testimonial-card:hover {
        transform: none !important;
    }

    .service-card:hover .service-image {
        transform: none !important;
    }

    .marquee-track {
        animation: none !important;
    }

    .whatsapp-float {
        animation: none !important;
    }
}
/* ============================================================
   SERVICE IMAGES – Mobile Fix (No Cropping)
   ============================================================ */

/* ---------- Desktop (default) ---------- */
.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops on desktop – looks clean */
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- Mobile (fix cropping) ---------- */
@media (max-width: 767px) {
    .service-image-wrap {
        height: 280px; /* Slightly taller on mobile to accommodate full image */
        background: var(--slate-dark, #0f172a);
    }

    .service-image {
        object-fit: contain; /* Shows full image without cropping */
        background: var(--slate-dark, #0f172a);
    }

    /* If you want images to still fill the width but not crop vertically */
    .service-image {
        object-fit: cover;
        object-position: top center; /* Focus on top of image */
    }
}

/* ---------- Alternative: Use contain with background color ---------- */
@media (max-width: 767px) {
    .service-image-wrap {
        background: var(--slate-dark, #0f172a);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-image {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: contain; /* Shows entire image, may have letterboxing */
        background: var(--slate-dark, #0f172a);
    }
}