/* ==========================================================
   1. GLOBAL VARIABLES & BASE STYLES
========================================================== */
:root {
   --brand-blue: #0A58CA;
   --btn-blue: #3B82F6;
   --bg-body: #f8fafc;
   --text-dark: #1E293B;
   --nav-bg: rgba(255, 255, 255, 0.45);
   --nav-border: rgba(255, 255, 255, 0.6);
   --inner-pill-bg: rgba(226, 232, 240, 0.75);
   --flyer-dark: #071C0F;
   --flyer-neon: #5EFC02;
   --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
   --bg-body: #0F172A;
   --text-dark: #F8FAFC;
   --nav-bg: rgba(15, 23, 42, 0.65);
   --nav-border: rgba(255, 255, 255, 0.1);
   --inner-pill-bg: rgba(30, 41, 59, 0.85);
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   font-family: 'Inter', sans-serif;
   overflow-x: hidden;
   background-color: var(--bg-body);
   color: var(--text-dark);
   transition: background-color 0.4s ease, color 0.4s ease;
}

/* ==========================================================
   1. NAVBAR CSS
========================================================== */
.custom-floating-nav { position: fixed; top: 25px; left: 0; right: 0; z-index: 1000; display: flex; justify-content: center; transition: var(--transition); }
.nav-container { display: flex; align-items: center; justify-content: space-between; width: 95%; max-width: 1200px; background: var(--nav-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--nav-border); border-radius: 60px; padding: 0.5rem 0.5rem 0.5rem 1.5rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: var(--transition); }

/* --- Logo Swap Logic --- */
.brand-logo { height: 40px; width: auto; transition: opacity 0.3s ease; }
.light-logo { display: block; }
.dark-logo { display: none; }
body.dark-mode .light-logo { display: none; }
body.dark-mode .dark-logo { display: block; }

/* --- Links & Active Line --- */
.nav-links-wrapper { background: var(--inner-pill-bg); border-radius: 50px; padding: 0.4rem 1.5rem; transition: var(--transition); }
.nav-menu { display: flex; list-style: none; align-items: center; gap: 2rem; margin: 0; padding: 0; }
.nav-link { text-decoration: none; color: var(--text-dark); font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 1rem; position: relative; padding: 0.2rem 0; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--brand-blue); }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background-color: var(--brand-blue); border-radius: 2px; transition: background-color 0.3s ease; }

/* --- Dropdown --- */
.dropdown-menu-custom { position: absolute; top: 150%; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--inner-pill-bg); backdrop-filter: blur(12px); border: 1px solid var(--nav-border); border-radius: 12px; padding: 0.5rem; list-style: none; opacity: 0; visibility: hidden; transition: var(--transition); min-width: 170px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
@media (min-width: 992px) { .has-dropdown:hover .dropdown-menu-custom { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); } }
.dropdown-menu-custom li a { display: block; padding: 0.6rem 1rem; color: var(--text-dark); text-decoration: none; font-family: 'Inter', sans-serif; font-size: 0.9rem; border-radius: 8px; transition: var(--transition); }
.dropdown-menu-custom li a:hover { background: rgba(10, 88, 202, 0.1); color: var(--brand-blue); }

