/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary: #0a2e5c;
    --secondary: #439b1e;
    --accent: #008296;
    --light-bg: #f0f4f8;
    --dark-text: #212529;
    --white: #ffffff;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 8px 32px rgba(10, 46, 92, 0.10);
    --glass-shadow-hover: 0 22px 60px rgba(10, 46, 92, 0.20);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0a2e5c 0%, #008296 100%);
    --gradient-secondary: linear-gradient(135deg, #439b1e 0%, #75d429 100%);
    --gradient-accent: linear-gradient(135deg, #008296 0%, #0a2e5c 100%);
    --gradient-hero: linear-gradient(160deg, rgba(10,46,92,0.45) 0%, rgba(0,130,150,0.28) 100%);

    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    /* Radii */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* ============================================
   GLOBAL BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

::selection { background: var(--accent); color: white; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0%   { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(250%) skewX(-15deg); }
}
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.7); opacity: 0; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes borderPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,130,150,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(0,130,150,0); }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   THEME HELPERS
   ============================================ */
.theme-bold { font-weight: 800; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glossy-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.glossy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: translateX(-100%) skewX(-15deg);
    pointer-events: none;
    z-index: 1;
}
.glossy-card:hover::before { animation: shimmer 0.75s ease forwards; }

.glossy-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(0, 130, 150, 0.22);
}

.glass-modal {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--primary), #0d4a7a, var(--accent), #0d4a7a, var(--primary));
    background-size: 300% 300%;
    animation: gradient-shift 8s ease infinite;
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-right: 18px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.top-bar a:hover { opacity: 0.85; transform: translateY(-1px); }

.top-bar .social-links a {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    font-size: 12px;
    transition: var(--transition);
}
.top-bar .social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(15deg) scale(1.15);
    border-color: white;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-container {
    background: linear-gradient(90deg, #2d6e0f, var(--secondary), #2d6e0f);
    color: var(--white);
    padding: 6px 0;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}
.marquee-container strong { color: #d4f7a0; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 2px 20px rgba(10, 46, 92, 0.07);
    position: sticky;
    top: 0;
    z-index: 1050;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 46, 92, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(10, 46, 92, 0.14);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(0, 130, 150, 0.15);
}
.header.scrolled .logo { height: 70px; }

.logo {
    height: 90px;
    width: auto;
    transition: var(--transition);
}

.nav-link {
    font-weight: 600;
    color: var(--primary) !important;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 2px;
    background: var(--gradient-secondary);
    border-radius: 1px;
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover::after { width: 65%; }
.nav-link:hover { color: var(--secondary) !important; }

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 45px rgba(10, 46, 92, 0.13);
    border-radius: var(--radius-md);
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 46, 92, 0.06);
    animation: fadeInDown 0.22s ease;
    max-height: 420px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 9px 20px;
    font-weight: 500;
    font-size: 13.5px;
    color: var(--dark-text);
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(67,155,30,0.08), transparent);
    color: var(--secondary);
    border-left-color: var(--secondary);
    padding-left: 26px;
}

/* ============================================
   ANIMATED HAMBURGER MENU BUTTON
   ============================================ */
.navbar-toggler {
    border: none !important;
    background: var(--gradient-primary) !important;
    width: 46px;
    height: 46px;
    border-radius: 12px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 !important;
    box-shadow: 0 4px 18px rgba(10, 46, 92, 0.30) !important;
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;
}
.navbar-toggler::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: var(--transition);
    border-radius: 12px;
}
.navbar-toggler:hover::before { opacity: 1; }
.navbar-toggler:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(10, 46, 92, 0.45) !important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(0,130,150,0.30) !important;
    outline: none !important;
}

/* Hide default Bootstrap icon */
.navbar-toggler-icon {
    background-image: none !important;
    width: 22px !important;
    height: 2px !important;
    background: white !important;
    border-radius: 2px;
    position: relative;
    transition: var(--transition) !important;
    display: block;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}
.navbar-toggler-icon::before { top: -7px; width: 16px; }
.navbar-toggler-icon::after  { top:  7px; width: 19px; }

