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

:root {
    --primary: #FF4500; /* Vibrant Deep Orange / Coral */
    --primary-light: #FF7043;
    --primary-dark: #DD2C00;
    --secondary: #4F46E5; /* Deep Indigo for amazing contrast */
    --secondary-hover: #4338CA;
    --success: #10B981;
    --accent: #8B5CF6; /* Purple for gradients */
    
    --bg-main: #FFFFFF;
    --bg-light: #FFF7F5; /* Very subtle warm beige */
    --bg-dark: #0B0F19; /* Deep tech dark */
    
    --text-dark: #0F172A;
    --text-body: #475569;
    --text-light: #94A3B8;
    
    --border: #E2E8F0;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.20);
    --shadow-glow: 0 10px 30px rgba(255, 69, 0, 0.45);
    --shadow-glow-purple: 0 10px 30px rgba(139, 92, 246, 0.45);
    --shadow-glow-green: 0 10px 30px rgba(37, 211, 102, 0.45);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-body); background: var(--bg-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }

/* Advanced Animations */
/* Advanced Animations */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }
@keyframes pulseGlowOrange { 0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.6); } 70% { box-shadow: 0 0 0 20px rgba(255, 69, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); } }
@keyframes pulseGlowGreen { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@keyframes pulseGlowPurple { 0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.6); } 70% { box-shadow: 0 0 0 20px rgba(139, 92, 246, 0); } 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); } }
@keyframes shine { 100% { left: 125%; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; font-weight: 700; font-size: 1.05rem; border-radius: var(--radius-full); border: none; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; z-index: 1; }
.btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); z-index: -1; animation: shine 3s infinite; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #FFF; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255, 69, 0, 0.5); color: #FFF !important; }
.btn-secondary { background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%); color: #FFF; animation: pulseGlowPurple 2s infinite; }
.btn-secondary:hover { transform: translateY(-3px); }
.btn-white { background: #FFF; color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-3px); }

/* Header & Top Bar */
.top-bar { background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%); color: #FFF; padding: 12px 0; font-size: 0.9rem; font-weight: 600; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 24px; }
.top-bar i { color: var(--secondary); margin-right: 8px; }

.main-header { left: 0; width: 100%; z-index: 1000; padding: 20px 0; background: #FFF; box-shadow: var(--shadow-sm); transition: var(--transition); border-bottom: 1px solid var(--border); }
.main-header.sticky { position: fixed; top: 0; padding: 15px 0; box-shadow: var(--shadow-lg); animation: slideDown 0.5s ease; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 52px; width: auto; object-fit: contain; mix-blend-mode: multiply; transition: var(--transition); }
.logo:hover img { transform: scale(1.05); }
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-title { font-size: 1.8rem; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; line-height: 1.1; }
.logo-sub { font-size: 0.75rem; color: var(--secondary); font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 2px; display: block; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a { font-weight: 700; color: var(--text-dark); font-size: 1rem; position: relative; display: inline-block; }
.nav-menu > a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-menu > a:hover::after, .nav-menu > a.active::after { width: 100%; }
.nav-menu a:hover { color: var(--primary); }

/* Dropdown */
.dropdown { position: relative; display: inline-block; }
.dropbtn { cursor: pointer; padding: 10px 0; border: none; background: transparent; font-weight: 700; color: var(--text-dark); font-size: 1rem; transition: var(--transition); font-family: inherit; }
.dropdown-content { visibility: hidden; opacity: 0; position: absolute; background-color: #FFF; min-width: 240px; box-shadow: var(--shadow-xl); z-index: 1001; border-radius: var(--radius-md); overflow: hidden; top: 120%; left: 0; padding: 10px 0; border: 1px solid var(--border); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); transform: translateY(15px); }
.dropdown:hover .dropdown-content { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-content a { color: var(--text-dark); padding: 14px 24px; text-decoration: none; display: block; font-size: 0.95rem; font-weight: 600; transition: var(--transition); }
/* Premium Animated Diagonal Page Banner */
.page-banner { padding: 160px 0 120px; background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); text-align: center; color: #FFF; position: relative; margin-bottom: 20px; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); overflow: hidden; border: none; }
.page-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 69, 0, 0.2) 2px, transparent 2px), radial-gradient(rgba(255, 69, 0, 0.2) 2px, transparent 2px); background-size: 40px 40px; background-position: 0 0, 20px 20px; opacity: 0.8; z-index: 1; }
.page-banner::after { content: ''; position: absolute; top: -30%; left: 10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 69, 0, 0.15) 0%, transparent 60%); border-radius: 50%; z-index: 0; animation: pulseBlob 8s infinite alternate ease-in-out; }
.banner-blob-2 { position: absolute; bottom: -30%; right: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 60%); border-radius: 50%; z-index: 0; animation: pulseBlob 10s infinite alternate-reverse ease-in-out; }
@keyframes pulseBlob { 0% { transform: scale(1) translate(0, 0); } 100% { transform: scale(1.15) translate(20px, -30px); } }
.banner-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; background: rgba(255, 255, 255, 0.1); color: #FFF; border-radius: 30px; font-weight: 700; font-size: 0.9rem; margin-bottom: 20px; border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px); box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
.banner-tag i { font-size: 0.8rem; color: var(--secondary); }
.page-banner h1 { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; color: #FFF; position: relative; z-index: 2; }
.page-banner p { font-size: 1.2rem; color: rgba(255,255,255,0.85); max-width: 650px; margin: 0 auto; line-height: 1.6; font-weight: 500; position: relative; z-index: 2; }

/* Dynamic Hero Section (Intersecting Elements) */
.hero { position: relative; padding: 100px 0 180px; background: var(--bg-dark); overflow: hidden; display: flex; align-items: center; }
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slider .swiper-slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(1.2); }
.hero-bg-slider::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.4) 100%); z-index: 1; pointer-events: none; }

