/* ===========================
   SUJI ENTERPRISES - STYLE.CSS
   =========================== */
:root {
  --primary: #3b1fa8;
  --primary-dark: #2a1580;
  --primary-light: #5b3fd8;
  --accent: #f59e0b;
  --accent2: #06b6d4;
  --dark: #0f0a2e;
  --text: #2d2d4e;
  --light: #f8f7ff;
  --white: #ffffff;
  --gray: #6b7280;
  --border: #e5e7eb;
  --gradient: linear-gradient(135deg, #3b1fa8 0%, #06b6d4 100%);
  --gradient-warm: linear-gradient(135deg, #3b1fa8 0%, #f59e0b 100%);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(59,31,168,.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* RESET */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ================
   TOP BAR
   ================ */
.topbar { background: var(--primary-dark); color: #fff; padding: 7px 0; font-size: 13px; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left span, .topbar-left a { color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; font-size: 12.5px; }
.topbar-left a:hover { color: var(--accent); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; font-size: 12.5px; padding: 3px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 50px; transition: .2s; }
.topbar-right a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ================
   HEADER
   ================ */
header { background: #fff; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(59,31,168,.12); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 54px; width: 54px; object-fit: contain; border-radius: 8px; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 900; color: var(--primary); display: block; line-height: 1.1; }
.logo-text .sub { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; }

/* NAV */
nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; padding: 8px 13px; font-size: 13.5px; font-weight: 500; color: var(--text); border-radius: 8px; transition: .2s; white-space: nowrap; }
.nav-item > a:hover, .nav-item > a.active { color: var(--primary); background: rgba(59,31,168,.07); }
.nav-item > a .arrow { font-size: 10px; transition: .2s; }
.nav-item:hover > a .arrow { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px; background: #fff; border-radius: 14px; box-shadow: 0 12px 48px rgba(0,0,0,.15); padding: 8px; z-index: 999; border: 1px solid rgba(59,31,168,.08); }
.nav-item:hover .dropdown { display: block; animation: dropIn .2s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.dropdown a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; font-size: 13px; color: var(--text); border-radius: 8px; transition: .15s; }
.dropdown a:hover { background: rgba(59,31,168,.07); color: var(--primary); padding-left: 16px; }
.dropdown a::before { content: '›'; color: var(--primary); font-size: 16px; font-weight: 700; }
.header-cta { background: var(--gradient); color: #fff !important; padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; white-space: nowrap; transition: .2s; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-cta:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,31,168,.35); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; background: #fff; z-index: 9999; padding: 80px 24px 30px; overflow-y: auto; transition: .3s; }
.mobile-nav.open { display: block; }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; font-size: 30px; cursor: pointer; color: var(--primary); line-height: 1; }
.mobile-nav .mob-item { border-bottom: 1px solid var(--border); }
.mobile-nav .mob-item > a { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--text); }
.mobile-nav .mob-sub { display: none; padding: 4px 0 12px 12px; }
.mobile-nav .mob-sub.open { display: block; }
.mobile-nav .mob-sub a { display: block; padding: 8px 0; font-size: 14px; color: var(--gray); border-bottom: 1px dashed var(--border); }
.mobile-nav .mob-sub a:last-child { border-bottom: none; }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ================
   HERO SLIDER
   ================ */
.hero { position: relative; overflow: hidden; height: 90vh; min-height: 540px; max-height: 800px; }
.slider { height: 100%; position: relative; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; inset: 0; }
.slide-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%; }
.slide-tag { display: inline-block; background: rgba(245,158,11,.18); border: 1.5px solid var(--accent); color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 18px; }
.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(38px, 6vw, 74px); font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 20px; }
.slide-title span { color: var(--accent); }
.slide-desc { font-size: 16px; color: rgba(255,255,255,.82); max-width: 520px; line-height: 1.75; margin-bottom: 36px; }
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gradient); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: .25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(59,31,168,.45); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.55); color: #fff; padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: .25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: .25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-wa { background: linear-gradient(135deg,#25D366,#128C7E); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: .25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.45); }
.slider-controls { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: .3s; border: none; }
.slider-dot.active { background: #fff; width: 30px; border-radius: 5px; }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; pointer-events: none; }
.slider-arrow { pointer-events: all; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(10px); border: 1.5px solid rgba(255,255,255,.35); color: #fff; display: flex; align-items: center; justify-content: center; transition: .2s; font-size: 20px; }
.slider-arrow:hover { background: rgba(255,255,255,.3); }

/* ================
   MARQUEE
   ================ */
.marquee-section { background: var(--primary); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 13.5px; font-weight: 500; white-space: nowrap; padding: 0 28px; }
.marquee-item::before { content: '●'; color: var(--accent); font-size: 9px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================
   SECTIONS
   ================ */
section { padding: 84px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.section-label::before { content: ''; width: 36px; height: 3px; background: var(--accent); border-radius: 3px; }
.section-label span { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--dark); line-height: 1.18; margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-sub { font-size: 15.5px; color: var(--gray); max-width: 580px; line-height: 1.75; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ================
   STATS
   ================ */
.stats { background: var(--primary); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.stat-item { background: transparent; text-align: center; padding: 32px 20px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 50px; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 6px; text-transform: uppercase; letter-spacing: 1.5px; }

/* ================
   SERVICES GRID
   ================ */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .32s; position: relative; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-img { height: 185px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 68px; }
.service-card:hover .service-img img { transform: scale(1.09); }
.service-body { padding: 22px; }
.service-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.service-desc { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.service-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.service-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--primary); background: rgba(59,31,168,.07); padding: 7px 14px; border-radius: 50px; transition: .2s; }
.service-link:hover { background: var(--primary); color: #fff; }
.service-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 700; padding: 3px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; z-index: 2; }

/* ================
   ABOUT
   ================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-main-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.about-badge { position: absolute; bottom: -24px; right: -24px; background: var(--primary); color: #fff; border-radius: var(--radius); padding: 24px 28px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; }
.about-badge .lbl { font-size: 12px; opacity: .75; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-feat { display: flex; align-items: flex-start; gap: 12px; background: var(--light); padding: 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); transition: .2s; }
.about-feat:hover { border-color: var(--primary); }
.feat-icon { width: 40px; height: 40px; min-width: 40px; background: var(--gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.feat-text h4 { font-size: 13px; font-weight: 700; color: var(--dark); }
.feat-text p { font-size: 12px; color: var(--gray); margin-top: 3px; line-height: 1.5; }

/* ================
   GALLERY SCROLL
   ================ */
.gallery { background: var(--dark); }
.gallery .section-title { color: #fff; }
.gallery-scroll { overflow: hidden; margin-top: 32px; }
.gallery-track { display: flex; gap: 16px; animation: galleryScroll 28s linear infinite; width: max-content; }
.gallery-track:hover { animation-play-state: paused; }
.gallery-item { min-width: 290px; height: 210px; border-radius: var(--radius); overflow: hidden; position: relative; flex-shrink: 0; }
.gallery-item .gi-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 72px; transition: .4s; }
.gallery-item:hover .gi-bg { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%); opacity: 0; transition: .3s; display: flex; align-items: flex-end; padding: 18px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13.5px; font-weight: 600; }
@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================
   WHY CHOOSE US
   ================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 28px 22px; border: 1.5px solid var(--border); transition: .3s; text-align: center; }
.why-card:hover { border-color: var(--primary); box-shadow: 0 8px 32px rgba(59,31,168,.1); transform: translateY(-4px); }
.why-icon { width: 66px; height: 66px; background: linear-gradient(135deg, rgba(59,31,168,.1), rgba(6,182,212,.1)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ================
   NET TYPES
   ================ */
.net-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.net-type-card { border-radius: 20px; overflow: hidden; position: relative; height: 270px; cursor: pointer; }
.net-type-bg { position: absolute; inset: 0; transition: .5s; }
.net-type-card:hover .net-type-bg { transform: scale(1.07); }
.net-type-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,10,46,.88) 35%, transparent 72%); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; }
.net-type-name { font-family: 'Playfair Display', serif; font-size: 23px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.net-type-tag { font-size: 12px; color: rgba(255,255,255,.65); }
.net-type-cta { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--accent); }

/* ================
   TESTIMONIALS
   ================ */
.testimonials { background: var(--primary); }
.testimonials .section-title { color: #fff; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.test-card { background: rgba(255,255,255,.09); border: 1.5px solid rgba(255,255,255,.15); border-radius: 20px; padding: 28px; transition: .3s; }
.test-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.test-stars { color: var(--accent); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.test-text { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.85; margin-bottom: 22px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 17px; flex-shrink: 0; }
.test-name { font-weight: 700; color: #fff; font-size: 14px; }
.test-loc { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ================
   FAQ
   ================ */
.faq { background: var(--light); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--border); overflow: hidden; transition: .2s; }
.faq-item.open { border-color: var(--primary); }
.faq-q { padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; }
.faq-icon { width: 30px; height: 30px; min-width: 30px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); transition: .3s; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--gray); line-height: 1.75; border-top: 1px solid var(--border); padding-top: 16px; margin: 0 24px; }
.faq-item.open .faq-a { display: block; }

/* ================
   CONTACT
   ================ */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--dark); margin-bottom: 22px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; background: #fff; padding: 20px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: .2s; }
.contact-detail:hover { border-color: var(--primary); }
.c-icon { width: 50px; height: 50px; min-width: 50px; border-radius: 14px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.c-text h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.c-text a, .c-text p { font-size: 14px; color: var(--gray); display: block; line-height: 1.7; }
.c-text a:hover { color: var(--primary); }
.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; color: var(--dark); margin-bottom: 26px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; color: var(--text); outline: none; transition: .2s; background: #fff; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,31,168,.08); }
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; background: var(--gradient); color: #fff; border: none; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 700; transition: .2s; letter-spacing: .3px; }
.submit-btn:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(59,31,168,.35); }
.success-msg { display: none; background: #d1fae5; color: #065f46; padding: 14px; border-radius: 10px; font-size: 14px; font-weight: 600; margin-top: 12px; text-align: center; border: 1px solid #6ee7b7; }

/* ================
   FOOTER
   ================ */
footer { background: var(--dark); color: #fff; }
.footer-top { padding: 68px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 52px; width: 52px; object-fit: contain; border-radius: 8px; }
.footer-logo .brand { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: #fff; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.85; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: 16px; transition: .2s; }
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: .15s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--accent); font-size: 15px; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.38); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ================
   FLOATING BTNS
   ================ */
.float-call { position: fixed; bottom: 98px; right: 24px; z-index: 998; background: var(--primary); color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(59,31,168,.45); font-size: 22px; animation: floatPulse 2.2s infinite; }
.float-wa { position: fixed; bottom: 24px; right: 24px; z-index: 998; background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.45); animation: floatPulse 2.8s infinite; }
@keyframes floatPulse { 0%,100% { box-shadow: 0 6px 24px rgba(59,31,168,.4); } 50% { box-shadow: 0 6px 32px rgba(59,31,168,.65), 0 0 0 12px rgba(59,31,168,.09); } }

/* ================
   BREADCRUMB
   ================ */
.breadcrumb-bar { background: var(--dark); padding: 52px 0 40px; position: relative; overflow: hidden; }
.breadcrumb-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(59,31,168,.6) 0%, rgba(6,182,212,.2) 100%); }
.breadcrumb-content { position: relative; z-index: 2; }
.breadcrumb-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,44px); font-weight: 900; color: #fff; margin-bottom: 12px; }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.6); }
.breadcrumb-nav a { color: var(--accent); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav span { color: rgba(255,255,255,.4); }

/* ================
   SERVICE INNER PAGE
   ================ */
.service-inner { background: #fff; }
.service-inner-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.service-inner-content h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.service-inner-content p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.service-inner-content h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.service-features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 24px; }
.sf-item { display: flex; align-items: flex-start; gap: 10px; background: var(--light); padding: 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.sf-check { color: var(--primary); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.sf-text { font-size: 13.5px; color: var(--text); font-weight: 500; line-height: 1.5; }
.service-inner-img { height: 360px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 120px; position: relative; overflow: hidden; }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-cta-card { background: var(--gradient); border-radius: var(--radius); padding: 28px; color: #fff; margin-bottom: 24px; }
.sidebar-cta-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta-card p { font-size: 13.5px; opacity: .85; margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta-card .cta-btns { display: flex; flex-direction: column; gap: 10px; }
.cta-btn-white { background: #fff; color: var(--primary); padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; text-align: center; display: block; transition: .2s; }
.cta-btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.cta-btn-wa { background: #25D366; color: #fff; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700; text-align: center; display: block; transition: .2s; }
.cta-btn-wa:hover { background: #128C7E; }
.sidebar-services h4 { font-size: 13px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.sidebar-services ul li { border-bottom: 1px solid var(--border); }
.sidebar-services ul li a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; font-size: 14px; color: var(--text); transition: .15s; }
.sidebar-services ul li a:hover { color: var(--primary); padding-left: 6px; }
.sidebar-services ul li a.active-service { color: var(--primary); font-weight: 700; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.process-step { text-align: center; padding: 24px 16px; background: var(--light); border-radius: var(--radius); border: 1px solid var(--border); position: relative; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.process-step h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.process-step p { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ================
   REVEAL ANIMATION
   ================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================
   RESPONSIVE
   ================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .net-types-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .service-inner-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .net-types-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; }
  .topbar-right, .topbar-left { display: none; }
  .topbar-center { display: flex; gap: 16px; }
  section { padding: 56px 0; }
  .slide-content { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .service-features-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero { height: 80vh; }
}
@media (max-width: 480px) {
  .hero { height: 75vh; min-height: 460px; }
  .slide-title { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .slider-arrows {
    top: auto;               /* Removes the vertical centering */
    bottom: 80px;            /* Moves them near the bottom */
    transform: none;         /* Removes the vertical shift */
    padding: 0 15px;         /* Keeps them near the edges */
  }

  .slider-arrow {
    width: 40px;             /* Makes the buttons slightly smaller for mobile */
    height: 40px;
    font-size: 16px;
  }
}

/* Ensure the gallery box has a fixed size so it doesn't collapse */
.gallery-item {
  position: relative;
  width: 250px;       /* Set your preferred width */
  height: 250px;      /* Set your preferred height */
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;     /* Prevents boxes from squeezing in the scrolling track */
}

/* Make the image fill the entire box perfectly */
.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Zooms/crops the image nicely without stretching it */
  z-index: 1;
}

/* Ensure the text overlay sits on top of the image */
.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4); /* Dark tint so white text is readable */
  display: flex;
  align-items: flex-end; /* Pushes text to the bottom */
  justify-content: center;
  padding: 20px;
  color: white;
  font-weight: 600;
}

/* Carousel Container */
.service-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 400px; /* Controls the height of the image area */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background-color: #f0f0f0;
}

.service-carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  color: #333;
}
.carousel-arrow:hover { background: #fff; }
.carousel-arrow.prev { left: 15px; }
.carousel-arrow.next { right: 15px; }

/* Dots */
.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background: #fff;
  width: 25px;
  border-radius: 5px;
}

/* Update the grid to give the text slightly more room and control the video width */
.service-inner-grid {
    display: grid;
    /* Video gets slightly less than half, text gets more, sidebar is fixed */
    grid-template-columns: 4fr 5fr 300px; 
    gap: 40px;
    align-items: start; /* Aligns items to the top so they don't stretch vertically to match each other */
}

/* Ensure the visual area maintains a good shape */
.service-inner-visual-area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    /* Instead of forcing a specific height, use aspect-ratio to keep it perfectly proportioned */
    aspect-ratio: 4 / 5; /* A nice vertical rectangle shape. Change to 1 / 1 for a square. */
    background: #e2e8f0; /* Soft fallback color */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Make the video fill that perfect proportion */
.service-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will now crop nicely without stretching the video itself */
    z-index: 1;
}

/* Ensure the text content area doesn't get squished */
.service-inner-content {
    min-width: 0; /* Prevents text from forcing the grid wider than the screen */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .service-inner-grid {
        grid-template-columns: 1fr 1fr; /* Stacks the sidebar underneath on medium screens */
    }
    .service-sidebar {
        grid-column: 1 / -1; /* Sidebar spans full width */
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .service-inner-grid {
        grid-template-columns: 1fr; /* Everything stacks into 1 column on phones */
    }
    
    .service-inner-visual-area {
        aspect-ratio: 16 / 9; /* Switch to a widescreen shape for phones so it isn't too tall */
    }
}

