/* ================================================================
   DRS TOURS & TRAVELS — INDUSTRIAL VISIT LANDING PAGE
   Premium Corporate Design System (Enhanced Edition)
   ================================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #0A4DFF;
    --secondary: #FF7A00;
    --accent: #00B8D9;
    --bg: #F8FAFF;
    --dark: #14213D;
    --white: #FFFFFF;
    --gray: #6B7280;
    --gray-light: #E5E7EB;
    --gradient-primary: linear-gradient(135deg, #0A4DFF 0%, #00B8D9 100%);
    --gradient-secondary: linear-gradient(135deg, #FF7A00 0%, #FFB347 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10,77,255,0.92) 0%, rgba(20,33,61,0.88) 50%, rgba(255,122,0,0.75) 100%);
    --gradient-cta: linear-gradient(135deg, #0A4DFF 0%, #14213D 50%, #FF7A00 100%);
    --gradient-mesh: radial-gradient(at 20% 30%, rgba(10,77,255,0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 20%, rgba(255,122,0,0.12) 0px, transparent 50%),
                     radial-gradient(at 40% 80%, rgba(0,184,217,0.15) 0px, transparent 50%);
    --shadow-sm: 0 2px 8px rgba(20,33,61,0.06);
    --shadow-md: 0 8px 24px rgba(20,33,61,0.10);
    --shadow-lg: 0 16px 48px rgba(20,33,61,0.14);
    --shadow-xl: 0 24px 64px rgba(20,33,61,0.18);
    --shadow-glow: 0 0 40px rgba(10,77,255,0.25);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

p { color: var(--gray); font-weight: 400; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
section { position: relative; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 10px; }

.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 4px; width: 0%;
    background: var(--gradient-primary);
    z-index: 9999; transition: width 0.1s ease;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading .badge-line {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(10,77,255,0.08);
    border: 1px solid rgba(10,77,255,0.15);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.section-heading .badge-line i { color: var(--secondary); }
.section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800; margin-bottom: 16px;
}
.section-heading h2 .grad-text,
.grad-text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.grad-text-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-heading p { font-size: 1.05rem; max-width: 700px; margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn-premium {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem; font-weight: 600;
    border: none; border-radius: 50px;
    cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden; text-decoration: none;
}
.btn-premium::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}
.btn-premium:hover::before { left: 100%; }

.btn-primary-grad { background: var(--gradient-primary); color: var(--white); box-shadow: 0 8px 24px rgba(10,77,255,0.3); }
.btn-primary-grad:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,77,255,0.45); }
.btn-secondary-grad { background: var(--gradient-secondary); color: var(--white); box-shadow: 0 8px 24px rgba(255,122,0,0.3); }
.btn-secondary-grad:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,122,0,0.45); }
.btn-outline-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
}
.btn-outline-glass:hover { background: rgba(255,255,255,0.2); border-color: var(--white); color: var(--white); transform: translateY(-3px); }
.btn-whatsapp { background: #25D366; color: var(--white); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.45); }

.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ---------- HEADER ---------- */
.drs-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}
.drs-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(20,33,61,0.08);
    padding: 12px 0;
}
.drs-header .navbar-brand img { height: 52px; width: auto; transition: var(--transition); }
.drs-header.scrolled .navbar-brand img { height: 44px; }
.drs-header .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; font-size: 0.95rem;
    color: var(--white);
    padding: 8px 18px !important;
    position: relative; transition: var(--transition);
}
.drs-header.scrolled .nav-link { color: var(--dark); }
.drs-header .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition); transform: translateX(-50%);
}
.drs-header .nav-link:hover::after,
.drs-header .nav-link.active::after { width: 60%; }
.drs-header .nav-link:hover,
.drs-header.scrolled .nav-link:hover { color: var(--primary); }
.drs-header .nav-link.active { color: var(--secondary) !important; }

.drs-header .btn-get-quote {
    padding: 10px 26px; font-size: 0.9rem; font-weight: 600;
    border-radius: 50px;
    background: var(--gradient-secondary);
    color: var(--white); border: none;
    box-shadow: 0 6px 20px rgba(255,122,0,0.35);
    transition: var(--transition); white-space: nowrap;
}
.drs-header .btn-get-quote:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,122,0,0.5); color: var(--white); }
.drs-header .navbar-toggler { border: none; padding: 4px; font-size: 1.5rem; color: var(--white); }
.drs-header.scrolled .navbar-toggler { color: var(--dark); }
.drs-header .navbar-toggler:focus { box-shadow: none; }

