/* ================================================================
   VARAHI SAFETY NETS & INVISIBLE GRILLS
   Global Stylesheet — Logo Color Palette
   Primary: #1c3f7a (Deep Navy Blue)
   Secondary: #2a6db5 (Medium Blue)
   Accent: #4a9fd4 (Light Blue)
   ================================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    --primary:       #1c3f7a;
    --primary-dark:  #0f2548;
    --primary-mid:   #2a6db5;
    --accent:        #4a9fd4;
    --accent-light:  #7ec8e3;
    --white:         #ffffff;
    --text-dark:     #1a1a2e;
    --text-gray:     #5a6a7a;
    --bg-light:      #f0f5fb;
    --bg-lighter:    #fafcff;
    --border:        #dce8f5;
    --shadow:        rgba(28,63,122,0.12);
    --shadow-hover:  rgba(28,63,122,0.22);
    --gradient:      linear-gradient(135deg, #1c3f7a 0%, #2a6db5 100%);
    --gradient-r:    linear-gradient(135deg, #2a6db5 0%, #4a9fd4 100%);
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.6;
}

a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ================================================================
   TOP TRUST BAR
================================================================ */
.top_trust_bar {
    background: var(--gradient);
    padding: 7px 0;
    z-index: 1100;
    position: relative;
}

.top_bar_inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.trust_text {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.2px;
}

.top_contact_links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.top_link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.92);
    font-size: 12px;
    font-weight: 500;
}

.top_link:hover { color: #fff; opacity: 0.8; }
.top_link i { font-size: 11px; }

.top_sep {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

/* ================================================================
   HEADER / NAVBAR
================================================================ */
.header_area {
    background: var(--white);
    box-shadow: 0 2px 16px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: box-shadow 0.3s ease;
}

.header_area.scrolled {
    box-shadow: 0 4px 24px var(--shadow-hover);
}

.nav_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo_area img {
    height: 78px;
    transition: transform 0.3s ease;
}

.logo_area img:hover { transform: scale(1.03); }

/* ---- Nav Links ---- */
.nav_menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav_menu > .nav_item > .nav_link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 30px 14px;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.nav_menu > .nav_item > .nav_link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav_menu > .nav_item > .nav_link:hover,
.nav_menu > .nav_item.active > .nav_link {
    color: var(--primary);
}

.nav_menu > .nav_item > .nav_link:hover::after,
.nav_menu > .nav_item.active > .nav_link::after {
    transform: scaleX(1);
}

/* ---- Dropdown ---- */
.nav_item { position: relative; }

.dropdown_arrow {
    font-size: 9px;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav_item:hover .dropdown_arrow { transform: rotate(180deg); }

.dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 245px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 30px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 6px 0;
}

.nav_item:hover .dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown_menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.dropdown_menu a i {
    color: var(--primary-mid);
    font-size: 12px;
    width: 14px;
}

.dropdown_menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 22px;
}

/* ---- CTA Button in Nav ---- */
.nav_cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    margin-left: 16px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(28,63,122,0.3);
}

.nav_cta::after { display: none !important; }

.nav_cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(28,63,122,0.4);
    transform: translateY(-1px);
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   STICKY FLOATING BUTTONS
================================================================ */
.floating_btns {
    position: fixed;
    bottom: 28px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9990;
}

.float_btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    transition: all 0.3s ease;
    position: relative;
}

.float_btn i { font-size: 24px; color: #fff; }

.float_call { background: var(--primary); }
.float_call:hover { background: var(--primary-dark); transform: scale(1.12); }

.float_wa { background: #25D366; }
.float_wa:hover { background: #1da851; transform: scale(1.12); }

.float_tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: #fff;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.float_tooltip::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--text-dark);
}

.float_btn:hover .float_tooltip {
    opacity: 1;
    visibility: visible;
    right: 62px;
}

/* ================================================================
   HERO BANNER
================================================================ */
.hero_section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.hero_video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(15,37,72,0.88) 0%,
        rgba(28,63,122,0.65) 50%,
        rgba(28,63,122,0.30) 100%);
    z-index: 2;
}