/* X morph when menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent !important;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
    width: 22px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
    width: 22px;
}

.btn-call {
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 13px;
    background: var(--gradient-primary);
    border: none;
    color: white !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 46, 92, 0.28);
    position: relative;
    overflow: hidden;
}
.btn-call::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: rgba(255,255,255,0.22);
    transform: skewX(-20deg);
    transition: 0.55s;
}
.btn-call:hover::before { left: 150%; }
.btn-call:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 25px rgba(10, 46, 92, 0.38);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section { position: relative; }

.hero-slide-img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 9s ease;
}
.swiper-slide-active .hero-slide-img { transform: scale(1.05); }

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 14px;
    animation: fadeInDown 1s ease;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.5s both;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 9px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.28);
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

/* ============================================
   QUICK CONTACT FORM
   ============================================ */
.quick-contact-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.quick-contact {
    padding: 38px 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0a2e5c 0%, #005f6e 60%, #008296 100%);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Decorative bubbles */
.quick-contact::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -130px; right: -80px;
    pointer-events: none;
}
.quick-contact::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -70px; left: 30px;
    pointer-events: none;
}

/* Left text block */
.qc-left {
    flex: 0 0 auto;
    max-width: 300px;
}

.qc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.14);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.22);
    letter-spacing: 0.4px;
}
.qc-badge i { color: #f9c74f; }

.qc-title {
    color: white;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}
.qc-title span { color: #75d429; }

.qc-subtitle {
    color: rgba(255,255,255,0.70);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}
.qc-subtitle strong { color: white; }

/* Right form block */
.qc-form { flex: 1; }

.qc-fields {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.qc-input-wrap {
    position: relative;
    flex: 1;
    min-width: 160px;
}
.qc-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    z-index: 2;
    pointer-events: none;
}

.qc-input {
    display: block;
    width: 100%;
    height: 52px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.40);
    padding: 0 18px 0 42px;
    font-size: 14.5px;
    font-family: inherit;
    background: rgba(0, 30, 60, 0.45);
    color: white;
    transition: var(--transition);
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.25);
    outline: none;
}
.qc-input::placeholder { color: rgba(255,255,255,0.75) !important; }
.qc-input:focus {
    background: rgba(0, 40, 75, 0.60) !important;
    border-color: rgba(255,255,255,0.80) !important;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.12), inset 0 1px 4px rgba(0,0,0,0.20) !important;
    outline: none !important;
    color: white !important;
}
/* Override browser autofill white background */
.qc-input:-webkit-autofill,
.qc-input:-webkit-autofill:hover,
.qc-input:-webkit-autofill:focus,
.qc-input:-webkit-autofill:active {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 30, 60, 0.70) inset !important;
    box-shadow: 0 0 0px 1000px rgba(0, 30, 60, 0.70) inset !important;
    border-color: rgba(255,255,255,0.55) !important;
    caret-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.qc-submit-btn {
    height: 52px;
    padding: 0 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    background: var(--gradient-secondary);
    border: none;
    color: white;
    transition: var(--transition);
    box-shadow: 0 6px 22px rgba(67,155,30,0.45);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.qc-submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: 0.55s;
}
.qc-submit-btn:hover::before { left: 160%; }
.qc-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(67,155,30,0.55);
}
.qc-submit-btn i { transition: transform 0.3s ease; }
.qc-submit-btn:hover i { transform: translateX(4px); }

/* Trust row */
.qc-trust-row {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.qc-trust-row span {
    color: rgba(255,255,255,0.62);
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.qc-trust-row span i { color: #75d429; font-size: 11px; }

/* ============================================
   SECTIONS
   ============================================ */
.section-padding { padding: 90px 0; }

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 0;
    width: 60px; height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.section-title:hover::after { width: 100%; }
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    font-weight: 600;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-20deg);
    transition: 0.55s;
}
.btn-primary:hover::before { left: 150%; }
.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 130, 150, 0.38);
    border: none;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    transition: var(--transition-slow) !important;
    overflow: hidden;
}
.service-img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.service-card:hover .service-img { transform: scale(1.13); }

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 0 2px var(--accent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 28px 65px rgba(10, 46, 92, 0.20) !important;
}

