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

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-h: 198;
    --primary-s: 81%;
    --primary-l: 23%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l)); /* Deep Ocean Blue */
    --primary-light: hsl(var(--primary-h), var(--primary-s), 35%);
    --primary-ultra-light: hsl(var(--primary-h), var(--primary-s), 95%);
    
    --secondary-h: 11;
    --secondary-s: 100%;
    --secondary-l: 61%;
    --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l)); /* Industrial Orange */
    --secondary-hover: hsl(var(--secondary-h), var(--secondary-s), 50%);

    --accent-h: 193;
    --accent-s: 99%;
    --accent-l: 47%;
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l)); /* Sky Cyan */

    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-light: #e2e8f0;
    --gray: #64748b;
    --gray-dark: #334155;
    
    /* Layout Variables */
    --font-family: 'Outfit', sans-serif;
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 32px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-primary: 0 10px 20px -3px rgba(11, 79, 108, 0.3);
    --shadow-secondary: 0 10px 20px -3px rgba(255, 90, 54, 0.3);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--light);
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--light);
}
::-webkit-scrollbar-thumb:hover {
    background: hsl(203.7, 93.8%, 44.5%);
}

/* Selection */
::selection {
    background-color: hsl(203.7, 93.8%, 44.5%);
    color: var(--white);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.section-title-wrapper {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: hsl(203.7, 93.8%, 44.5%);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background-color: hsl(203.7, 93.8%, 44.5%);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

.section-title-left {
    text-align: left;
    margin-left: 0;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: hsl(203.7, 93.8%, 44.5%);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

.btn-secondary {
    background-color: hsl(203.7, 93.8%, 44.5%);
    color: var(--white);
    box-shadow: var(--shadow-secondary);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 24px;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info svg {
    width: 16px;
    height: 16px;
    stroke: hsl(203.7, 93.8%, 44.5%);
}

.top-bar-socials {
    display: flex;
    gap: 16px;
}

.top-bar-socials a:hover {
    color: hsl(203.7, 93.8%, 44.5%);
}

header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

header.scrolled {
    padding: 5px 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 75px;
   
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(203.7, 93.8%, 44.5%);
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-dark);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: hsl(203.7, 93.8%, 44.5%);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links li.active a::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links li.active a {
    color: var(--primary);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-ultra-light);
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--gray-light);
}

.nav-phone:hover {
    background-color: var(--primary);
    color: var(--white);
}

.nav-phone svg {
    width: 18px;
    height: 18px;
    stroke: hsl(203.7, 93.8%, 44.5%);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ==========================================================================
/* ==========================================================================
   HERO BANNER & SLIDER
   ========================================================================== */

/* === Keyframe Animations === */
@keyframes heroBadgePop {
    0%   { opacity: 0; transform: translateY(-16px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes heroTitleIn {
    0%   { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroParaIn {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroBtnsIn {
    0%   { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulseRing {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2);   opacity: 0; }
}
@keyframes kbZoom {
    0%   { transform: scale(1.08); }
    100% { transform: scale(1); }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes particleDrift {
    0%,100% { transform: translateY(0) translateX(0) scale(1); opacity: .55; }
    50%      { transform: translateY(-36px) translateX(18px) scale(1.15); opacity: 1; }
}
@keyframes lineGrow {
    from { transform: translateX(-50%) scaleX(0); }
    to   { transform: translateX(-50%) scaleX(1); }
}

/* === Slider Container === */
.hero-slider {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 540px;
    max-height: 900px;
    background-color: var(--dark);
    overflow: hidden;
}

/* ambient glow orbs */
.hero-slider::before,
.hero-slider::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}
.hero-slider::before {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,110,30,.14) 0%, transparent 68%);
    top: -100px; right: -100px;
    animation: particleDrift 9s ease-in-out infinite;
}
.hero-slider::after {
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(0,190,220,.12) 0%, transparent 68%);
    bottom: 50px; left: -60px;
    animation: particleDrift 11s ease-in-out infinite reverse;
}

.slide-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease-in-out, visibility .9s;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Ken-Burns zoom on background image */
.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}
.slide.active .slide-img {
    transform: scale(1);
    animation: kbZoom 8s ease-out forwards;
}

/* Dark gradient overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 18, 38, 0.82) 0%,
        rgba(11, 60, 100, 0.65) 55%,
        rgba(10, 18, 38, 0.45) 100%
    );
    z-index: 2;
}

/* ============================================
   SLIDE CONTENT — PERFECTLY CENTERED
   ============================================ */
.hero-slider .container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;       /* horizontal center */
    justify-content: center;   /* vertical center   */
    z-index: 4;
    text-align: center;        /* text center       */
}

.slide-content {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    /* start hidden; animated in when slide becomes active */
    opacity: 0;
    transform: translateY(44px);
    transition: none;
}
.slide.active .slide-content {
    opacity: 1;         /* reset so child animations run cleanly */
    transform: translateY(0);
    animation: none;    /* children carry individual animations */
}

/* ── Badge pill ── */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 110, 30, 0.18);
    border: 1.5px solid rgba(255, 110, 30, 0.50);
    color: #ff8c45;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    /* animate in */
    opacity: 0;
    transform: translateY(-14px);
}
.slide.active .slide-badge {
    animation: heroBadgePop .6s cubic-bezier(.4,0,.2,1) .2s forwards;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7a28;
    flex-shrink: 0;
    animation: pulseRing 1.6s ease-out infinite;
}

/* ── Main Heading ── */
.slide-content h2 {
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    /* animate in */
    opacity: 0;
    transform: translateY(38px);
}
.slide.active .slide-content h2 {
    animation: heroTitleIn .75s cubic-bezier(.4,0,.2,1) .38s forwards;
}

/* accent word underline */
.accent-line {
    position: relative;
    display: inline-block;
    color: #ff8c45;
}
.accent-line::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff7a28, #00c8e0);
    border-radius: 4px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    animation: lineGrow .7s ease .95s forwards;
}

/* ── Description paragraph ── */
.slide-content p {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    line-height: 1.78;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 400;
    max-width: 640px;
    margin: 0 auto 40px;
    /* animate in */
    opacity: 0;
    transform: translateY(28px);
}
.slide.active .slide-content p {
    animation: heroParaIn .7s cubic-bezier(.4,0,.2,1) .54s forwards;
}

/* ── Button Row — centered ── */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;   /* ← CENTERED */
    gap: 16px;
    flex-wrap: wrap;
    /* animate in */
    opacity: 0;
    transform: translateY(22px);
}
.slide.active .hero-buttons {
    animation: heroBtnsIn .7s cubic-bezier(.4,0,.2,1) .68s forwards;
}