.hero-wrapper { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.hero-content h1 { font-size: clamp(3rem, 5vw, 4.5rem); color: #FFF; margin-bottom: 24px; line-height: 1.1; }
.hero-content h1 span { color: var(--secondary); display: block; }
.hero-content p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 40px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: var(--radius-full); color: #FFF; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.hero-badge i { color: var(--success); }

/* Quick Booking Form in Hero */
.hero-form-card { background: #FFF; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border-top: 5px solid var(--secondary); }
.hero-form-card h3 { font-size: 1.8rem; margin-bottom: 10px; text-align: center; }
.hero-form-card p { text-align: center; color: var(--text-body); margin-bottom: 24px; font-weight: 500; }
.form-group { margin-bottom: 20px; position: relative; }
.form-icon { position: absolute; left: 16px; top: 16px; color: var(--text-light); font-size: 1.1rem; }
.form-control { width: 100%; padding: 16px 16px 16px 45px; border: 2px solid var(--border); border-radius: var(--radius-md); font-family: inherit; font-size: 1rem; background: var(--bg-light); transition: var(--transition); font-weight: 500; }
.form-control:focus { outline: none; border-color: var(--primary); background: #FFF; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
textarea.form-control { padding: 16px; }

/* Intersecting Trust Bar */
.trust-bar { position: relative; z-index: 10; margin-top: -80px; margin-bottom: 50px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { background: #FFF; padding: 30px 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.trust-card:hover { transform: translateY(-10px); border-color: var(--primary-light); box-shadow: var(--shadow-xl); }
.trust-icon { width: 64px; height: 64px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--primary); margin: 0 auto 16px; transition: var(--transition); }
.trust-card:hover .trust-icon { background: var(--primary); color: #FFF; transform: rotateY(180deg); }
.trust-info h4 { font-size: 1.1rem; margin-bottom: 8px; }
.trust-info p { font-size: 0.9rem; color: var(--text-body); }

/* SVG Section Dividers */
.svg-divider { width: 100%; line-height: 0; }
.svg-divider svg { width: 100%; height: auto; display: block; }
.svg-top { transform: translateY(1px); }
.svg-bottom { transform: translateY(-1px) rotate(180deg); }

/* Section Titles */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag { display: inline-block; padding: 8px 24px; background: rgba(37, 99, 235, 0.1); color: var(--primary); font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; border-radius: var(--radius-full); margin-bottom: 20px; }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); letter-spacing: -1px; margin-bottom: 20px; }
.section-desc { font-size: 1.15rem; color: var(--text-body); }

/* Visual Cards - Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.visual-card { background: #FFF; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); position: relative; border: 1px solid var(--border); }
.visual-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-xl); }
.v-img-wrap { width: 100%; height: 260px; position: relative; overflow: hidden; }
.v-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.visual-card:hover .v-img-wrap img { transform: scale(1.1); }
.v-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 100%); z-index: 1; }
.v-icon { position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); z-index: 2; box-shadow: var(--shadow-sm); }
.v-content { padding: 30px; position: relative; background: #FFF; z-index: 2; }
.v-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.v-content p { color: var(--text-body); font-size: 1rem; margin-bottom: 24px; }
.v-link { font-weight: 800; color: var(--primary); display: inline-flex; align-items: center; gap: 8px; font-size: 1.05rem; }
.v-link i { transition: transform 0.3s; }
.visual-card:hover .v-link i { transform: translateX(8px); }

/* How It Works (Animations & Layout) */
.process-section { position: relative; z-index: 1; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 40px; left: 10%; width: 80%; height: 2px; border-top: 3px dashed var(--primary-light); z-index: -1; }
.process-step { position: relative; padding: 20px 10px; z-index: 1; }
.step-circle { width: 80px; height: 80px; background: #FFF; border: 4px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary); margin: 0 auto 20px; position: relative; box-shadow: var(--shadow-glow); z-index: 2; transition: var(--transition); }
.step-circle:hover { transform: scale(1.1); box-shadow: 0 15px 35px rgba(255, 69, 0, 0.5); }
.step-num { position: absolute; top: -5px; right: -5px; width: 28px; height: 28px; background: var(--secondary); color: #FFF; font-weight: 800; font-size: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); z-index: 3; }
.process-step h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 800; }
.process-step p { font-size: 0.95rem; color: var(--text-body); max-width: 250px; margin: 0 auto; line-height: 1.5; }

/* Ticker & Trust Row explicitly defined */
.ticker-wrap { width: 100%; overflow: hidden; background: var(--primary); padding: 12px 0; color: #FFF; font-weight: 700; font-size: 14px; white-space: nowrap; box-shadow: 0px 4px 10px rgba(0,0,0,0.1); position: relative; z-index: 20; }
.ticker { display: inline-block; animation: ticker 40s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker-item { display: inline-block; padding: 0 20px; text-transform: uppercase; letter-spacing: 1px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.trust-row { background: #FFF; padding: 40px 0; border-bottom: 1px solid var(--border); position: relative; z-index: 19; }
.trust-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; text-align: center; }
.trust-item { padding: 10px; transition: var(--transition); border-radius: var(--radius-sm); }
.trust-item:hover { background: var(--bg-light); transform: translateY(-5px); }
.trust-item-icon { height: 45px; display:flex; align-items:flex-end; justify-content:center; margin-bottom: 15px; }
.trust-item-icon img, .trust-item-icon i { font-size: 2.2rem; background: linear-gradient(135deg, var(--secondary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust-item h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 5px; color: var(--text-dark); }
.trust-item p { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }

/* Split Sections (Intersecting Images & Text) */
.intersect-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 100px; }
.intersect-section:last-child { margin-bottom: 0; }
.intersect-content h2 { font-size: 2.8rem; margin-bottom: 24px; }
.intersect-content p { font-size: 1.15rem; color: var(--text-body); margin-bottom: 30px; }
.intersect-list li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; background: #FFF; padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.intersect-list li:hover { transform: translateX(10px); border-color: var(--primary); }
.intersect-list i { font-size: 1.5rem; color: var(--secondary); margin-top: 4px; }
.intersect-visual { position: relative; }
.intersect-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); position: relative; z-index: 2; }
.shape-blob { position: absolute; top: -10%; right: -10%; width: 500px; height: 500px; background: var(--primary-light); opacity: 0.2; filter: blur(60px); border-radius: 50%; z-index: 1; animation: float 8s ease-in-out infinite reverse; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; background: #FFF; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; font-size: 1.25rem; font-weight: 700; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-icon { color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer-content { padding: 0 0 24px 0; color: var(--text-body); font-size: 1.1rem; line-height: 1.7; }

/* Advanced Tabbed Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 99999; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: #FFF; width: 90%; max-width: 600px; border-radius: var(--radius-lg); overflow: hidden; transform: scale(0.9); transition: var(--transition); box-shadow: var(--shadow-xl); position: relative; }
.modal-overlay.active .modal-box { transform: scale(1); }
.modal-close { position: absolute; top: 15px; right: 20px; border: none; background: rgba(0,0,0,0.1); width: 36px; height: 36px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: var(--transition); z-index: 10; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: #EF4444; color: #FFF; transform: rotate(90deg); }
.modal-tabs { display: flex; background: var(--bg-light); border-bottom: 1px solid var(--border); }
.modal-tab { flex: 1; padding: 20px; text-align: center; font-weight: 800; font-size: 1.1rem; cursor: pointer; background: transparent; border: none; color: var(--text-body); transition: var(--transition); border-bottom: 3px solid transparent; }
.modal-tab.active { color: var(--primary); border-bottom-color: var(--primary); background: #FFF; }
.modal-body { padding: 40px; }
.modal-panel { display: none; animation: fadeIn 0.4s; }
.modal-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.location-btn { background: #EFF6FF; color: var(--primary); border: 2px dashed var(--primary-light); width: 100%; padding: 15px; border-radius: var(--radius-md); font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: var(--transition); margin-bottom: 20px; font-size: 1rem; }
.location-btn:hover { background: #DBEAFE; border-color: var(--primary); }

/* Floating Buttons */
.fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 16px; z-index: 9999; }
.fab { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #FFF; transition: var(--transition); cursor: pointer; animation: float 4s ease-in-out infinite; }
.fab-query { background: var(--accent); animation: pulseGlowPurple 2s infinite; position: relative; z-index: 999; }
.fab-wa { background: #25D366; animation: pulseGlowGreen 2s infinite 0.5s; position: relative; z-index: 999; }
.fab-call { background: var(--primary); animation: pulseGlowOrange 2s infinite 1.0s; position: relative; z-index: 999; }
.fab:hover { transform: scale(1.15) translateY(-10px); }

/* Premium Light/Soft Footer */
.footer { background: #F8FAFC; color: var(--text-body); padding: 80px 0 30px; border-top: 1px solid rgba(0,0,0,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; filter: none; }
.footer-logo img { height: 45px; mix-blend-mode: multiply; }
.footer-logo span { font-size: 1.8rem; font-weight: 800; letter-spacing: -1px; color: var(--primary); }
.footer-desc { color: var(--text-body); margin-bottom: 24px; font-size: 1rem; line-height: 1.8; max-width: 350px; font-weight: 500; }
.f-socials { display: flex; gap: 16px; margin-top: 10px; }
.f-socials a { width: 42px; height: 42px; border-radius: 12px; background: #FFF; border: 1.5px solid #E2E8F0; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 2px 4px rgba(0,0,0,0.04); }
.f-socials a i { color: #0F172A; font-size: 1.15rem; transition: var(--transition); }
.f-socials a:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); border-color: transparent; }
.f-socials a:hover i { color: #FFF; }
.f-socials a.fb:hover { background: #1877F2; }
.f-socials a.ig:hover { background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%); }
.f-socials a.yt:hover { background: #FF0000; }
.footer-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 24px; color: var(--bg-dark); }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: var(--text-body); font-size: 1.05rem; display: flex; align-items: center; gap: 10px; transition: var(--transition); font-weight: 600; }
.footer-links a i { font-size: 0.8rem; color: var(--secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.footer-links a:hover i { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; color: var(--text-dark); font-size: 1.05rem; font-weight: 500; }
.footer-contact i { color: var(--primary); font-size: 1.3rem; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 30px; text-align: center; color: var(--text-light); font-weight: 500; }

/* Responsive Media Queries */
.mobile-btn { display: none; background: transparent; border: none; font-size: 1.8rem; color: var(--text-dark); cursor: pointer; }

@media (max-width: 1024px) {
    .nav-menu { gap: 15px; }
    .hero-wrapper { gap: 30px; }
    .hero-content h1 { font-size: 2.8rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar { padding: 10px 0; text-align: center; }
    .top-bar .container { justify-content: center; }
    .logo img { height: 42px; }
    .logo-title { font-size: 1.4rem; }
    .logo-sub { font-size: 0.65rem; letter-spacing: 1px; margin-top: 1px; }
    
    .mobile-btn { display: block; z-index: 1001; }
    .nav-menu { position: fixed; top: 0; left: -100%; width: 85%; max-width: 350px; height: 100vh; background: #FFF; box-shadow: var(--shadow-xl); flex-direction: column; align-items: flex-start; padding: 100px 30px 40px; gap: 20px; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1000; overflow-y: auto; display: flex; }
    .nav-menu.active { left: 0; }
    .dropdown { width: 100%; }
    .dropdown-content { position: static; box-shadow: none; border: none; min-width: 100%; display: none; opacity: 1; visibility: visible; transform: translateY(0); padding-left: 15px; padding-top: 10px; background: transparent; }
    .dropdown.active .dropdown-content, .dropdown:hover .dropdown-content { display: block; }
    .nav-menu > a::after { display: none; }
    .nav-menu .btn { width: 100%; text-align: center; padding: 15px; margin: 0 !important; }
    
    .hero { padding: 130px 0 80px; }
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-badges { justify-content: center; }
    
    .trust-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .process-step { padding: 30px !important; }
    .process-step::after { display: none; }
    .why-grid { grid-template-columns: 1fr !important; }
    .intersect-section { grid-template-columns: 1fr !important; }
    
    .page-banner { padding: 120px 0 40px; margin-bottom: 10px; border-bottom: none; }
    .page-banner h1 { font-size: 2.2rem; }
    
    .ticker-wrap .ticker-item { font-size: 0.95rem; padding: 0 1rem; }
    .trust-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .trust-item h4 { font-size: 0.85rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-logo { justify-content: center; }
    .f-socials { justify-content: center; }
    .fab-container { transform: scale(0.9); right: 15px; bottom: 15px; }
}

@media (max-width: 480px) {
    .trust-grid-6 { grid-template-columns: 1fr; }
    .visual-card .v-content h3 { font-size: 1.3rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .logo img { height: 35px; }
    .logo-title { font-size: 1.15rem; }
    .logo-sub { font-size: 0.58rem; letter-spacing: 0.5px; margin-top: 1px; }
}

@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-content h1 { max-width: 800px; margin: 0 auto 20px; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-badges { justify-content: center; }
    .hero-form-card { max-width: 700px; margin: 0 auto; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-grid::before { display: none; }
    .intersect-section { grid-template-columns: 1fr; }
    .intersect-section:nth-child(even) .intersect-content { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .header-wrapper { padding: 0 10px; position: relative; }
    .nav-menu { position: absolute; top: calc(100% + 20px); left: 0; width: 100%; background: #FFF !important; flex-direction: column; padding: 20px; box-shadow: var(--shadow-xl); border-top: 1px solid var(--border); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease, opacity 0.4s ease; opacity: 0; pointer-events: none; z-index: 1000; }
    .nav-menu.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; pointer-events: all; }
    .mobile-btn { display: block; }
    .trust-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .intersect-visual { margin-top: 40px; }
    .hero { padding: 120px 0 100px; }
}