.mobile-nav {
    position: fixed; top: 0; right: -100%;
    width: 300px; max-width: 85vw; height: 100vh;
    background: var(--white); z-index: 1100;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(20,33,61,0.15);
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav .close-btn {
    position: absolute; top: 20px; right: 20px;
    font-size: 1.5rem; color: var(--dark);
    cursor: pointer; background: none; border: none;
}
.mobile-nav .nav-link {
    display: block; padding: 14px 0;
    font-size: 1.05rem; font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}
.mobile-nav .nav-link:hover { color: var(--primary); padding-left: 8px; }
.mobile-nav .btn-get-quote { width: 100%; margin-top: 20px; }

.overlay-bg {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(20,33,61,0.5);
    z-index: 1050; opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.overlay-bg.show { opacity: 1; visibility: visible; }

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('https://drstoursandtravels.com/iv/img/Safety%20Briefing%20at%20Manufacturing%20Plant.avif') center/cover no-repeat;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}
.hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.hero-particles span {
    position: absolute; display: block; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: floatParticle 15s infinite ease-in-out;
}
@keyframes floatParticle {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.6; }
}

.hero-content { position: relative; z-index: 3; }
.hero-content .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: var(--white); font-size: 0.9rem; font-weight: 500;
    margin-bottom: 24px;
}
.hero-content .hero-badge i { color: var(--secondary); }
.hero-content h1 {
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 800; color: var(--white);
    line-height: 1.2; margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero-content h1 .hero-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content .hero-sub {
    font-size: 1.1rem; color: rgba(255,255,255,0.9);
    max-width: 680px; margin-bottom: 36px; font-weight: 300;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }
.hero-buttons .btn-premium { padding: 14px 28px; font-size: 0.95rem; }

.hero-counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px; max-width: 900px;
}
.hero-counter-item {
    text-align: center; padding: 22px 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.hero-counter-item:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.hero-counter-item .counter-icon { font-size: 1.7rem; color: var(--secondary); margin-bottom: 8px; }
.hero-counter-item .counter-num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.hero-counter-item .counter-label {
    font-size: 0.8rem; color: rgba(255,255,255,0.8);
    margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}

.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    color: rgba(255,255,255,0.7); font-size: 1.5rem;
    animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(10px); }
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-wrap {
    background: rgba(10,77,255,0.04);
    padding: 16px 0;
    border-bottom: 1px solid rgba(10,77,255,0.08);
}
.breadcrumb-wrap .breadcrumb { margin: 0; padding: 0; background: none; font-size: 0.85rem; }
.breadcrumb-wrap .breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb-wrap .breadcrumb .active { color: var(--gray); }
.breadcrumb-wrap .breadcrumb .separator { color: var(--gray-light); margin: 0 8px; }

/* ---------- TRUSTED BY ---------- */
.trusted-by {
    background: var(--white); padding: 50px 0;
    border-bottom: 1px solid var(--gray-light);
}
.trusted-by h5 {
    text-align: center; font-size: 0.9rem; font-weight: 600;
    color: var(--gray); text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 30px;
}
.trusted-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 50px; }
.trusted-logo-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.05rem; font-weight: 600; color: var(--dark);
    opacity: 0.55; transition: var(--transition); white-space: nowrap;
}
.trusted-logo-item:hover { opacity: 1; color: var(--primary); }
.trusted-logo-item i { font-size: 1.4rem; color: var(--secondary); }

/* ---------- ABOUT ---------- */
.about-iv { background: var(--bg); }
.about-iv .about-img-wrap {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-iv .about-img-wrap img {
    width: 1080px; height: 1920px; object-fit: cover; transition: var(--transition);
}
.about-iv .about-img-wrap:hover img { transform: scale(1.05); }
.about-iv .about-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.about-iv .about-img-badge .badge-num {
    font-size: 2.2rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-iv .about-img-badge .badge-text { font-size: 0.85rem; color: var(--dark); font-weight: 500; }

.about-iv .about-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; margin-bottom: 20px;
}
.about-iv .about-content > p { font-size: 1.05rem; margin-bottom: 30px; }

.benefit-card {
    display: flex; gap: 16px; padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 16px;
    border: 1px solid transparent;
}
.benefit-card:hover {
    transform: translateX(8px);
    border-color: rgba(10,77,255,0.15);
    box-shadow: var(--shadow-md);
}
.benefit-card .benefit-icon {
    flex-shrink: 0; width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--white); font-size: 1.3rem;
}
.benefit-card:nth-child(even) .benefit-icon { background: var(--gradient-secondary); }
.benefit-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.benefit-card p { font-size: 0.9rem; margin: 0; }