/* Primary CTA — orange pill */
.btn-contact-hero {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(135deg, #ff7a28 0%, #ff5c1a 100%);
    box-shadow: 0 8px 28px rgba(255, 90, 20, 0.45);
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .4px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    white-space: nowrap;
}
.btn-contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
}
.btn-contact-hero:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(255, 90, 20, 0.6);
    color: #fff;
}
.btn-contact-hero:hover::after { opacity: 1; }

/* pulse rings */
.pulse-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50px;
    border: 2px solid rgba(255, 120, 50, 0.55);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
}
.pulse-ring:nth-child(2) { animation-delay: .8s; }

.btn-contact-hero svg {
    width: 17px;
    height: 17px;
    stroke: #fff;
    flex-shrink: 0;
}

/* Outline / ghost button */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 34px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.55);
    backdrop-filter: blur(6px);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .4px;
    transition: background .3s ease, border-color .3s ease, transform .3s ease;
    white-space: nowrap;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.22);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 62px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    color: rgba(255,255,255,.5);
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-indicator .scroll-line {
    width: 1.5px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
    border-radius: 2px;
}

/* ── Slider nav arrows ── */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.28);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: background .25s, border-color .25s, transform .25s;
}
.slider-control:hover {
    background: hsl(203.7, 93.8%, 44.5%);
    border-color: hsl(203.7, 93.8%, 44.5%);
    transform: translateY(-50%) scale(1.1);
}
.slider-control.prev { left: 24px; }
.slider-control.next { right: 24px; }