.hero_inner {
    position: relative;
    z-index: 3;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.hero_left { flex: 1.3; color: #fff; }

.hero_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74,159,212,0.25);
    border: 1px solid rgba(74,159,212,0.5);
    color: #a8d8f0;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    animation: fadeSlideUp 0.6s ease both;
}

.hero_title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #fff;
    animation: fadeSlideUp 0.75s ease both;
}

.hero_title span { color: var(--accent-light); }

.hero_subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 500px;
    animation: fadeSlideUp 0.9s ease both;
}

.hero_badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeSlideUp 1s ease both;
}

.hero_badge {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
}

.hero_features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    margin-bottom: 36px;
    animation: fadeSlideUp 1.05s ease both;
}

.hero_features li {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero_features li::before {
    content: '✓';
    background: var(--accent);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.hero_cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 1.1s ease both;
}

.btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-r);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(42,109,181,0.4);
    transition: all 0.3s ease;
}

.btn_primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(42,109,181,0.5);
}

.btn_outline_white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.btn_outline_white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Right — Quote Card */
.hero_right { flex: 0.75; min-width: 280px; animation: fadeSlideUp 0.85s ease both; }

.quote_card {
    background: rgba(255,255,255,0.97);
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.quote_card_head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.quote_card_head .icon_circle {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.quote_card_head h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.quote_card_head p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

.q_row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
}

.q_field {
    flex: 1;
    min-width: 140px;
}

.q_field input, .q_field select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s;
    background: var(--bg-lighter);
    color: var(--text-dark);
}

.q_field input:focus, .q_field select:focus {
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(42,109,181,0.12);
    background: #fff;
}

.q_submit {
    width: 100%;
    margin-top: 12px;
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.q_submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 22px rgba(28,63,122,0.35);
    transform: translateY(-1px);
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   SECTION GLOBALS
================================================================ */
.section { padding: 80px 0; }
.section_sm { padding: 55px 0; }
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sec_head { text-align: center; margin-bottom: 55px; }

.sec_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(28,63,122,0.08);
    color: var(--primary);
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sec_title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.sec_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 3px;
    background: var(--gradient-r);
    border-radius: 2px;
}

.sec_sub {
    color: var(--text-gray);
    font-size: 15.5px;
    max-width: 620px;
    margin: 22px auto 0;
    line-height: 1.75;
}

/* ================================================================
   SERVICE CARDS (3-up) — Main Services on Home
================================================================ */
.services_section { background: var(--white); }

.services_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svc_card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border);
}

.svc_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px var(--shadow-hover);
    border-color: var(--primary-mid);
}

.svc_img_wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.svc_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.svc_card:hover .svc_img_wrap img { transform: scale(1.07); }

.svc_img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,37,72,0.5) 0%, transparent 60%);
    transition: opacity 0.3s;
}

.svc_call_btn {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.svc_call_ring {
    width: 58px;
    height: 58px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

.svc_call_link {
    width: 42px;
    height: 42px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.svc_call_link:hover { background: var(--accent); transform: scale(1.1); }
.svc_call_ring:hover { transform: scale(1.1); }

.svc_call_link svg { width: 20px; height: 20px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2)); }

.svc_body {
    padding: 46px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc_tag_row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.svc_tag {
    background: rgba(28,63,122,0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.svc_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color 0.3s;
    line-height: 1.3;
}

.svc_title:hover { color: var(--primary-mid); }

.svc_desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 18px;
    text-align: justify;
}

.svc_btn {
    display: block;
    text-align: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.svc_btn:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28,63,122,0.3);
}

/* ================================================================
   VIDEO REEL GRID
================================================================ */
.videos_section { background: var(--bg-light); }

.video_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.video_card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px var(--shadow);
    transition: all 0.35s ease;
    border: 1px solid var(--border);
}

.video_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px var(--shadow-hover);
    border-color: var(--primary-mid);
}

.video_reel_wrap {
    padding: 10px;
}

.video_reel_inner {
    position: relative;
    height: 480px;
    border-radius: 14px;
    overflow: hidden;
    background: #1a2e4a;
}

.video_reel_inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    pointer-events: none;
}

.video_label {
    padding: 10px 12px 16px;
    text-align: center;
}

.video_label h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    transition: color 0.3s;
    line-height: 1.3;
}