/* ---------- CATEGORIES ---------- */
.categories { background: var(--white); }
.category-card {
    position: relative; padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    overflow: hidden; height: 100%;
}
.category-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s ease;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.category-card:hover::before { transform: scaleX(1); }
.category-card .cat-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(10,77,255,0.1), rgba(0,184,217,0.1));
    color: var(--primary); font-size: 1.8rem;
    margin-bottom: 20px; transition: var(--transition);
}
.category-card:hover .cat-icon {
    background: var(--gradient-primary); color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}
.category-card h5 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.category-card p { font-size: 0.9rem; margin-bottom: 16px; }
.category-card .cat-link {
    font-size: 0.85rem; font-weight: 600; color: var(--secondary);
    display: inline-flex; align-items: center; gap: 6px;
}
.category-card .cat-link i { transition: var(--transition); }
.category-card:hover .cat-link i { transform: translateX(5px); }

/* ---------- INDUSTRIES ---------- */
.industries-covered { background: var(--dark); position: relative; overflow: hidden; }
.industries-covered::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 1080px; height: 1920px;
    background: radial-gradient(circle, rgba(10,77,255,0.15), transparent 70%);
    border-radius: 50%;
}
.industries-covered::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 1080px; height: 1920px;
    background: radial-gradient(circle, rgba(255,122,0,0.1), transparent 70%);
    border-radius: 50%;
}
.industries-covered .section-heading h2 { color: var(--white); }
.industries-covered .section-heading p { color: rgba(255,255,255,0.7); }
.industries-covered .section-heading .badge-line {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--accent);
}
.industry-item {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding: 30px 16px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.industry-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,184,217,0.15);
}
.industry-item .ind-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px; font-size: 1.5rem; color: var(--white);
    transition: var(--transition);
}
.industry-item:hover .ind-icon { transform: scale(1.15); }
.industry-item h6 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin: 0; }

/* ---------- DESTINATIONS ---------- */
.destinations { background: var(--bg); }
.dest-card {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; height: 240px; cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card .dest-bg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; opacity: 0.15;
    transition: var(--transition);
}
.dest-card:hover .dest-bg { opacity: 0.25; transform: scale(1.1); }
.dest-card .dest-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(20,33,61,0.85) 100%);
}
.dest-card .dest-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px 24px; z-index: 2; }
.dest-card .dest-content h5 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.dest-card .dest-content p { color: rgba(255,255,255,0.8); font-size: 0.82rem; margin: 0; }
.dest-card .dest-content .dest-arrow {
    position: absolute; top: -50px; right: 20px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%; color: var(--white);
    opacity: 0; transform: translateY(10px);
    transition: var(--transition);
}
.dest-card:hover .dest-arrow { opacity: 1; transform: translateY(0); }

/* ---------- WHY CHOOSE ---------- */
.why-choose { background: var(--white); }
.why-feature {
    display: flex; gap: 16px; padding: 24px;
    background: var(--bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}
.why-feature:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.why-feature .why-icon {
    flex-shrink: 0; width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--white); font-size: 1.3rem;
}
.why-feature:nth-child(odd) .why-icon { background: var(--gradient-secondary); }
.why-feature h6 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 0.85rem; margin: 0; }

/* ---------- PROCESS ---------- */
.tour-process { background: var(--bg); position: relative; }
.process-step {
    position: relative; padding: 30px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    margin-bottom: 30px;
    border: 2px solid transparent;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.process-step .step-num {
    position: absolute; top: -20px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white); font-size: 1.1rem; font-weight: 800;
    box-shadow: 0 4px 16px rgba(10,77,255,0.3);
}
.process-step .step-icon { font-size: 2rem; color: var(--secondary); margin: 12px 0 14px; }
.process-step h6 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; margin: 0; }