/* ============================================
   STAT BOXES
   ============================================ */
.stat-box {
    transition: var(--transition-slow) !important;
    position: relative;
    overflow: hidden;
}
.stat-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,130,150,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-slow);
}
.stat-box:hover::before { opacity: 1; }
.stat-box:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 22px 55px rgba(10, 46, 92, 0.16) !important;
}
.stat-box i {
    transition: var(--transition);
    display: inline-block;
}
.stat-box:hover i {
    transform: scale(1.25) rotate(8deg);
    filter: drop-shadow(0 4px 14px rgba(0,130,150,0.45));
}

/* ============================================
   WHY CHOOSE US / FEATURE CARDS
   ============================================ */
.glossy-card.h-100.p-4 {
    transition: var(--transition-slow) !important;
    position: relative;
    overflow: hidden;
}
.glossy-card.h-100.p-4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--gradient-secondary);
    transition: width 0.4s ease;
}
.glossy-card.h-100.p-4:hover::after { width: 100%; }
.glossy-card.h-100.p-4:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 22px 55px rgba(10, 46, 92, 0.16) !important;
}
.glossy-card.h-100.p-4 i {
    transition: var(--transition);
    display: inline-block;
}
.glossy-card.h-100.p-4:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: var(--accent) !important;
}

/* ============================================
   REVIEW CARDS
   ============================================ */
.review-card {
    transition: var(--transition) !important;
    position: relative;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: -8px; left: 16px;
    font-size: 90px;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.10;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}
.review-card:hover::before { opacity: 0.22; }
.review-card:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 22px 55px rgba(10, 46, 92, 0.16) !important;
    border-color: rgba(0, 130, 150, 0.28) !important;
}
.review-card .fa-star { transition: var(--transition); }
.review-card:hover .fa-star {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 6px rgba(255,193,7,0.5));
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion-button {
    transition: var(--transition) !important;
    border-radius: var(--radius-sm) !important;
    font-size: 15px !important;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(10,46,92,0.06), rgba(0,130,150,0.05)) !important;
    color: var(--primary) !important;
    box-shadow: none !important;
    border-left: 3px solid var(--accent) !important;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(0,130,150,0.12) !important; }
.accordion-item {
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item:hover {
    box-shadow: 0 8px 28px rgba(10, 46, 92, 0.10) !important;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-size: 300% 300%;
    animation: gradient-shift 10s ease infinite;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.06) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}
.cta-section .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255,255,255,0.25) !important;
}
.cta-section .btn-success:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37,211,102,0.35) !important;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    padding: 110px 0 70px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.07) 0%, transparent 55%);
    pointer-events: none;
}
.page-header h1 { animation: fadeInDown 0.8s ease; }
.page-header p  { animation: fadeInUp 0.8s ease 0.3s both; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
    transition: var(--transition-slow) !important;
    cursor: pointer;
}
.gallery-item:hover {
    transform: translateY(-9px) scale(1.02) !important;
    box-shadow: 0 28px 65px rgba(10, 46, 92, 0.22) !important;
}
.gallery-item img {
    transition: transform 0.65s ease !important;
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay { transition: var(--transition) !important; }
.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(10,46,92,0.95), rgba(0,130,150,0.4)) !important;
}

/* ============================================
   SERVICE PAGE IMAGE WRAPPER
   ============================================ */
.image-wrapper,
.glossy-image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow-hover);
    position: relative;
    transition: var(--transition-slow);
}
.glossy-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--radius-lg);
}
.glossy-image-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(10, 46, 92, 0.22);
}
.glossy-image-container img,
.image-wrapper img {
    transition: transform 0.65s ease;
    display: block;
}
.glossy-image-container:hover img,
.image-wrapper:hover img { transform: scale(1.04); }

/* ============================================
   FOOTER DESC
   ============================================ */
.footer-desc {
    color: #a8c4d8;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 8px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form .form-control,
.contact-form .form-select {
    transition: var(--transition) !important;
    border: 2px solid transparent !important;
    background: rgba(240,248,255,0.8) !important;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(0,130,150,0.10) !important;
    background: white !important;
    transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: #c8d8e8;
    padding: 70px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-secondary);
}