/* ── Dots ── */
.slider-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: 1.5px solid rgba(255,255,255,.18);
    cursor: pointer;
    transition: all .35s ease;
}
.slider-dot.active {
    background: hsl(203.7, 93.8%, 44.5%);
    border-color: hsl(203.7, 93.8%, 44.5%);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================================================
   ABOUT HIGHLIGHT SECTION
   ========================================================================== */
.about-highlight {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-main-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 6px solid var(--white);
}

.about-img-box::before {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-experience-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: hsl(203.7, 93.8%, 44.5%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.about-experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-content p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    color: var(--gray);
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary);
}

.about-features-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-ultra-light);
    border-radius: 50%;
    color: hsl(203.7, 93.8%, 44.5%);
    font-weight: 800;
}

/* ==========================================================================
   SERVICES GRID & CARDS
   ========================================================================== */
.services-section {
    background-color: var(--primary-ultra-light);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card-new {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card-header {
    padding: 30px 30px 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    max-width: 75%;
}

.service-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-light);
    line-height: 1;
    transition: var(--transition);
}

.service-card-new:hover .service-num {
    color: hsl(203.7, 93.8%, 44.5%);
}

.service-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-new:hover .service-img-container img {
    transform: scale(1.1);
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 79, 108, 0.4), transparent);
}

.service-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card-body p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card-body .btn {
    margin-top: auto;
}

.services-action {
    margin-top: 20px;
}

/* ==========================================================================
   WHY CHOOSE US & STATS
   ========================================================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-light);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: hsl(203.7, 93.8%, 44.5%);
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-ultra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background-color: hsl(203.7, 93.8%, 44.5%);
    color: var(--white);
}

.why-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.why-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background-color:hsl(197.8, 82.1%, 15.3%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(203.7, 93.8%, 44.5%);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-ultra-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   PAGE HEADER / BANNER
   ========================================================================== */
.page-banner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 79, 108, 0.9) 100%), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-ultra-light);
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb a:hover {
    color: hsl(203.7, 93.8%, 44.5%);
}

.breadcrumb li:not(:last-child)::after {
    content: '➔';
    font-size: 0.75rem;
    color: var(--gray);
}

/* ==========================================================================
   ABOUT PAGE TIMELINE
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--gray-light);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    clear: both;
}

.timeline-item.left {
    float: left;
    text-align: right;
}

.timeline-item.right {
    float: right;
    text-align: left;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    position: relative;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: hsl(203.7, 93.8%, 44.5%);
}

/* Timeline dot */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: hsl(203.7, 93.8%, 44.5%);
    border: 4px solid var(--white);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.timeline-item.left::after {
    right: -10px;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 8px;
    line-height: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ==========================================================================
   SERVICES DETAILED CATALOG
   ========================================================================== */
.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    margin-bottom: 50px;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-detail-img {
    height: 380px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-img img {
    transform: scale(1.05);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 24px;
}

.service-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.service-bullets li {
    font-weight: 600;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-bullets li::before {
    content: '➔';
    color: hsl(203.7, 93.8%, 44.5%);
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--primary-ultra-light);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(203.7, 93.8%, 44.5%);
    line-height: 1;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: hsl(203.7, 93.8%, 44.5%);
}

.faq-item.active .faq-header {
    background-color: var(--primary-ultra-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content {
    padding: 0 30px 24px 30px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    background-color: var(--white);
    color: var(--gray-dark);
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 300px;
    cursor: pointer;
    border: 4px solid var(--white);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 79, 108, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
    transform: translateY(15px);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: hsl(203.7, 93.8%, 44.5%);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-overlay p {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: hsl(203.7, 93.8%, 44.5%);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    background-color: hsl(203.7, 93.8%, 44.5%);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: hsl(203.7, 93.8%, 44.5%);
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-ultra-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card:hover .contact-icon-box {
    background-color: hsl(203.7, 93.8%, 44.5%);
    color: var(--white);
}

.contact-icon-box svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.contact-details h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.contact-details p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-light);
    background-color: var(--light);
    font-weight: 500;
    color: var(--gray-dark);
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: hsl(203.7, 93.8%, 44.5%);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.1);
}

.form-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition-fast);
}

textarea.form-input {
    height: 150px;
    resize: none;
}

textarea ~ .form-label {
    top: 24px;
    transform: none;
}

/* Floating Label Animation */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 0;
    left: 12px;
    transform: translateY(-50%) scale(0.85);
    background-color: var(--white);
    padding: 0 8px;
    color: hsl(203.7, 93.8%, 44.5%);
    font-weight: 600;
}