/* ---------- SERVICES ---------- */
.services-included { background: var(--white); }
.service-item {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    background: var(--bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary);
}
.service-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
    border-left-color: var(--secondary);
}
.service-item .svc-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(10,77,255,0.1);
    color: var(--primary);
    font-size: 1.3rem; flex-shrink: 0;
}
.service-item:nth-child(even) .svc-icon { background: rgba(255,122,0,0.1); color: var(--secondary); }
.service-item h6 { font-size: 0.98rem; font-weight: 600; margin: 0; }

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--bg); }
.gallery-grid { column-count: 3; column-gap: 20px; }
.gallery-item {
    position: relative; margin-bottom: 20px;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden; cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10,77,255,0.7) 100%);
    display: flex; align-items: flex-end;
    padding: 20px; opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay .zoom-icon {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%; color: var(--white);
    font-size: 1.3rem;
}
.gallery-item .gallery-overlay p { color: var(--white); font-size: 0.85rem; font-weight: 600; margin: 0; width: 100%; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--white); }
.testimonial-swiper { padding: 20px 0 60px; }
.testimonial-card {
    padding: 36px 30px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%; position: relative;
    border: 1px solid transparent;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(10,77,255,0.15); box-shadow: var(--shadow-md); }
.testimonial-card .quote-icon { position: absolute; top: 20px; right: 24px; font-size: 3rem; color: rgba(10,77,255,0.1); }
.testimonial-card .stars { color: #FFB347; font-size: 1rem; margin-bottom: 16px; }
.testimonial-card .testimonial-text {
    font-size: 0.95rem; color: var(--dark);
    margin-bottom: 24px; font-weight: 400; line-height: 1.8;
}
.testimonial-card .testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author-avatar {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white); font-size: 1.3rem; font-weight: 700;
    flex-shrink: 0;
}
.testimonial-card:nth-child(even) .author-avatar { background: var(--gradient-secondary); }
.testimonial-card .author-info h6 { font-size: 1rem; font-weight: 700; margin: 0; }
.testimonial-card .author-info p { font-size: 0.82rem; margin: 0; color: var(--gray); }
.testimonial-card .author-info .g-review {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: 2px;
}

.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.3 !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 28px !important; border-radius: 50px !important; }

/* ---------- FAQ ---------- */
.faqs-section { background: var(--bg); }
.faq-accordion .faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item .faq-header {
    padding: 22px 28px; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; transition: var(--transition);
}
.faq-item .faq-header:hover { background: rgba(10,77,255,0.03); }
.faq-item.active .faq-header { background: rgba(10,77,255,0.05); }
.faq-item .faq-header h6 { font-size: 1rem; font-weight: 600; margin: 0; flex: 1; }
.faq-item .faq-toggle {
    flex-shrink: 0; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(10,77,255,0.08);
    color: var(--primary); font-size: 1rem;
    transition: var(--transition);
}
.faq-item.active .faq-toggle {
    background: var(--gradient-primary);
    color: var(--white); transform: rotate(180deg);
}
.faq-item .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item .faq-body-inner { padding: 0 28px 24px; font-size: 0.92rem; color: var(--gray); line-height: 1.8; }

/* ---------- INQUIRY ---------- */
.inquiry-section { background: var(--dark); position: relative; overflow: hidden; }
.inquiry-section::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at top right, rgba(10,77,255,0.15), transparent 60%);
}
.inquiry-section .inquiry-info h2 { color: var(--white); }
.inquiry-section .inquiry-info p { color: rgba(255,255,255,0.7); }
.inquiry-contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.inquiry-contact-item .contact-ic {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    color: var(--accent); font-size: 1.3rem; flex-shrink: 0;
}
.inquiry-contact-item h6 { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.inquiry-contact-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.inquiry-contact-item a { color: rgba(255,255,255,0.7); }
.inquiry-contact-item a:hover { color: var(--accent); }

.inquiry-form-wrap {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.inquiry-form-wrap h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 6px; }
.inquiry-form-wrap > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 28px; }
.inquiry-form .form-control,
.inquiry-form .form-select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.9rem; color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}
.inquiry-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,184,217,0.15);
    color: var(--white);
}
.inquiry-form .form-select option { background: var(--dark); color: var(--white); }
.inquiry-form .form-label { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.inquiry-form .btn-submit {
    width: 100%; padding: 14px;
    font-size: 1rem; font-weight: 700;
    border: none; border-radius: 12px;
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(255,122,0,0.3);
    transition: var(--transition);
    margin-top: 10px;
}
.inquiry-form .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,122,0,0.5); }
.inquiry-form .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
/* Honeypot (hidden from users, visible to bots) */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FINAL CTA ---------- */
.final-cta {
    position: relative; padding: 100px 0;
    background: var(--gradient-cta);
    text-align: center; overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; top: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    border-radius: 50%;
}
.final-cta::after {
    content: ''; position: absolute; bottom: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,122,0,0.15), transparent 70%);
    border-radius: 50%;
}
.final-cta h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 800; margin-bottom: 20px;
    position: relative; z-index: 2;
}
.final-cta p {
    color: rgba(255,255,255,0.85); font-size: 1.15rem;
    max-width: 600px; margin: 0 auto 40px;
    position: relative; z-index: 2;
}
.final-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; position: relative; z-index: 2; }