.video_card:hover .video_label h4 { color: var(--primary-mid); }

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why_section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.why_section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.why_section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.why_section .sec_title { color: #fff; }
.why_section .sec_title::after { background: var(--accent-light); }
.why_section .sec_sub { color: rgba(255,255,255,0.78); }
.why_section .sec_tag { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); }

.why_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why_card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 32px 26px;
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
}

.why_card:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-6px);
}

.why_icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.why_card:hover .why_icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1) rotate(5deg);
}

.why_card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why_card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.76);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
   STATS
================================================================ */
.stats_section { background: var(--bg-lighter); }

.stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat_card {
    text-align: center;
    padding: 38px 20px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 6px 24px var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px var(--shadow-hover);
    border-color: var(--primary-mid);
}

.stat_num {
    font-size: 46px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 10px;
}

.stat_label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testi_section { background: var(--white); }

.testi_wrap { position: relative; overflow: hidden; margin: 0 -10px; }

.testi_track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 10px 20px;
}

.testi_track::-webkit-scrollbar { display: none; }

.testi_card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 290px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 8px 28px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.testi_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px var(--shadow-hover);
    border-color: var(--primary-mid);
}

.testi_quote {
    font-size: 52px;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: 18px;
    left: 22px;
}

.testi_text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
    position: relative;
    z-index: 1;
    min-height: 90px;
}

.testi_stars { margin-bottom: 14px; }
.testi_stars span { color: #f59e0b; font-size: 17px; letter-spacing: 2px; }

.testi_name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testi_loc {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-mid);
    margin: 0;
}

.testi_nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
}

.testi_nav_btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi_nav_btn:hover {
    background: var(--primary-dark);
    transform: scale(1.08);
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact_section { background: var(--bg-light); }

.contact_grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact_info h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.25;
}

.contact_info p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact_item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact_icon_box {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact_item:hover .contact_icon_box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(28,63,122,0.3);
}

.contact_text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact_text a, .contact_text span {
    font-size: 14px;
    color: var(--text-gray);
}

.contact_text a:hover { color: var(--primary); }

/* Contact Form */
.contact_form {
    background: var(--white);
    border-radius: 20px;
    padding: 38px 36px;
    box-shadow: 0 10px 40px var(--shadow);
    border: 1px solid var(--border);
}

.contact_form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.f_field {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s;
    background: var(--bg-lighter);
    color: var(--text-dark);
    margin-bottom: 14px;
    display: block;
}

.f_field:focus {
    border-color: var(--primary-mid);
    box-shadow: 0 0 0 3px rgba(42,109,181,0.1);
    background: #fff;
}

textarea.f_field {
    height: 110px;
    resize: vertical;
}

.f_submit {
    width: 100%;
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.f_submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(28,63,122,0.35);
    transform: translateY(-2px);
}

/* ================================================================
   MAP
================================================================ */
.map_section iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: grayscale(20%);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
    background: var(--primary-dark);
    padding: 64px 0 0;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 0;
}