.footer-logo {
    max-height: 80px;
    background: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.footer-logo:hover { transform: scale(1.06); }

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.35s ease;
}
.footer-title:hover::after { width: 60px; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #c8d8e8;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.footer-links a::before {
    content: '›';
    font-size: 18px;
    color: var(--secondary);
    transition: var(--transition);
    line-height: 1;
}
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-links a:hover::before { transform: translateX(4px); }

.footer-contact li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}
.footer-contact i {
    color: var(--secondary);
    margin-right: 14px;
    margin-top: 3px;
    font-size: 15px;
    min-width: 18px;
}
.footer-contact a {
    color: #c8d8e8;
    text-decoration: none;
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--secondary); }

.copyright {
    background: rgba(0, 0, 0, 0.22);
    padding: 20px 0;
    margin-top: 50px;
    font-size: 13px;
}
.copyright a.theme-bold {
    color: var(--secondary) !important;
    text-decoration: none;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-phone,
.floating-whatsapp {
    position: fixed;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 26px;
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.floating-phone {
    right: 22px;
    bottom: 100px;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.45);
    animation: float 3.2s ease-in-out infinite;
}
.floating-whatsapp {
    right: 22px;
    bottom: 28px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    animation: float 3.2s ease-in-out 1.6s infinite;
}

/* Pulse rings */
.floating-phone::before,
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    animation: pulse-ring 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.floating-phone::before { background: rgba(0, 123, 255, 0.35); }
.floating-whatsapp::before { background: rgba(37, 211, 102, 0.35); animation-delay: 1.1s; }

.floating-phone:hover,
.floating-whatsapp:hover {
    transform: scale(1.18) rotate(8deg);
    color: white;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
#scrollToTop {
    position: fixed;
    bottom: 170px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(10,46,92,0.35);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}
#scrollToTop.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
#scrollToTop:hover {
    transform: translateY(-4px) scale(1.12);
    box-shadow: 0 10px 28px rgba(10,46,92,0.45);
}

/* ============================================
   SWEETALERT2 CUSTOM POPUPS
   ============================================ */