.form-status {
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-status.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Map Section */
.map-container {
    height: 450px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 80px;
    border: 4px solid var(--white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: hsl(203.7, 93.8%, 44.5%);
    border-radius: 2px;
}

.footer-col p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: hsl(203.7, 93.8%, 44.5%);
    padding-left: 6px;
}

/* Footer Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    background: #fff;
  border-radius: 30px;
}

/* Footer Social Links with Liquid Wave Animation */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease, fill 0.4s ease, stroke 0.4s ease;
    z-index: 2;
}

/* Background expansion layer for water liquid-wave effect */
.social-link::before {
    content: '';
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.social-link:hover::before {
    top: 0;
    border-radius: 0;
}

/* WhatsApp Brand Styling */
.social-link.whatsapp {
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.social-link.whatsapp svg {
    fill: #25d366;
}

.social-link.whatsapp::before {
    background: #25d366;
}

.social-link.whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    animation: pulse-whatsapp 1.5s infinite;
}

.social-link.whatsapp:hover svg {
    fill: #ffffff;
}

/* Instagram Brand Styling */
.social-link.instagram {
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.25);
}

.social-link.instagram svg {
    fill: #e1306c;
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
    animation: pulse-instagram 1.5s infinite;
}

.social-link.instagram:hover svg {
    fill: #ffffff;
}

/* Facebook Brand Styling */
.social-link.facebook {
    color: #1877f2;
    border: 1px solid rgba(24, 119, 242, 0.25);
}

.social-link.facebook svg {
    fill: #1877f2;
}

.social-link.facebook::before {
    background: #1877f2;
}

.social-link.facebook:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.5);
    animation: pulse-facebook 1.5s infinite;
}

.social-link.facebook:hover svg {
    fill: #ffffff;
}

/* YouTube Brand Styling */
.social-link.youtube {
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.25);
}

.social-link.youtube svg {
    fill: #ff0000;
}

.social-link.youtube::before {
    background: #ff0000;
}

.social-link.youtube:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: pulse-youtube 1.5s infinite;
}

.social-link.youtube:hover svg {
    fill: #ffffff;
}

/* Keyframes for Pulse Animations */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-instagram {
    0% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(225, 48, 108, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0); }
}

@keyframes pulse-facebook {
    0% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(24, 119, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 119, 242, 0); }
}