.footer_logo_img {
    height: 68px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.footer_brand_name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer_about {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 18px;
}

.footer_badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.footer_badge {
    background: rgba(74,159,212,0.18);
    border: 1px solid rgba(74,159,212,0.3);
    color: var(--accent-light);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.footer_contacts { display: flex; flex-direction: column; gap: 12px; }

.f_contact_row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f_c_icon {
    width: 32px;
    height: 32px;
    background: rgba(74,159,212,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.f_c_icon i { color: var(--accent); font-size: 14px; }

.f_contact_row:hover .f_c_icon { background: var(--primary-mid); }
.f_contact_row:hover .f_c_icon i { color: #fff; }

.f_c_text {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}

.f_c_text a {
    color: rgba(255,255,255,0.75);
}

.f_c_text a:hover { color: var(--accent-light); }

.footer_col_title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer_col_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gradient-r);
    border-radius: 2px;
}

.footer_links { display: flex; flex-direction: column; gap: 9px; }

.footer_links a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.footer_links a i { color: var(--accent); font-size: 12px; }

.footer_links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer_bottom_bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 48px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer_copy {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.footer_copy strong { color: var(--accent-light); }

.footer_social_icons { display: flex; gap: 10px; }

.social_btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social_btn i { color: rgba(255,255,255,0.7); font-size: 16px; }

.social_btn:hover { background: var(--primary-mid); transform: translateY(-3px); }
.social_btn:hover i { color: #fff; }

/* ================================================================
   ALERT
================================================================ */
.alert_msg {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    min-width: 300px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight 0.35s ease;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    font-family: 'Poppins', sans-serif;
}

.alert_msg.success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert_msg.error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

@keyframes slideInRight {
    from { transform: translateX(110%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ================================================================
   INNER SERVICE PAGE STYLES
================================================================ */
.page_hero {
    background: var(--gradient);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.page_hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.page_hero_inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page_hero_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.page_hero_title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.page_hero_sub {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin: 0 auto 22px;
    line-height: 1.7;
}

.breadcrumb_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    flex-wrap: wrap;
}

.breadcrumb_nav a { color: rgba(255,255,255,0.8); }
.breadcrumb_nav a:hover { color: #fff; }
.breadcrumb_nav .sep { color: rgba(255,255,255,0.4); }
.breadcrumb_nav .current { color: var(--accent-light); font-weight: 600; }

/* Service Detail Content */
.service_detail { padding: 70px 0; background: var(--white); }

.service_detail_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service_detail_grid.reverse { direction: rtl; }
.service_detail_grid.reverse > * { direction: ltr; }

.service_img_block {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px var(--shadow-hover);
    position: relative;
}

.service_img_block img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.service_img_badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.service_text_block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service_text_block p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.service_features {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service_features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.service_features li::before {
    content: '✓';
    background: var(--gradient);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.service_cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn_service_call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(28,63,122,0.35);
    transition: all 0.3s ease;
}

.btn_service_call:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(28,63,122,0.45);
}

.btn_service_wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}

.btn_service_wa:hover { background: #1da851; color: #fff; transform: translateY(-2px); }

/* Service image gallery */
.service_gallery { background: var(--bg-light); padding: 60px 0; }

.gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.gallery_item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
    transition: all 0.35s ease;
    aspect-ratio: 4/3;
}

.gallery_item:hover { transform: scale(1.03); box-shadow: 0 14px 36px var(--shadow-hover); }

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Related services */
.related_section { padding: 60px 0; background: var(--white); }

.related_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related_card {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.related_card:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow);
}

.related_card .rel_icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.related_card:hover .rel_icon { background: rgba(255,255,255,0.2); }

.related_card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s;
}

.related_card:hover span { color: #fff; }

/* ================================================================
   ABOUT PAGE
================================================================ */
.about_content { background: var(--white); padding: 80px 0; }

.about_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about_img_stack {
    position: relative;
    padding: 20px 20px 0 0;
}

.about_img_main {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 50px var(--shadow-hover);
}

.about_img_main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.about_badge_float {
    position: absolute;
    bottom: -10px;
    right: 0;
    background: var(--gradient);
    color: #fff;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(28,63,122,0.4);
}

.about_badge_float strong {
    font-size: 32px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.about_badge_float span { font-size: 13px; font-weight: 500; opacity: 0.9; }

.about_text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
    line-height: 1.2;
}

.about_text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.about_points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 30px; }

.abt_point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.abt_point::before {
    content: '✓';
    background: var(--gradient);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ================================================================
   RESPONSIVE — CLEAN REWRITE — ALL BREAKPOINTS
================================================================ */

/* ============================================================
   1200px — Large Tablet
============================================================ */
@media (max-width: 1200px) {
    .hero_title { font-size: 42px; }
    .video_grid { grid-template-columns: repeat(2, 1fr); }
    .video_reel_inner { height: 380px; }
    .footer_grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hero_inner { gap: 30px; }
}

/* ============================================================
   992px — Tablet / Mobile Nav Breakpoint
============================================================ */
@media (max-width: 992px) {

    /* ==== NAVIGATION ==== */
    .hamburger {
        display: flex;
        order: 2;
    }

    .nav_wrapper {
        flex-wrap: wrap;
        padding: 0 16px;
        align-items: center;
    }

    .logo_area { order: 1; }
    .logo_area img { height: 58px; }

    nav {
        order: 3;
        width: 100%;
    }

    .nav_menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-top: 3px solid var(--primary);
        box-shadow: 0 10px 40px rgba(28,63,122,0.18);
        padding: 6px 0 14px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9999;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav_menu.open { display: flex; }

    .nav_menu > .nav_item > .nav_link {
        padding: 12px 20px;
        font-size: 14px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--text-dark);
    }

    .nav_menu > .nav_item > .nav_link::after { display: none; }

    /* Mobile dropdown */
    .dropdown_menu {
        position: static !important;
        opacity: 1 !important;
        visibility: hidden;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-top: none !important;
        border-radius: 0 !important;
        background: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        padding: 0;
    }

    .nav_item.mobile_open > .dropdown_menu {
        visibility: visible;
        max-height: 600px;
    }

    .dropdown_menu a {
        padding: 10px 32px;
        font-size: 13.5px;
        border-left: none;
    }

    .dropdown_menu a:hover {
        background: rgba(28,63,122,0.07);
        color: var(--primary);
        padding-left: 36px;
    }

    .nav_cta {
        margin: 10px 16px 4px !important;
        display: block !important;
        text-align: center !important;
        border-radius: 8px !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        letter-spacing: 0 !important;
        width: calc(100% - 32px);
    }

    /* ==== HERO ==== */
    .hero_section {
        min-height: 100vh;
        padding: 90px 0 50px;
        align-items: center;
    }

    .hero_inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        padding: 0 20px;
    }

    .hero_left { width: 100%; }
    .hero_right {
        width: 100%;
        max-width: 480px;
        animation: none;
    }

    .hero_title { font-size: 36px; }
    .hero_subtitle { margin: 0 auto 24px; max-width: 100%; font-size: 15px; }
    .hero_features {
        max-width: 100%;
        margin: 0 auto 28px;
        grid-template-columns: 1fr 1fr;
    }
    .hero_badges { justify-content: center; }
    .hero_cta { justify-content: center; }

    /* ==== LAYOUT ==== */
    .section { padding: 60px 0; overflow-x: hidden; }
    .section_sm { padding: 40px 0; overflow-x: hidden; }
    .sec_title { font-size: 30px; }

    /* ==== SERVICES ==== */
    .services_grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* ==== WHY ==== */
    .why_grid { grid-template-columns: repeat(2, 1fr); }

    /* ==== STATS ==== */
    .stats_grid { grid-template-columns: repeat(2, 1fr); }

    /* ==== VIDEO ==== */
    .video_grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .video_reel_inner { height: 320px; }

    /* ==== CONTACT ==== */
    .contact_grid { grid-template-columns: 1fr; gap: 28px; }

    /* ==== FOOTER ==== */
    .footer_grid { grid-template-columns: 1fr 1fr; gap: 28px; }

    /* ==== INNER PAGES ==== */
    .service_detail_grid { grid-template-columns: 1fr; gap: 28px; }
    .service_detail_grid.reverse { direction: ltr; }
    .service_img_block img { height: 300px; }
    .about_grid { grid-template-columns: 1fr; }
    .gallery_grid { grid-template-columns: repeat(2, 1fr); }
    .related_grid { grid-template-columns: repeat(2, 1fr); }
    .page_hero_title { font-size: 32px; }
}

/* ============================================================
   768px — Mobile
============================================================ */
@media (max-width: 768px) {

    /* ==== TOP BAR ==== */
    .top_trust_bar { padding: 6px 0; }
    .top_bar_inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 6px 14px;
    }
    .trust_text { font-size: 11px; line-height: 1.4; }
    .top_contact_links { justify-content: center; gap: 8px; }
    .top_sep { display: none; }
    .top_link { font-size: 11px; }

    /* ==== LOGO ==== */
    .logo_area img { height: 50px; }

    /* ==== HERO ==== */
    .hero_section {
        min-height: 100svh;
        padding: 80px 0 40px;
    }
    .hero_inner { padding: 0 15px; gap: 22px; }
    .hero_title { font-size: 28px; line-height: 1.2; }
    .hero_tag { font-size: 12px; padding: 5px 13px; margin-bottom: 14px; }
    .hero_subtitle { font-size: 14px; margin-bottom: 18px; }
    .hero_badges { gap: 7px; margin-bottom: 18px; }
    .hero_badge { font-size: 12px; padding: 5px 12px; }
    .hero_features {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-bottom: 22px;
    }
    .hero_features li { font-size: 13.5px; }
    .hero_cta { gap: 10px; flex-wrap: wrap; }
    .btn_primary { padding: 12px 24px; font-size: 14px; }
    .btn_outline_white { padding: 11px 22px; font-size: 14px; }

    /* ==== QUOTE CARD ==== */
    .quote_card { padding: 22px 16px; border-radius: 14px; }
    .q_row { flex-wrap: wrap; }
    .q_field { min-width: 100%; flex: unset; width: 100%; }
    .q_field input, .q_field select { font-size: 13px; padding: 11px 14px; }
    .q_submit { font-size: 13.5px; padding: 12px; }

    /* ==== SECTION GLOBALS ==== */
    .section { padding: 50px 0; overflow-x: hidden; }
    .section_sm { padding: 32px 0; overflow-x: hidden; }
    .container { padding: 0 15px; }
    .sec_head { margin-bottom: 32px; }
    .sec_title { font-size: 24px; }
    .sec_sub { font-size: 14px; margin-top: 16px; }
    .sec_tag { font-size: 11.5px; }

    /* ==== SERVICE CARDS ==== */
    .services_grid { grid-template-columns: 1fr; gap: 18px; }
    .svc_img_wrap { height: 210px; }
    .svc_body { padding: 40px 18px 22px; }
    .svc_title { font-size: 17px; }
    .svc_desc { font-size: 13.5px; }

    /* ==== VIDEO SECTION ==== */
    .video_grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .video_reel_wrap { padding: 5px; }
    .video_reel_inner { height: 240px; }
    .video_label { padding: 8px 8px 12px; }
    .video_label h4 { font-size: 12px; }

    /* ==== WHY ==== */
    .why_grid { grid-template-columns: 1fr; gap: 14px; }
    .why_card { padding: 22px 18px; text-align: left; }
    .why_card_inner { flex-direction: row; align-items: flex-start; gap: 14px; }
    .why_icon { width: 48px; height: 48px; font-size: 20px; flex-shrink: 0; }

    /* ==== STATS ==== */
    .stats_grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat_card { padding: 22px 12px; }
    .stat_num { font-size: 32px; }
    .stat_label { font-size: 12.5px; }

    /* ==== TESTIMONIALS ==== */
    .testi_card { flex: 0 0 calc(90vw - 28px); min-width: unset; padding: 20px 16px; }
    .testi_text { font-size: 13.5px; }
    .testi_name { font-size: 14px; }

    /* ==== CONTACT ==== */
    .contact_grid { grid-template-columns: 1fr; gap: 24px; }
    .contact_info h3 { font-size: 20px; }
    .contact_info p { font-size: 14px; }
    .contact_item { gap: 12px; }
    .contact_icon_box { width: 40px; height: 40px; font-size: 16px; flex-shrink: 0; }
    .contact_form { padding: 24px 18px; border-radius: 16px; }
    .contact_form h3 { font-size: 20px; margin-bottom: 16px; }
    .form_row { grid-template-columns: 1fr; gap: 12px; }
    .f_field { font-size: 13px; padding: 11px 14px; }
    textarea.f_field { min-height: 90px; }
    .f_submit { font-size: 14px; padding: 13px; }

    /* ==== FOOTER ==== */
    .footer { padding: 40px 0 0; }
    .footer_grid { grid-template-columns: 1fr; gap: 22px; }
    .footer_logo_img { height: 60px; }
    .footer_brand_name { font-size: 16px; }
    .footer_about { font-size: 13px; }
    .footer_col_title { font-size: 14px; margin-bottom: 10px; }
    .footer_links a { font-size: 13px; padding: 5px 0; }
    .footer_bottom_bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 16px 15px;
    }
    .footer_copy { font-size: 12px; line-height: 1.6; }
    .footer_social_icons { gap: 10px; }

    /* ==== MAP ==== */
    .map_section iframe { height: 250px; }

    /* ==== PAGE HERO (inner pages) ==== */
    .page_hero { padding: 50px 0 38px; }
    .page_hero_title { font-size: 24px; }
    .page_hero_sub { font-size: 13.5px; margin-top: 8px; }
    .page_hero_tag { font-size: 12px; padding: 5px 14px; }
    .breadcrumb_nav { font-size: 12.5px; }

    /* ==== SERVICE DETAIL (inner pages) ==== */
    .service_detail_grid { grid-template-columns: 1fr; }
    .service_text_block h2 { font-size: 22px; }
    .service_text_block p { font-size: 14px; }
    .service_features { grid-template-columns: 1fr; gap: 10px; }
    .service_feature_item { padding: 12px 14px; }
    .service_img_block img { height: 230px; border-radius: 14px; }
    .service_cta { gap: 10px; flex-wrap: wrap; }
    .btn_service_call, .btn_service_wa { padding: 11px 20px; font-size: 14px; }

    /* ==== GALLERY ==== */
    .gallery_grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    /* ==== RELATED ==== */
    .related_grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    /* ==== ABOUT ==== */
    .about_grid { grid-template-columns: 1fr; gap: 24px; }
    .about_text h2 { font-size: 22px; }
    .about_text p { font-size: 14px; }
    .about_img_main img { height: 260px; }
    .about_points { grid-template-columns: 1fr; gap: 8px; }
    .abt_point { font-size: 13px; padding: 9px 14px; }

    /* ==== FLOATING BUTTONS ==== */
    .floating_btns { bottom: 18px; right: 12px; gap: 10px; }
    .float_btn { width: 48px; height: 48px; }
    .float_btn i { font-size: 20px; }
    .float_tooltip { display: none !important; }
}

/* ============================================================
   480px — Small Mobile
============================================================ */
@media (max-width: 480px) {

    /* Hero title */
    .hero_title { font-size: 24px; }

    /* Hero CTA stack */
    .hero_cta { flex-direction: column; width: 100%; }
    .hero_cta a { width: 100%; justify-content: center; text-align: center; }
    .btn_primary { width: 100%; justify-content: center; }
    .btn_outline_white { width: 100%; justify-content: center; }

    /* Hero features single col */
    .hero_features { grid-template-columns: 1fr; }

    /* Video grid single col */
    .video_grid { grid-template-columns: 1fr; gap: 12px; }
    .video_reel_inner { height: 300px; }

    /* Stats 2 col */
    .stats_grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat_num { font-size: 26px; }
    .stat_label { font-size: 12px; }

    /* Gallery single col */
    .gallery_grid { grid-template-columns: 1fr; }
    .related_grid { grid-template-columns: 1fr; }

    /* Headings */
    .page_hero_title { font-size: 20px; }
    .sec_title { font-size: 20px; }
    .service_text_block h2 { font-size: 20px; }
    .contact_info h3 { font-size: 18px; }

    /* Service CTA stack */
    .service_cta { flex-direction: column; width: 100%; }
    .service_cta a { width: 100%; text-align: center; justify-content: center; }

    /* Testimonial */
    .testi_card { flex: 0 0 calc(100vw - 30px); }

    /* Quote card compact */
    .quote_card { padding: 18px 14px; border-radius: 12px; }

    /* Why compact */
    .why_card { padding: 18px 14px; }

    /* Footer compact */
    .footer { padding: 32px 0 0; }
    .footer_grid { gap: 18px; }

    /* Floating buttons smaller */
    .floating_btns { bottom: 14px; right: 10px; gap: 8px; }
    .float_btn { width: 44px; height: 44px; }
    .float_btn i { font-size: 18px; }
}

/* ============================================================
   360px — Extra Small Mobile
============================================================ */
@media (max-width: 360px) {
    .hero_title { font-size: 21px; }
    .hero_tag { font-size: 11px; padding: 4px 11px; }
    .hero_subtitle { font-size: 13px; }
    .sec_title { font-size: 19px; }
    .page_hero_title { font-size: 18px; }
    .container { padding: 0 12px; }
    .video_reel_inner { height: 260px; }
    .stats_grid { grid-template-columns: 1fr 1fr; }
    .stat_num { font-size: 22px; }
}