/* Backdrop blur */
.swal2-backdrop-show {
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Main popup container */
.swal-custom-popup.swal2-popup {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    box-shadow: 0 30px 80px rgba(10, 46, 92, 0.28), 0 0 0 1px rgba(255,255,255,0.5) inset !important;
    padding: 40px 36px 32px !important;
    max-width: 460px !important;
    overflow: visible !important;
}

/* Hide default SweetAlert2 icon */
.swal-custom-popup .swal2-icon { display: none !important; }
.swal-custom-popup .swal2-title { display: none !important; }
.swal-custom-popup .swal2-html-container {
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    text-align: center;
}

/* Icon circles */
.swal-icon-circle {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: -20px auto 20px;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    animation: swalIconBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.swal-icon-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    opacity: 0.25;
    animation: pulse-ring 2.5s ease infinite;
}

.swal-success-circle {
    background: linear-gradient(135deg, #439b1e, #75d429);
    color: white;
}
.swal-success-circle::before { background: #439b1e; }

.swal-error-circle {
    background: linear-gradient(135deg, #e53e3e, #fc5c5c);
    color: white;
}
.swal-error-circle::before { background: #e53e3e; }

.swal-warn-circle {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white;
}
.swal-warn-circle::before { background: #d97706; }

@keyframes swalIconBounce {
    0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
    70%  { transform: scale(1.15) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Title & text */
.swal-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.swal-sub-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #5a6a7e;
    line-height: 1.7;
    margin: 0 0 22px;
}
.swal-sub-text strong { color: var(--primary); }

/* Contact strip */
.swal-contact-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.swal-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(10, 46, 92, 0.07);
    color: var(--primary);
    border: 1px solid rgba(10,46,92,0.12);
}
.swal-contact-chip:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,46,92,0.25);
}

.swal-wa-chip {
    background: rgba(37, 211, 102, 0.10);
    color: #128C7E;
    border-color: rgba(37,211,102,0.25);
}
.swal-wa-chip:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* Action buttons */
.swal2-actions { margin-top: 24px !important; gap: 10px !important; }

.swal-btn-success.swal2-confirm {
    background: linear-gradient(135deg, #439b1e, #75d429) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 6px 20px rgba(67,155,30,0.4) !important;
    transition: all 0.3s ease !important;
}
.swal-btn-success.swal2-confirm:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 10px 30px rgba(67,155,30,0.5) !important;
}

.swal-btn-error.swal2-confirm {
    background: linear-gradient(135deg, #0a2e5c, #008296) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 6px 20px rgba(10,46,92,0.35) !important;
    transition: all 0.3s ease !important;
}
.swal-btn-error.swal2-confirm:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 10px 30px rgba(10,46,92,0.45) !important;
}

.swal-btn-warn.swal2-confirm {
    background: linear-gradient(135deg, #d97706, #f59e0b) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 6px 20px rgba(217,119,6,0.35) !important;
    transition: all 0.3s ease !important;
}
.swal-btn-warn.swal2-confirm:hover {
    transform: translateY(-2px) scale(1.04) !important;
    box-shadow: 0 10px 30px rgba(217,119,6,0.45) !important;
}

.swal-btn-cancel.swal2-cancel {
    background: transparent !important;
    border: 2px solid rgba(10,46,92,0.15) !important;
    color: #5a6a7e !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}
.swal-btn-cancel.swal2-cancel:hover {
    background: rgba(10,46,92,0.06) !important;
    border-color: rgba(10,46,92,0.3) !important;
    color: var(--primary) !important;
}

/* Timer progress bar */
.swal-timer-bar.swal2-timer-progress-bar {
    background: linear-gradient(90deg, #439b1e, #75d429) !important;
    height: 4px !important;
    border-radius: 2px !important;
}

/* Pop-in / pop-out animations */
@keyframes swalPopIn {
    0%   { transform: scale(0.7) translateY(30px); opacity: 0; }
    70%  { transform: scale(1.04) translateY(-4px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
@keyframes swalPopOut {
    0%   { transform: scale(1) translateY(0); opacity: 1; }
    100% { transform: scale(0.85) translateY(20px); opacity: 0; }
}
.swal-pop-in  { animation: swalPopIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) both; }
.swal-pop-out { animation: swalPopOut 0.25s ease forwards; }

/* ============================================
   HOVER LIFT UTILITY
   ============================================ */
.hover-lift {
    transition: var(--transition-slow) !important;
}
.hover-lift:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 22px 55px rgba(10, 46, 92, 0.16) !important;
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .hero-slide-img { height: 100vw; }
    .hero-title { font-size: 2.1rem; letter-spacing: 1px; }
    .hero-subtitle { font-size: 0.95rem; padding: 7px 18px; }

    .quick-contact-section { margin-top: -30px; }
    .quick-contact {
        padding: 28px 22px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .qc-left { max-width: 100%; }
    .qc-title { font-size: 1.35rem; }
    .qc-fields { flex-direction: column; }
    .qc-input-wrap { width: 100%; }
    .qc-submit-btn { width: 100%; justify-content: center; }

    .section-padding { padding: 60px 0; }
    .section-title { font-size: 1.9rem; }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: 0 18px 45px rgba(10, 46, 92, 0.14);
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        max-height: 75vh;
        overflow-y: auto;
        border-top: 3px solid var(--accent);
    }
    .nav-item { text-align: center; width: 100%; margin-bottom: 4px; }
    .nav-link::after { display: none; }
    .dropdown-menu {
        background: rgba(240,248,255,0.96);
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
        max-height: 300px;
    }
    .dropdown-item { text-align: center; }
    .btn-call { width: 100%; margin-top: 15px; }

    .floating-phone  { right: 14px; bottom: 82px; width: 50px; height: 50px; font-size: 22px; }
    .floating-whatsapp { right: 14px; bottom: 20px; width: 50px; height: 50px; font-size: 22px; }
    #scrollToTop { right: 14px; bottom: 150px; }

    .page-header { padding: 80px 0 50px; }
}