@keyframes pulse-youtube {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer-contact-list svg {
    width: 20px;
    height: 20px;
    stroke: hsl(203.7, 93.8%, 44.5%);
    flex-shrink: 0;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
}

/* ==========================================================================
   SCROLL REVEAL & UNIQUE ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Micro animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes waterRipple {
    0% { box-shadow: 0 0 0 0 rgba(1, 186, 239, 0.4), 0 0 0 10px rgba(1, 186, 239, 0.2), 0 0 0 20px rgba(1, 186, 239, 0.1); }
    100% { box-shadow: 0 0 0 10px rgba(1, 186, 239, 0.2), 0 0 0 20px rgba(1, 186, 239, 0.1), 0 0 0 30px rgba(1, 186, 239, 0); }
}

.ripple-btn {
    animation: waterRipple 2s infinite;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .section-padding {
        padding: 60px 20px 20px 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Hero slide content stays centered at tablet */
    .slide-content h2 {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }

    .hero-scroll-indicator {
        bottom: 60px;
    }
    
    .about-highlight {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-img-box {
        padding-right: 0;
        padding-bottom: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-item.left,
    .timeline-item.right {
        float: none;
        text-align: left;
    }
    
    .timeline-item::after {
        left: 30px !important;
        right: auto !important;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .service-detail-card:nth-child(even) .service-detail-content {
        order: 2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-phone {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* === Hero Banner Responsive === */
    .hero-slider {
        min-height: 480px;
    }
    .slide-content {
        padding: 0 14px;
        max-width: 680px;
    }
    .slide-badge {
        font-size: 0.72rem;
        padding: 5px 14px;
        letter-spacing: 1.8px;
    }
    .slide-content h2 {
        font-size: clamp(1.7rem, 5vw, 2.8rem);
        margin-bottom: 14px;
    }
    .slide-content p {
        font-size: 0.97rem;
        margin-bottom: 34px;
    }
    .hero-buttons {
        gap: 14px;
    }
    .btn-contact-hero {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    .btn-hero-outline {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    .slider-control {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .slider-control.prev { left: 16px; }
    .slider-control.next { right: 16px; }
    
    .services-grid-new {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        height: 300px;
        margin-top: 50px;
    }
}

/* ── Mobile phones ≤ 768px ── */
@media screen and (max-width: 768px) {
    /* Hero — stack buttons, smaller font */
    .hero-slider {
        height: calc(100vh - 80px);
        min-height: 440px;
    }
    .hero-slider .container {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .slide-content {
        max-width: 100%;
        padding: 0 20px;
    }
    .slide-badge {
        font-size: 0.68rem;
        padding: 5px 12px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
    .slide-content h2 {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        margin: 0 0 14px;
        letter-spacing: -0.2px;
    }
    .slide-content p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin: 0 auto 28px;
        max-width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    .btn-contact-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 22px;
        font-size: 0.93rem;
    }
    .hero-scroll-indicator {
        display: none;
    }
    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    .slider-control.prev { left: 10px; }
    .slider-control.next { right: 10px; }
}

/* ── Small phones ≤ 480px ── */
@media screen and (max-width: 480px) {
    .hero-slider {
        min-height: 400px;
    }
    .slide-badge {
        font-size: 0.62rem;
        padding: 4px 11px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    .slide-content h2 {
        font-size: clamp(1.35rem, 8.5vw, 1.9rem);
        margin-bottom: 12px;
    }
    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    .btn-contact-hero,
    .btn-hero-outline {
        max-width: 270px;
        padding: 13px 18px;
        font-size: 0.88rem;
    }
    .slider-control {
        width: 36px;
        height: 36px;
    }
    .slider-control.prev { left: 8px; }
    .slider-control.next { right: 8px; }
    .slider-dots { bottom: 20px; }
}

/* ==========================================================================
   FLOATING CONTACT WIDGET
   ========================================================================== */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #fff);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.float-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

/* Call Button */
.call-float {
    background-color: hsl(203.7, 93.8%, 44.5%);
    box-shadow: 0 10px 25px rgba(255, 90, 54, 0.3);
}

.call-float svg {
    stroke: var(--white, #fff);
}

.call-float:hover {
    transform: translateY(-5px) scale(1.08) rotate(15deg);
    background-color: var(--secondary-hover);
    box-shadow: 0 15px 30px rgba(255, 90, 54, 0.5);
}

/* WhatsApp Button */
.whatsapp-float {
    background-color: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-float svg {
    fill: var(--white, #fff);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08) rotate(-15deg);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.5);
}

/* Eye-Catching Periodical Wiggle Animation */
.float-btn {
    animation: floating-wiggle 6s ease-in-out infinite;
}

.whatsapp-float {
    animation-delay: 3s; /* offset wiggle between the two buttons */
}

@keyframes floating-wiggle {
    0%, 90%, 100% {
        transform: translateY(0);
    }
    92% {
        transform: translateY(-4px) rotate(4deg);
    }
    94% {
        transform: translateY(-2px) rotate(-4deg);
    }
    96% {
        transform: translateY(-4px) rotate(3deg);
    }
    98% {
        transform: translateY(-1px) rotate(-2deg);
    }
}

/* Premium Double Pulse Ring Animation */
.float-btn::before,
.float-btn::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.call-float::before,
.call-float::after {
    border-color: hsl(203.7, 93.8%, 44.5%);
}

.whatsapp-float::before,
.whatsapp-float::after {
    border-color: #25d366;
}

.float-btn::before {
    animation: double-pulse-1 2.5s cubic-bezier(0.25, 0, 0, 1) infinite;
}

.float-btn::after {
    animation: double-pulse-2 2.5s cubic-bezier(0.25, 0, 0, 1) infinite;
    animation-delay: 1.25s;
}

@keyframes double-pulse-1 {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes double-pulse-2 {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

/* Perfect Responsiveness */
@media (max-width: 768px) {
    .floating-contact-wrap {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
    .float-btn svg {
        width: 22px;
        height: 22px;
    }
    @keyframes double-pulse-1 {
        0% {
            transform: scale(0.95);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.35);
            opacity: 0;
        }
    }
    @keyframes double-pulse-2 {
        0% {
            transform: scale(0.95);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.35);
            opacity: 0;
        }
    }
}

/* ==========================================================================
   TESTIMONIALS SLIDER SECTION
   ========================================================================== */
.testimonial-section {
    background-color: var(--white);
    overflow: hidden;
}

.testimonial-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.testimonial-container {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.testimonial-item {
    flex: 0 0 33.333%;
    padding: 15px;
    box-sizing: border-box;
    opacity: 0.4;
    transform: scale(0.85) rotate(-1deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-item.active-slide {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, hsla(var(--secondary-h), var(--secondary-s), var(--secondary-l), 0.05));
    transition: all 0.4s ease;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: hsl(203.7, 93.8%, 44.5%);
}

.testimonial-card:hover::after {
    height: 100%;
}

.quote-icon {
    font-size: 4rem;
    color: hsla(var(--secondary-h), var(--secondary-s), var(--secondary-l), 0.15);
    line-height: 1;
    margin-top: -15px;
    margin-bottom: -10px;
    font-weight: 900;
}

.testimonial-text {
    font-size: 0.98rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-dark);
    font-weight: 400;
    line-height: 1.6;
    z-index: 2;
}

.testimonial-author {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    z-index: 2;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: hsl(203.7, 93.8%, 44.5%);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .testimonial-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        flex: 0 0 100%;
        padding: 0 10px;
        transform: scale(0.95);
    }
    .testimonial-item.active-slide {
        transform: scale(1);
    }
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Additional Responsiveness Tweaks for Perfect Mobile Layouts */
@media screen and (max-width: 768px) {
    /* Scale down large Page Banner titles */
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    /* Stack 2-column bulleted lists into 1 column on mobile to prevent wrapping issues */
    .about-features-list,
    .service-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Stat counters scaling to prevent number overflow */
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2.4rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    /* FAQ Section Accordion padding adjustments for mobile */
    .faq-header {
        padding: 16px 20px;
    }
    
    .faq-content {
        padding: 0 20px 16px 20px;
    }
}

@media screen and (max-width: 480px) {
    /* Stack stats counter in 1 column on extra-small mobile devices */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* General section title adjustments */
    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile Nav Menu CTA Button (Call Us) Styling & Animations */
.mobile-nav-cta {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-nav-cta {
        display: block;
        margin-top: 25px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .mobile-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: linear-gradient(135deg, hsl(203.7, 93.8%, 44.5%), hsl(193, 80%, 40%));
        color: var(--white) !important;
        font-weight: 700;
        font-size: 1.05rem;
        padding: 14px 28px;
        border-radius: 30px;
        width: 100%;
        box-shadow: 0 8px 20px rgba(11, 79, 108, 0.35);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        animation: mobile-btn-pulse 2s infinite ease-in-out;
    }

    .mobile-cta-btn svg {
        animation: mobile-phone-wiggle 1.5s infinite ease-in-out;
    }

    /* Premium diagonal shimmer swipe */
    .mobile-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
        transform: skewX(-25deg);
        transition: none;
        animation: shimmer-swipe 3s infinite ease-in-out;
    }

    .mobile-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(11, 79, 108, 0.5);
    }
}

/* Shimmer Swipe Keyframes */
@keyframes shimmer-swipe {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

/* Heartbeat pulse keyframes */
@keyframes mobile-btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(11, 79, 108, 0.35);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 12px 25px rgba(11, 79, 108, 0.55);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(11, 79, 108, 0.35);
    }
}

/* Wiggling phone icon keyframes */
@keyframes mobile-phone-wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-12deg);
    }
    75% {
        transform: rotate(12deg);
    }
}

/* Gallery Video Preview Styles */
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    background-color: #000;
    display: block;
}

.gallery-item:hover video {
    transform: scale(1.05);
}

.video-play-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background-color: rgba(11, 79, 108, 0.85);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-play-indicator svg {
    margin-left: 2px;
}

.gallery-item:hover .video-play-indicator {
    background-color: hsl(203.7, 93.8%, 44.5%);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(11, 79, 108, 0.5);
}

/* Lightbox video adjustments */
.lightbox-video {
    display: none;
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    outline: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #000;
    z-index: 99;
}