/* --- Buttons --- */
.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.theme-toggle { background: none; border: none; font-size: 1.2rem; color: var(--text-dark); cursor: pointer; transition: var(--transition); }
.theme-toggle:hover { color: var(--brand-blue); transform: rotate(-15deg); }
.btn-contact { background-color: var(--btn-blue); color: #ffffff; text-decoration: none; font-family: 'Outfit', sans-serif; font-weight: 600; padding: 0.7rem 1.8rem; border-radius: 50px; transition: var(--transition); }
.btn-contact:hover { background-color: #2563eb; transform: scale(1.03); box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); color: #fff;}
.mobile-toggle { background: none; border: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer;}

/* --- DARK MODE OVERRIDES (Neon Green Hover & Contact) --- */
body.dark-mode .nav-link:hover, 
body.dark-mode .nav-link.active { color: var(--flyer-neon); }
body.dark-mode .nav-link.active::after { background-color: var(--flyer-neon); }
body.dark-mode .dropdown-menu-custom li a:hover { background: rgba(94, 252, 2, 0.1); color: var(--flyer-neon); }
body.dark-mode .theme-toggle:hover { color: var(--flyer-neon); }
body.dark-mode .btn-contact { background-color: var(--flyer-neon); color: var(--flyer-dark); }
body.dark-mode .btn-contact:hover { background-color: #ffffff; color: var(--flyer-dark); box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3); }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .nav-container { padding: 0.8rem 1.5rem; border-radius: 20px; }
    .nav-brand, .nav-actions { position: relative; z-index: 1001; }
    .nav-links-wrapper { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: none; border-radius: 0; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; padding-top: 120px; padding-bottom: 50px; overflow-y: auto; opacity: 0; visibility: hidden; transform: scale(0.95) translateY(-20px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000; }
    body.dark-mode .nav-links-wrapper { background: rgba(15, 23, 42, 0.98); }
    .nav-links-wrapper.active { opacity: 1; visibility: visible; transform: scale(1) translateY(0); }
    .nav-menu { display: flex; flex-direction: column; gap: 1rem; width: 100%; margin: 0; padding: 0; }
    .nav-link { font-size: 1.3rem; font-weight: 600; color: var(--text-dark); transition: all 0.3s ease; padding: 5px 0; }
    .nav-link:hover, .nav-link.active { transform: translateX(10px); display: inline-block; }
    .has-dropdown { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .dropdown-menu-custom { position: static; transform: none; display: none; background: rgba(0, 0, 0, 0.03); box-shadow: inset 0 2px 10px rgba(0,0,0,0.05); border-radius: 12px; padding: 8px; margin-top: 10px; border: none; opacity: 1 !important; visibility: visible !important; }
    body.dark-mode .dropdown-menu-custom { background: rgba(255, 255, 255, 0.05); box-shadow: inset 0 2px 10px rgba(0,0,0,0.2); }
    .has-dropdown.mobile-open .dropdown-menu-custom { display: block !important; width: 100%; max-width: 250px; animation: fadeInDown 0.3s ease forwards; }
    .dropdown-menu-custom li a { display: block; font-size: 1.1rem; padding: 8px 15px; font-weight: 500; color: var(--text-dark) !important; border-radius: 8px; text-align: center;}
    .dropdown-menu-custom li a:hover { color: var(--brand-blue) !important; background: rgba(10, 88, 202, 0.08); }
    body.dark-mode .dropdown-menu-custom li a:hover { color: var(--flyer-neon) !important; }
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
/* ==========================================================
   3. HERO & SLIDER SECTION (Desktop, Dark Mode & Mobile)
========================================================== */
/* --- Desktop Hero --- */
.hero-section { min-height: 100vh; background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); padding: 150px 0 80px 0; color: var(--text-dark); position: relative; transition: background 0.4s ease, color 0.4s ease; overflow-x: hidden; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: 4.5rem; font-weight: 800; line-height: 1; color: #1E293B; text-transform: uppercase; letter-spacing: -1px; transition: color 0.4s ease; }
.hero-small-text { font-size: 0.55em; }
.highlight-green { color: var(--brand-blue); } 
.hero-subtitle { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 600; color: #475569; letter-spacing: 4px; margin-top: 5px; }

.services-badge { display: inline-block; background-color: var(--brand-blue); color: #ffffff; font-family: 'Outfit', sans-serif; font-weight: 800; padding: 0.5rem 1.5rem; border-radius: 4px; font-size: 1.1rem; letter-spacing: 1px; }
.services-list ul { list-style: none; padding: 0; margin: 0; }
.services-list li { font-size: 1rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 10px; color: #1E293B; }
.services-list i { color: var(--brand-blue); font-size: 0.7rem; }

/* Swiper Cards */
.courseSwiper { width: 100%; padding-bottom: 60px; overflow: hidden; position: relative; }
.course-card { width: 300px; border-radius: 24px; overflow: hidden; position: relative; border: 1px solid rgba(0, 0, 0, 0.08); box-shadow: 0 15px 35px rgba(0,0,0,0.08); background: #ffffff; cursor: pointer; }
.card-image { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.course-card:hover .card-image img { transform: scale(1.12); opacity: 0.9; }

.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px 25px; transition: background 0.4s ease; }
.course-card:hover .card-overlay { background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.6) 60%, transparent 100%); }
.overlay-content { transform: translateY(45px); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; }
.course-card:hover .overlay-content { transform: translateY(0); }

.card-overlay h4 { color: #1E293B; font-family: 'Outfit', sans-serif; font-weight: 700; margin: 0; font-size: 1.4rem; line-height: 1.2; }
.icon-box { width: 45px; height: 45px; background: var(--brand-blue); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(10, 88, 202, 0.2); }
.slider-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; padding: 10px 22px; background: var(--brand-blue); color: #ffffff; text-decoration: none; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; border-radius: 30px; opacity: 0; transform: translateY(20px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); transition-delay: 0.1s; }
.course-card:hover .slider-btn { opacity: 1; transform: translateY(0); }
.slider-btn:hover { background: #1E293B; color: #ffffff; transform: scale(1.05); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }

/* Center Slider Controls */
.slider-control-center { display: flex; justify-content: center; align-items: center; gap: 15px; position: relative; z-index: 10; }
.modern-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); background: rgba(255,255,255,0.8); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.courseSwiper .swiper-button-prev, .courseSwiper .swiper-button-next { display: none !important; } 
.modern-btn:hover { background: var(--brand-blue); color: white; border-color: var(--brand-blue); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(10, 88, 202, 0.2); }
.modern-btn:active { transform: translateY(0); }

.swiper-pagination-bullet { background: #1E293B !important; opacity: 0.2; transition: all 0.3s; }
.swiper-pagination-bullet-active { background: var(--brand-blue) !important; opacity: 1; width: 25px; border-radius: 10px; }

/* --- Dark Mode Hero Overrides --- */
body.dark-mode .hero-section { background: linear-gradient(135deg, var(--flyer-dark) 0%, #0a2916 100%); }
body.dark-mode .hero-title { color: #ffffff; }
body.dark-mode .highlight-green { color: var(--flyer-neon); }
body.dark-mode .hero-subtitle { color: #ffffff; }
body.dark-mode .services-badge { background-color: var(--flyer-neon); color: var(--flyer-dark); }
body.dark-mode .services-list li { color: #f8fafc; }
body.dark-mode .services-list i { color: var(--flyer-neon); }
body.dark-mode .course-card { border-color: rgba(94, 252, 2, 0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.5); background: #000; }
body.dark-mode .card-overlay { background: linear-gradient(to top, rgba(7, 28, 15, 0.95) 0%, rgba(7, 28, 15, 0.4) 50%, transparent 100%); }
body.dark-mode .course-card:hover .card-overlay { background: linear-gradient(to top, rgba(7, 28, 15, 0.98) 0%, rgba(7, 28, 15, 0.6) 60%, transparent 100%); }
body.dark-mode .card-overlay h4 { color: #fff; }
body.dark-mode .icon-box { background: var(--flyer-neon); color: var(--flyer-dark); box-shadow: 0 5px 15px rgba(94, 252, 2, 0.3); }
body.dark-mode .slider-btn { background: var(--flyer-neon); color: var(--flyer-dark); }
body.dark-mode .slider-btn:hover { background: #ffffff; color: var(--flyer-dark); box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3); }
body.dark-mode .swiper-pagination-bullet { background: #ffffff !important; opacity: 0.3; }
body.dark-mode .swiper-pagination-bullet-active { background: var(--flyer-neon) !important; opacity: 1; }
body.dark-mode .modern-btn { background: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.1); color: var(--flyer-neon); box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
body.dark-mode .modern-btn:hover { background: var(--flyer-neon); color: var(--flyer-dark); border-color: var(--flyer-neon); box-shadow: 0 6px 20px rgba(94, 252, 2, 0.3); }

/* --- Mobile Hero Overrides --- */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-section { padding-top: 110px; padding-bottom: 40px; }
    .slider-col { margin-top: 2.5rem !important; }
    
    .course-card { width: 82vw; max-width: 340px; aspect-ratio: 3/4; border-radius: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
    .card-overlay { padding: 25px 20px; }
    .card-overlay h4 { font-size: 1.5rem; letter-spacing: -0.5px; }
    .slider-btn { padding: 8px 18px; font-size: 0.85rem; margin-top: 10px; }
    
    .slider-control-center { display: none; }
    .courseSwiper { padding-bottom: 40px; }
}

/* ==========================================================
   4. ANIMATION CLASSES (For JavaScript Observer)
========================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.animate-in { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }


/* about us start */
/* ==========================================================
   3. PREMIUM ABOUT SECTION (Bento Grid UI)
========================================================== */
.premium-about-section { padding: 140px 0 100px 0; background-color: var(--bg-body); color: var(--text-dark); transition: var(--transition); overflow: hidden; }

/* Header Typography */
.premium-badge { display: inline-block; padding: 8px 16px; background: rgba(10, 88, 202, 0.1); color: var(--brand-blue); font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; border-radius: 50px; border: 1px solid rgba(10, 88, 202, 0.2); }
.premium-title { font-family: 'Outfit', sans-serif; font-size: 4.2rem; font-weight: 800; line-height: 1.1; margin: 0; color: #1E293B; letter-spacing: -1.5px; }
.gradient-text { background: linear-gradient(135deg, var(--brand-blue) 0%, #10B981 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- THE BENTO GRID ENGINE --- */
.bento-layout-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-top: 60px; }

/* Base Card Styling */
.bento-box { background: #ffffff; border-radius: 32px; padding: 40px; border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.02); position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease; display: flex; flex-direction: column; justify-content: center; }
.bento-box:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: rgba(0, 0, 0, 0.08); }

/* Grid Spans */
.bento-main { grid-column: span 7; }
.bento-image { grid-column: span 5; min-height: 350px; }
.bento-stats { grid-column: span 5; flex-direction: row; align-items: center; justify-content: space-evenly; }
.bento-tech { grid-column: span 7; }

/* Main Card Content */
.box-icon-top { width: 50px; height: 50px; background: rgba(10, 88, 202, 0.1); color: var(--brand-blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 25px; }
.bento-main h3 { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: #1E293B; margin-bottom: 15px; letter-spacing: -0.5px; }
.bento-main p { font-size: 1.1rem; color: #64748B; line-height: 1.7; margin: 0; }

/* Image Card Content */
.bento-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.bento-box:hover .bento-img { transform: scale(1.05); }
.image-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%); }
.image-text { position: absolute; bottom: 30px; left: 30px; z-index: 2; }
.image-text h4 { color: #ffffff; font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; margin: 0; }

/* Stats Card Content */
.stat-group { text-align: center; }
.stat-group .counter-number { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 800; color: #1E293B; margin: 0; line-height: 1; letter-spacing: -2px; }
.stat-group .counter-number::after { content: '+'; color: var(--brand-blue); font-size: 2.5rem; vertical-align: super; }
.stat-group p { font-size: 0.9rem; color: #64748B; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }
.stat-divider { width: 1px; height: 60px; background: rgba(0,0,0,0.1); }

/* Tech Stack Content */
.bento-tech h3 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 700; color: #1E293B; }
.box-icon-small { color: rgba(10, 88, 202, 0.5); font-size: 1.5rem; }
.modern-tech-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.modern-tech-pills span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: #334155; background: #f8fafc; border: 1px solid rgba(0,0,0,0.06); padding: 12px 20px; border-radius: 50px; transition: all 0.3s ease; }
.modern-tech-pills span:hover { background: #ffffff; border-color: var(--brand-blue); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* --- DEDICATED ABOUT BUTTON --- */
.btn-magnetic-link { display: inline-flex; align-items: center; gap: 15px; background: #1E293B; color: #ffffff; text-decoration: none; font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; padding: 10px 10px 10px 30px; border-radius: 50px; transition: all 0.4s ease; border: 1px solid rgba(255,255,255,0.1); }
.arrow-circle { width: 40px; height: 40px; background: var(--brand-blue); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: transform 0.4s ease; }
.btn-magnetic-link:hover { background: #0F172A; color: #ffffff; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.btn-magnetic-link:hover .arrow-circle { transform: translateX(5px); background: #ffffff; color: var(--brand-blue); }

/* --- DARK MODE OVERRIDES --- */
body.dark-mode .premium-about-section { background-color: var(--flyer-dark); }
body.dark-mode .premium-badge { background: rgba(94, 252, 2, 0.1); color: var(--flyer-neon); border-color: rgba(94, 252, 2, 0.2); }
body.dark-mode .premium-title { color: #ffffff; }
body.dark-mode .gradient-text { background: linear-gradient(135deg, var(--flyer-neon) 0%, #3a9e01 100%); -webkit-background-clip: text; }

body.dark-mode .bento-box { background: rgba(10, 23, 16, 0.6); border-color: rgba(255, 255, 255, 0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
body.dark-mode .bento-box:hover { border-color: rgba(94, 252, 2, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }

body.dark-mode .box-icon-top { background: rgba(94, 252, 2, 0.1); color: var(--flyer-neon); }
body.dark-mode .bento-main h3, body.dark-mode .bento-tech h3 { color: #ffffff; }
body.dark-mode .bento-main p { color: #94A3B8; }

body.dark-mode .stat-group .counter-number { color: #ffffff; }
body.dark-mode .stat-group .counter-number::after { color: var(--flyer-neon); }
body.dark-mode .stat-divider { background: rgba(255,255,255,0.1); }
body.dark-mode .stat-group p { color: #94A3B8; }

body.dark-mode .modern-tech-pills span { background: rgba(0,0,0,0.5); color: #cbd5e1; border-color: rgba(255,255,255,0.05); }
body.dark-mode .modern-tech-pills span:hover { background: rgba(10, 23, 16, 0.9); border-color: var(--flyer-neon); }

body.dark-mode .btn-magnetic-link { background: var(--flyer-neon); color: var(--flyer-dark); border: none; }
body.dark-mode .arrow-circle { background: var(--flyer-dark); color: var(--flyer-neon); }
body.dark-mode .btn-magnetic-link:hover { background: #ffffff; box-shadow: 0 15px 30px rgba(94, 252, 2, 0.2); }
body.dark-mode .btn-magnetic-link:hover .arrow-circle { background: var(--flyer-neon); color: var(--flyer-dark); }


/* --- MOBILE RESPONSIVENESS (PERFECT STACKING) --- */
@media (max-width: 991px) {
    .premium-about-section { padding: 100px 0 60px 0; }
    .premium-title { font-size: 3rem; }
    
    /* Convert Grid to Single Column on Phones */
    .bento-layout-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
    
    .bento-box { padding: 30px 25px; border-radius: 24px; }
    .bento-main h3 { font-size: 1.8rem; }
    .bento-image { min-height: 250px; }
    
    .bento-stats { flex-direction: column; gap: 30px; padding: 40px 20px; }
    .stat-divider { width: 100px; height: 1px; }
}



/* why choose us section */

/* ==========================================================
   2. SEGMENTED "WHY CHOOSE US" CSS (LIGHT MODE PERFECTED)
========================================================== */
.why-choose-section {
    padding: 120px 0;
    /* Default Dark Mode Base */
    background-color: var(--hero-bg, #050A0B);
    transition: background-color 0.4s ease;
    overflow: hidden;

    /* Theme Variables - DARK MODE DEFAULTS */
    --tilt-bg: rgba(255, 255, 255, 0.02);
    --tilt-border: rgba(255, 255, 255, 0.06);
    --tilt-bevel: rgba(255, 255, 255, 0.4);
    --tilt-text: #ffffff;
    --tilt-muted: #94A3B8;
    --theme-accent: var(--neon-green, #5EFC02); 
    --theme-glow: rgba(94, 252, 2, 0.4);
    
    /* Elements that need specific contrast flips */
    --toggle-wrapper-bg: rgba(255, 255, 255, 0.03);
    --icon-bg: rgba(255, 255, 255, 0.05);
    --shadow-base: rgba(0, 0, 0, 0.3);
}

/* =========================================
   THE LIGHT MODE OVERRIDES (The Fix)
   ========================================= */
body:not(.dark-mode) .why-choose-section {
    /* Slightly off-white background makes the pure white glass cards pop */
    background-color: #f8fafc; 
    
    /* Crisp Light Glass */
    --tilt-bg: rgba(255, 255, 255, 0.85); 
    --tilt-border: rgba(15, 23, 42, 0.08); 
    --tilt-bevel: #ffffff; /* Pure white bevel for a sharp glass edge */
    
    /* High Contrast Typography */
    --tilt-text: #0f172a; 
    --tilt-muted: #475569; 
    
    /* Corporate Blue Theme */
    --theme-accent: #0A58CA;
    --theme-glow: rgba(10, 88, 202, 0.15); /* Softer glow so it doesn't look messy */
    
    /* Invert UI elements so they are visible on white */
    --toggle-wrapper-bg: #ffffff;
    --icon-bg: rgba(15, 23, 42, 0.04);
    --shadow-base: rgba(15, 23, 42, 0.08); /* Blue-tinted slate shadow instead of pure black */
}

/* Headers */
.why-choose-section .luxury-eyebrow { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--theme-accent); border: 1px solid var(--theme-accent); padding: 8px 24px; border-radius: 50px; background: transparent; transition: all 0.4s ease;}
.why-choose-section .luxury-title { font-family: 'Outfit', sans-serif; font-size: clamp(3rem, 5vw, 4rem); font-weight: 900; color: var(--tilt-text); letter-spacing: -1.5px; margin: 0; transition: color 0.4s ease;}
.why-choose-section .text-gradient-neon { color: var(--theme-accent); text-shadow: 0 0 20px var(--theme-glow); transition: all 0.4s ease;}

/* --- THE LIQUID TOGGLE --- */
.advantage-toggle-wrapper {
    position: relative; display: inline-flex;
    background: var(--toggle-wrapper-bg); 
    border: 1px solid var(--tilt-border);
    border-radius: 50px; padding: 6px; backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px var(--shadow-base), inset 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
}
.advantage-toggle-btn {
    position: relative; z-index: 2; background: transparent; border: none;
    color: var(--tilt-muted); font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
    padding: 10px 24px; cursor: pointer; transition: color 0.3s ease;
}

/* Perfecting the Active Toggle Text Contrast */
.advantage-toggle-btn.active { color: #000000; }
body.dark-mode .advantage-toggle-btn.active { color: #000000; } /* Black on Neon Green */
body:not(.dark-mode) .advantage-toggle-btn.active { color: #ffffff; } /* White on Corporate Blue */

.advantage-toggle-active {
    position: absolute; top: 6px; bottom: 6px; left: 6px; width: 0;
    background: var(--theme-accent); border-radius: 50px;
    box-shadow: 0 4px 15px var(--theme-glow);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1; pointer-events: none;
}

/* --- THE FILTER ANIMATIONS --- */
.advantage-item { transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.advantage-item.fade-out { opacity: 0; transform: scale(0.8) translateY(20px); pointer-events: none; }
.advantage-item.collapse { display: none !important; }

/* --- THE 3D ENVIRONMENT --- */
.tilt-card-wrapper { perspective: 1000px; width: 100%; height: 100%; }
.tilt-card {
    position: relative; width: 100%; height: 100%;
    transform-style: preserve-3d; transition: transform 0.1s; cursor: crosshair;
}

.tilt-card-inner {
    position: relative; background: var(--tilt-bg); border: 1px solid var(--tilt-border);
    border-radius: 24px; padding: 40px 30px; height: 100%;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    
    /* Upgraded Shadow Physics for Light Mode */
    box-shadow: inset 0 1px 0 0 var(--tilt-bevel), 0 20px 50px var(--shadow-base);
    
    display: flex; flex-direction: column; z-index: 2;
    transform: translateZ(30px); 
    transition: all 0.4s ease;
}

/* Mouse-Tracking Background Glow */
.card-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, var(--theme-glow) 0%, transparent 60%);
    opacity: 0; z-index: 1; transition: opacity 0.4s ease;
    border-radius: 24px; transform: translateZ(10px);
    pointer-events: none;
}
.tilt-card:hover .card-glow { opacity: 0.5; }

/* Card Content */
.tilt-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: var(--icon-bg); color: var(--tilt-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 25px; border: 1px solid var(--tilt-border);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.tilt-card-inner h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--tilt-text); margin-bottom: 12px; letter-spacing: -0.5px; transition: color 0.4s ease;}
.tilt-card-inner p { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--tilt-muted); line-height: 1.6; margin: 0; transition: color 0.4s ease;}

/* Hover Enhancements */
.tilt-card:hover .tilt-icon {
    background: var(--theme-accent); color: #000; border-color: var(--theme-accent);
    box-shadow: 0 10px 30px var(--theme-glow); transform: scale(1.1);
}
body:not(.dark-mode) .tilt-card:hover .tilt-icon { color: #fff; } /* Icon contrast on Light Mode */

@media (max-width: 991px) {
    .advantage-toggle-wrapper { border-radius: 20px; padding: 10px; display: flex; flex-wrap: wrap; justify-content: center; }
    .advantage-toggle-active { border-radius: 12px; }
}


/* people trust us */

/* ==========================================================
   3. THE WALL OF PROOF (REVIEW CARDS)
========================================================== */
.trust-section {
    padding: 100px 0;
    background-color: var(--hero-bg, #050A0B);
    transition: background-color 0.4s ease;
    overflow: hidden;

    /* Theme Variables - Dark Mode */
    --review-bg: rgba(255, 255, 255, 0.03);
    --review-border: rgba(255, 255, 255, 0.08);
    --review-text: #ffffff;
    --review-muted: #94A3B8;
    --theme-accent: var(--neon-green, #5EFC02);
    --theme-glow: rgba(94, 252, 2, 0.3);
    --star-color: #fbbf24; /* Amber gold for stars */
}

/* Light Mode Overrides */
body:not(.dark-mode) .trust-section {
    background-color: #f8fafc;
    --review-bg: rgba(255, 255, 255, 0.9);
    --review-border: rgba(15, 23, 42, 0.08);
    --review-text: #0f172a;
    --review-muted: #64748b;
    --theme-accent: #0A58CA;
    --theme-glow: rgba(10, 88, 202, 0.2);
}

/* Headers */
.trust-section .luxury-eyebrow { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--theme-accent); border: 1px solid var(--theme-accent); padding: 8px 24px; border-radius: 50px; }
.trust-section .luxury-title { font-family: 'Outfit', sans-serif; font-size: clamp(3rem, 5vw, 4rem); font-weight: 900; color: var(--review-text); letter-spacing: -1.5px; margin: 0; }
.trust-section .text-gradient-neon { color: var(--theme-accent); text-shadow: 0 0 20px var(--theme-glow); }

/* --- MARQUEE CONTAINER --- */
.marquee-container {
    position: relative; width: 100vw; max-width: 100%; overflow: hidden; padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track { display: flex; width: max-content; gap: 24px; }
.marquee-group { display: flex; gap: 24px; padding-right: 24px; }

/* Animations */
.track-left .marquee-group { animation: scroll-left 40s linear infinite; }
.track-right .marquee-group { animation: scroll-right 45s linear infinite; }

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes scroll-right { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } }

/* Pause on hover */
.marquee-track:hover .marquee-group { animation-play-state: paused; }

/* --- THE REVIEW CARDS --- */
.review-card {
    position: relative;
    width: 400px; /* Fixed width so cards don't look uneven based on text length */
    background: var(--review-bg);
    border: 1px solid var(--review-border);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    cursor: default;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Faint Quote mark in background */
.quote-bg {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    color: var(--review-muted);
    opacity: 0.05;
    z-index: 0;
    transform: rotate(10deg);
}

/* Star Ratings */
.stars {
    color: var(--star-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative; z-index: 1;
}

/* The actual review paragraph */
.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--review-text);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    position: relative; z-index: 1;
}

/* The User Info at the bottom */
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative; z-index: 1;
    border-top: 1px solid var(--review-border);
    padding-top: 20px;
}

.review-author .avatar {
    width: 50px; height: 50px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid var(--review-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--review-text); font-size: 1.2rem;
}
body.dark-mode .review-author .avatar { background: rgba(255, 255, 255, 0.05); }

.review-author .info { display: flex; flex-direction: column; }
.review-author h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--review-text); margin: 0 0 3px 0; }
.review-author span { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--review-muted); letter-spacing: 0.5px; }

/* Differentiate the Client cards slightly */
.client-card .avatar { color: var(--theme-accent); }

/* Micro-Interactions on Hover */
.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-accent);
    box-shadow: 0 15px 40px var(--theme-glow);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .review-card { width: 300px; padding: 25px 20px; }
    .review-text { font-size: 0.95rem; }
}


/* ==========================================================
   4.5 PREMIUM FAQ SECTION
========================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--hero-bg, #050A0B);
    transition: background-color 0.4s ease;
    
    /* Theme Variables - Dark Mode */
    --faq-bg: rgba(255, 255, 255, 0.03);
    --faq-border: rgba(255, 255, 255, 0.08);
    --faq-text: #ffffff;
    --faq-muted: #94A3B8;
    --theme-accent: var(--neon-green, #5EFC02);
    --theme-glow: rgba(94, 252, 2, 0.2);
}

/* Light Mode Overrides */
body:not(.dark-mode) .faq-section {
    background-color: #f8fafc;
    --faq-bg: #ffffff;
    --faq-border: rgba(15, 23, 42, 0.1);
    --faq-text: #0f172a;
    --faq-muted: #475569;
    --theme-accent: #0A58CA;
    --theme-glow: rgba(10, 88, 202, 0.15);
}

/* Headers */
.faq-section .luxury-eyebrow { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--theme-accent); border: 1px solid var(--theme-accent); padding: 8px 24px; border-radius: 50px; }
.faq-section .luxury-title { font-family: 'Outfit', sans-serif; font-size: clamp(3rem, 5vw, 4rem); font-weight: 900; color: var(--faq-text); letter-spacing: -1.5px; margin: 0; }
.faq-section .text-gradient-neon { color: var(--theme-accent); text-shadow: 0 0 20px var(--theme-glow); }

/* FAQ Accordion Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.faq-item {
    background: var(--faq-bg);
    border: 1px solid var(--faq-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item:hover {
    border-color: var(--theme-accent);
    box-shadow: 0 10px 30px var(--theme-glow);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--faq-text);
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--theme-accent);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns plus into an X */
}

.faq-item.active .faq-question {
    color: var(--theme-accent);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--faq-muted);
    line-height: 1.6;
    margin: 0;
    padding: 0 30px 24px 30px;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-question { padding: 20px; font-size: 1.1rem; }
    .faq-answer p { padding: 0 20px 20px 20px; font-size: 1rem; }
}

/* contact us section */

/* ==========================================================
   5. PROFESSIONAL CONTACT ARCHITECTURE CSS
========================================================== */
.pro-contact-section {
    padding: 120px 0;
    background-color: var(--hero-bg, #050A0B);
    transition: background-color 0.4s ease;

    /* Theme Variables - Dark Mode Defaults */
    --pro-bg: rgba(255, 255, 255, 0.02);
    --pro-border: rgba(255, 255, 255, 0.1);
    --pro-border-focus: var(--theme-accent, #5EFC02);
    --pro-text: #ffffff;
    --pro-muted: #94A3B8;
    --pro-input-bg: rgba(255, 255, 255, 0.04);
    --theme-accent: var(--neon-green, #5EFC02);
    --theme-glow: rgba(94, 252, 2, 0.2);
    --btn-text: #000000;
}

/* Light Mode Overrides */
body:not(.dark-mode) .pro-contact-section {
    background-color: #f8fafc;
    --pro-bg: #ffffff;
    --pro-border: rgba(15, 23, 42, 0.15);
    --pro-border-focus: var(--theme-accent, #0A58CA);
    --pro-text: #0f172a;
    --pro-muted: #64748b;
    --pro-input-bg: #f1f5f9;
    --theme-accent: #0A58CA;
    --theme-glow: rgba(10, 88, 202, 0.2);
    --btn-text: #ffffff;
}

/* --- THE MAIN WRAPPER --- */
.pro-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* --- LEFT PANE: INFO --- */
.pro-contact-info .luxury-eyebrow { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--theme-accent); border: 1px solid var(--theme-accent); padding: 6px 20px; border-radius: 50px; background: transparent; transition: all 0.4s ease; }
.pro-title { font-family: 'Outfit', sans-serif; font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; color: var(--pro-text); line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; transition: color 0.4s ease;}
.pro-desc { font-family: 'Inter', sans-serif; font-size: 1.05rem; color: var(--pro-muted); line-height: 1.6; margin-bottom: 40px; transition: color 0.4s ease;}
.pro-contact-section .text-gradient-neon { color: var(--theme-accent); text-shadow: 0 0 20px var(--theme-glow); transition: all 0.4s ease;}

.pro-detail-item {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 30px;
}
.pro-detail-item i {
    font-size: 1.4rem; color: var(--theme-accent);
    background: var(--pro-input-bg); padding: 15px; border-radius: 12px;
    border: 1px solid var(--pro-border); transition: all 0.3s ease;
}
.pro-detail-item:hover i { background: var(--theme-accent); color: var(--btn-text); border-color: var(--theme-accent); box-shadow: 0 10px 20px var(--theme-glow); transform: translateY(-3px);}
.pro-detail-item span { display: block; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: var(--pro-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; transition: color 0.4s ease;}
.pro-detail-item strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.1rem; color: var(--pro-text); font-weight: 700; transition: color 0.4s ease;}

/* --- RIGHT PANE: FORM --- */
.pro-contact-form-wrapper {
    background: var(--pro-bg);
    border: 1px solid var(--pro-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.pro-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pro-input-group { margin-bottom: 25px; }

.pro-input-group label {
    display: block;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
    color: var(--pro-text); margin-bottom: 10px; transition: color 0.4s ease;
}

.pro-input-group input, 
.pro-input-group textarea, 
.pro-input-group select {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--pro-input-bg);
    border: 1px solid var(--pro-border);
    color: var(--pro-text);
    font-family: 'Inter', sans-serif; font-size: 1rem;
    outline: none; transition: all 0.3s ease;
    appearance: none;
}

.pro-input-group input::placeholder, 
.pro-input-group textarea::placeholder { color: var(--pro-muted); opacity: 0.6;}

/* The Focus Ring */
.pro-input-group input:focus, 
.pro-input-group textarea:focus, 
.pro-input-group select:focus {
    border-color: var(--pro-border-focus);
    background: transparent;
    box-shadow: 0 0 0 4px rgba(var(--theme-glow), 0.1); 
}
body.dark-mode .pro-input-group input:focus, 
body.dark-mode .pro-input-group textarea:focus, 
body.dark-mode .pro-input-group select:focus {
    box-shadow: 0 0 0 4px rgba(94, 252, 2, 0.1); 
}
body:not(.dark-mode) .pro-input-group input:focus, 
body:not(.dark-mode) .pro-input-group textarea:focus, 
body:not(.dark-mode) .pro-input-group select:focus {
    box-shadow: 0 0 0 4px rgba(10, 88, 202, 0.15); background: #ffffff;
}

/* =========================================
   INTERACTIVE SELECTION PILLS (BUG-FREE)
   ========================================= */
.radio-pill-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

/* Hide the actual radio buttons */
.radio-pill-container input[type="radio"] {
    display: none;
}

/* Style the Labels to look like buttons */
.radio-pill {
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--pro-input-bg);
    border: 1px solid var(--pro-border);
    color: var(--pro-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
}

/* Hover Effect */
.radio-pill:hover {
    border-color: var(--pro-border-focus);
}

/* Checked (Active) State */
.radio-pill-container input[type="radio"]:checked + .radio-pill {
    background: var(--theme-accent);
    color: var(--btn-text);
    border-color: var(--theme-accent);
    box-shadow: 0 10px 20px var(--theme-glow);
    font-weight: 700;
    transform: translateY(-2px);
}

/* Muted Placeholder Text */
.pro-input-group select:invalid,
.pro-input-group select option[value=""] {
    color: var(--pro-muted);
}

/* --- SUBMIT BUTTON --- */
.pro-submit-btn {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--theme-accent); color: var(--btn-text);
    font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700;
    padding: 18px; border-radius: 12px; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.pro-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--theme-glow);
}
.pro-submit-btn i { font-size: 1.3rem; }

/* Mobile Adjustments */
@media (max-width: 991px) {
    .pro-contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .pro-form-row { grid-template-columns: 1fr; gap: 0; }
    .pro-contact-form-wrapper { padding: 30px 20px; }
}



/* footer section */

/* ==========================================================
   6. STUDIO TYPOGRAPHY FOOTER CSS
========================================================== */
.studio-footer {
    padding: 80px 0 30px 0;
    background-color: var(--hero-bg, #050A0B);
    transition: background-color 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);

    /* Theme Variables */
    --st-text: #ffffff;
    --st-muted: #64748b;
    --st-line: rgba(255, 255, 255, 0.1);
    --theme-accent: var(--neon-green, #5EFC02);
}

/* Light Mode Overrides */
body:not(.dark-mode) .studio-footer {
    background-color: #f8fafc;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    --st-text: #0f172a;
    --st-muted: #64748b;
    --st-line: rgba(15, 23, 42, 0.1);
    --theme-accent: #0A58CA;
}

/* --- DUAL LOGO TOGGLE --- */
.f-logo { max-height: 45px; width: auto; display: block; }
.logo-light-mode { display: none; }
.logo-dark-mode { display: block; }

body:not(.dark-mode) .logo-light-mode { display: block; }
body:not(.dark-mode) .logo-dark-mode { display: none; }

/* --- MAIN CONTENT ROW --- */
.studio-statement {
    font-family: 'Inter', sans-serif; font-size: 1.15rem; color: var(--st-muted);
    line-height: 1.6; max-width: 380px; margin: 0; transition: color 0.4s ease;
}

.studio-contact-block { display: flex; flex-direction: column; gap: 15px; }

.studio-direct-link {
    font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700;
    color: var(--st-text); text-decoration: none; 
    display: inline-flex; align-items: center; gap: 12px; width: max-content;
    transition: color 0.4s ease;
    position: relative;
    z-index: 999;
    cursor: pointer;
    pointer-events: auto;
}
.studio-direct-link i {
    color: var(--theme-accent); font-size: 1.4rem; transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.studio-direct-link:hover { color: var(--theme-accent); }
.studio-direct-link:hover i { transform: scale(1.15); }

/* --- NAVIGATION LINKS (Micro-Interaction) --- */
.studio-heading {
    font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; color: var(--st-muted); margin-bottom: 30px;
    transition: color 0.4s ease;
}
.studio-list { list-style: none; padding: 0; margin: 0; }
.studio-list li { margin-bottom: 18px; }

.studio-list a {
    display: inline-flex; align-items: center;
    font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 500;
    color: var(--st-text); text-decoration: none; transition: color 0.4s ease;
}

/* The Fixed-Width Icon (Keeps text perfectly aligned) */
.nav-icon {
    color: var(--st-muted); font-size: 1.1rem; width: 30px; 
    transition: color 0.4s ease, transform 0.4s ease;
}

.studio-list a span {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}

/* The Hidden Arrow that appears on hover */
.hover-arrow {
    color: var(--theme-accent); font-size: 0.9rem; margin-left: 10px;
    opacity: 0; transform: translateX(-10px); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Physics */
.studio-list a:hover .nav-icon { color: var(--theme-accent); transform: scale(1.1); }
.studio-list a:hover span { transform: translateX(5px); color: var(--theme-accent); }
.studio-list a:hover .hover-arrow { opacity: 1; transform: translateX(5px); }

/* --- BOTTOM BAR --- */
.studio-bottom-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 40px; margin-top: 80px; border-top: 1px solid var(--st-line);
    font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--st-muted);
}

.studio-local-time { display: flex; align-items: center; gap: 8px; font-family: 'Courier New', monospace; font-weight: 600;}
.status-dot-mini { width: 8px; height: 8px; background: var(--theme-accent); border-radius: 50%; box-shadow: 0 0 10px var(--theme-accent); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }

.studio-back-top {
    cursor: pointer; display: flex; align-items: center; gap: 10px;
    color: var(--st-text); transition: color 0.3s ease; text-transform: uppercase; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
}
.studio-back-top i { transition: transform 0.3s ease; color: var(--theme-accent); }
.studio-back-top:hover { color: var(--theme-accent); }
.studio-back-top:hover i { transform: translateY(-4px); }

/* --- MODERN DEVELOPER CREDIT --- */
.studio-developer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 6px 6px 6px; 
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
}

.studio-developer:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 20px rgba(94, 252, 2, 0.15); /* Adjust for dark mode default */
}

body:not(.dark-mode) .studio-developer {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 30px rgba(10, 88, 202, 0.08);
}
body:not(.dark-mode) .studio-developer:hover {
    background: #ffffff;
    border-color: rgba(10, 88, 202, 0.3);
    box-shadow: 0 15px 35px rgba(10, 88, 202, 0.15);
}

.dev-avatar-wrapper {
    position: relative;
    display: flex;
}

.dev-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-body);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dev-avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--theme-accent);
    filter: blur(8px);
    opacity: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.studio-developer:hover .dev-avatar {
    transform: scale(1.05) rotate(5deg);
}
.studio-developer:hover .dev-avatar-glow {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.6;
}

.dev-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5px;
}

.dev-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--st-muted);
    line-height: 1;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.dev-info-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--st-text);
    line-height: 1;
    transition: all 0.5s ease;
}

.studio-developer:hover .dev-info-name {
    background: linear-gradient(135deg, var(--st-text) 0%, var(--theme-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.studio-developer:hover .dev-info-label {
    color: var(--st-text);
}

.dev-portfolio-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--st-line);
    color: var(--st-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dev-portfolio-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.dev-portfolio-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--theme-accent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.studio-developer:hover .dev-portfolio-link {
    box-shadow: 0 5px 15px var(--theme-glow);
}
.studio-developer:hover .dev-portfolio-link i {
    color: #fff;
    transform: translate(2px, -2px);
}
body:not(.dark-mode) .studio-developer:hover .dev-portfolio-link i {
    color: #fff;
}
.studio-developer:hover .dev-portfolio-link::after {
    transform: scale(1);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .studio-footer { padding: 60px 0 30px 0; }
    .studio-bottom-bar { flex-direction: column; gap: 20px; align-items: flex-start; margin-top: 50px; }
}
@media (max-width: 575px) {
    .studio-list a { font-size: 1rem; }
    .studio-statement { max-width: 100%; }
}

/* --- CUSTOM TOAST NOTIFICATION --- */
.custom-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-email-toast {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--theme-accent, #0A58CA);
    color: var(--text-dark, #1E293B);
    padding: 18px 25px;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(10, 88, 202, 0.15);
    transform: translateX(120%) scale(0.9);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

.custom-email-toast.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.custom-email-toast i {
    color: #ffffff;
    background: var(--theme-accent, #0A58CA);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(10, 88, 202, 0.3);
}

body.dark-mode .custom-email-toast {
    background: rgba(15, 23, 42, 0.85);
    color: #F8FAFC;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}