/* ---------- FOOTER ---------- */
.drs-footer {
    background: #0B1526;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}
.drs-footer h5 {
    color: var(--white); font-size: 1.05rem; font-weight: 700;
    margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.drs-footer h5::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--gradient-secondary); border-radius: 3px;
}
.drs-footer .footer-logo { margin-bottom: 20px; }
.drs-footer .footer-logo img { height: 56px; filter: brightness(0) invert(1); }
.drs-footer .footer-about p { font-size: 0.88rem; margin-bottom: 20px; line-height: 1.8; }
.drs-footer .footer-links { list-style: none; padding: 0; }
.drs-footer .footer-links li { margin-bottom: 12px; }
.drs-footer .footer-links a {
    color: rgba(255,255,255,0.6); font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.drs-footer .footer-links a:hover { color: var(--accent); padding-left: 5px; }
.drs-footer .footer-links a i { font-size: 0.75rem; color: var(--secondary); }
.drs-footer .footer-contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; font-size: 0.88rem;
}
.drs-footer .footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: 4px; flex-shrink: 0; }
.drs-footer .footer-contact-item a { color: rgba(255,255,255,0.6); }
.drs-footer .footer-contact-item a:hover { color: var(--accent); }
.drs-footer .footer-social { display: flex; gap: 12px; margin-top: 20px; }
.drs-footer .footer-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--white); font-size: 1rem;
    transition: var(--transition);
}
.drs-footer .footer-social a:hover { background: var(--gradient-primary); transform: translateY(-3px); }
.drs-footer .footer-map { margin-top: 20px; border-radius: var(--radius-md); overflow: hidden; }
.drs-footer .footer-map iframe { width: 100%; height: 200px; border: none; filter: grayscale(0.3); }
.drs-footer .footer-bottom {
    margin-top: 50px; padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.drs-footer .footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }
.drs-footer .footer-bottom p a { color: var(--accent); }

/* ---------- FLOATING WHATSAPP ---------- */
.float-whatsapp {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: var(--white); font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}
.float-whatsapp:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulseWhatsapp {
    0%   { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

.sticky-inquiry { position: fixed; bottom: 30px; left: 30px; z-index: 999; display: none; }
.sticky-inquiry .btn-premium { padding: 12px 24px; font-size: 0.9rem; box-shadow: var(--shadow-md); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .drs-header .desktop-nav { display: none; }
    .drs-header .mobile-toggle { display: flex; }
    .hero { min-height: auto; padding: 130px 0 60px; }
    .hero-counters { grid-template-columns: repeat(3, 1fr); }
    .about-iv .about-img-wrap img { height: 1920px; }
    .gallery-grid { column-count: 2; }
    .sticky-inquiry { display: block; }
    .float-whatsapp { bottom: 80px; }
    .section-pad { padding: 70px 0; }
    .inquiry-form-wrap { padding: 30px 24px; }
}
@media (min-width: 992px) {
    .drs-header .mobile-toggle { display: none !important; }
}
@media (max-width: 767px) {
    .hero-counters { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-counter-item { padding: 14px 8px; }
    .hero-counter-item .counter-num { font-size: 1.6rem; }
    .gallery-grid { column-count: 1; }
    .hero-buttons { gap: 10px; }
    .hero-buttons .btn-premium { flex: 1; min-width: 140px; }
    .final-cta-buttons { flex-direction: column; align-items: stretch; }
    .final-cta-buttons .btn-premium { width: 100%; }
    .section-heading { margin-bottom: 40px; }
}
@media (max-width: 480px) {
    .hero-buttons .btn-premium { font-size: 0.82rem; padding: 12px 16px; }
    .float-whatsapp { width: 52px; height: 52px; font-size: 1.5rem; bottom: 70px; right: 20px; }
    .sticky-inquiry { left: 20px; bottom: 20px; }
    .sticky-inquiry .btn-premium { padding: 10px 18px; font-size: 0.82rem; }
}

.img-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
