/* ============================================
   Arkawave — style.css  |  Light Theme
   Purple × Peach  |  Clean & Modern
   ============================================ */

:root {
    /* Purple scale */
    --purple-100: #F3EEFF;
    --purple-200: #E4D4FF;
    --purple-300: #C4A0FF;
    --purple-500: #7C3AED;
    --purple-600: #5B21B6;
    --purple-700: #3B0764;

    /* Peach scale */
    --peach-100:  #FFF1EB;
    --peach-200:  #FFD9C8;
    --peach-400:  #FF9A70;
    --peach-500:  #FF7043;

    /* Neutrals */
    --white:      #FFFFFF;
    --bg:         #FAFBFF;
    --bg-2:       #F4F0FF;
    --text-dark:  #1A0E3A;
    --text-body:  #4A4060;
    --text-muted: #8B7FA8;
    --border:     #EDE6FF;

    /* Gradients */
    --gradient:         linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #FF7043 100%);
    --gradient-purple:  linear-gradient(135deg, #7C3AED, #A855F7);
    --gradient-peach:   linear-gradient(135deg, #FF9A70, #FF7043);
    --gradient-soft:    linear-gradient(135deg, #F3EEFF 0%, #FFF1EB 100%);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Inter', sans-serif;
    --radius:       18px;
    --radius-sm:    10px;
    --radius-xs:    6px;
    --shadow-sm:    0 2px 12px rgba(124,58,237,0.08);
    --shadow-md:    0 8px 32px rgba(124,58,237,0.14);
    --shadow-lg:    0 20px 60px rgba(124,58,237,0.18);
    --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: #FAFBFF; animation: pageLoad 0.5s ease forwards; color: var(--text-body); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); line-height: 1.2; letter-spacing: -0.02em; color: var(--text-dark); }

.gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

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

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Reveal variants */
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── Buttons ── */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-purple); color: #fff; border: none;
    border-radius: 50px; padding: 14px 34px;
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700;
    transition: var(--transition); position: relative; overflow: hidden;
    box-shadow: 0 6px 24px rgba(124,58,237,0.38);
    letter-spacing: 0.01em;
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(124,58,237,0.45); color: #fff; }
.btn-primary-custom i { transition: transform 0.3s; }
.btn-primary-custom:hover i { transform: translateX(4px); }

.btn-ghost-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--purple-600);
    border: 2px solid var(--purple-200); border-radius: 50px; padding: 12px 30px;
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
    transition: var(--transition);
}
.btn-ghost-custom:hover { background: var(--purple-100); border-color: var(--purple-300); color: var(--purple-600); transform: translateY(-2px); }

/* ── Section Labels ── */
.section-tag {
    display: inline-block; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--peach-500);
    background: var(--peach-100); border: 1px solid var(--peach-200);
    padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 3.8vw, 2.9rem); color: var(--text-dark); margin-bottom: 18px; font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.section-body { font-size: 1rem; color: var(--text-body); margin-bottom: 28px; }

/* ============================================  NAVIGATION  */
#mainNav { padding: 16px 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: var(--transition); z-index: 1000; }
#mainNav.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: var(--border); box-shadow: 0 4px 24px rgba(124,58,237,0.08); padding: 10px 0; }

.navbar-brand { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 0; text-decoration: none; }
.logo-icon { font-size: 1.6rem; background: var(--gradient-purple); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-right: 9px; flex-shrink: 0; display: inline-flex; align-items: center; }
.logo-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.04em; line-height: 1; display: block; }
.logo-tagline { font-family: var(--font-heading); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); display: block; line-height: 1.6; margin-top: 1px; }
.logo-accent { background: var(--gradient-peach); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-link { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600; color: var(--text-body) !important; padding: 7px 16px !important; border-radius: 50px; transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--purple-500) !important; background: var(--purple-100); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gradient-peach); border-radius: 2px; transition: var(--transition); }
.nav-link.active::after { width: 50%; }
.nav-cta { background: var(--gradient-purple) !important; color: #fff !important; box-shadow: 0 4px 14px rgba(124,58,237,0.3); margin-left: 6px; }
.nav-cta:hover { background: var(--gradient-purple) !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.4); }
.nav-cta::after { display: none; }

.navbar-toggler { border: none; background: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: block; width: 24px; height: 2px; background: var(--text-dark); margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 991px) {
    #navbarNav { background: #fff; border-radius: var(--radius); padding: 20px; margin-top: 10px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
    .nav-cta { margin-left: 0; margin-top: 8px; display: inline-block; }
}

/* ============================================  HERO  */
.hero-section { position: relative; overflow: hidden; background: var(--white); padding-top: 80px; }
.hero-row { min-height: 100vh; }

/* Blobs */
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(60px); }
.hero-blob-1 { width: 500px; height: 500px; background: rgba(124,58,237,0.08); top: -100px; right: -100px; }
.hero-blob-2 { width: 350px; height: 350px; background: rgba(255,154,112,0.1); bottom: 50px; left: -80px; }
.hero-blob-3 { width: 250px; height: 250px; background: rgba(168,85,247,0.06); top: 40%; right: 30%; }

.hero-text-col { position: relative; z-index: 2; padding: 60px 0; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--purple-600); background: var(--purple-100); border: 1px solid var(--purple-200); border-radius: 50px; padding: 6px 16px; margin-bottom: 24px; }
.badge-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; box-shadow: 0 0 10px #22C55E; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { box-shadow: 0 0 6px #22C55E; } 50% { box-shadow: 0 0 16px #22C55E; } }

.hero-title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; margin-bottom: 26px; color: var(--text-dark); letter-spacing: -0.03em; }

.hero-checklist { list-style: none; padding: 0; margin-bottom: 32px; }
.hero-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; color: var(--text-body); margin-bottom: 10px; }
.hero-checklist li i { font-size: 1.1rem; color: var(--purple-500); margin-top: 2px; flex-shrink: 0; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-heading); font-size: 1.9rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.stat-plus { font-size: 1.2rem; color: var(--purple-500); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Hero illustration */
.hero-img-col { position: relative; z-index: 2; }
.hero-illustration-wrap { position: relative; padding: 20px; }
.hero-circle-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, var(--purple-100) 0%, var(--peach-100) 60%, transparent 75%); z-index: 0; }
.hero-main-img { position: relative; z-index: 1; border-radius: 24px; width: 100%; object-fit: cover; height: 460px; box-shadow: var(--shadow-lg); }

.hero-float { position: absolute; z-index: 3; background: #fff; border-radius: var(--radius-sm); padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); border: 1px solid var(--border); animation: floatY 3s ease-in-out infinite; }
.hero-float i { font-size: 1.4rem; }
.hero-float-1 { bottom: 60px; left: -10px; animation-delay: 0s; }
.hero-float-1 i { color: var(--purple-500); }
.hero-float-2 { top: 60px; right: -10px; animation-delay: 1.5s; }
.hero-float-2 i { color: var(--peach-500); }
.hero-float strong { display: block; font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.hero-float span { font-size: 0.75rem; color: var(--text-muted); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================  CLIENTS STRIP  */


/* ============================================  ABOUT  */
.about-section { background: var(--white); }
.about-image-wrapper { position: relative; padding: 24px 24px 48px 0; }
.about-shape-bg { position: absolute; bottom: 0; left: 0; width: 85%; height: 80%; background: var(--gradient-soft); border-radius: var(--radius); z-index: 0; }
.about-main-img { position: relative; z-index: 1; border-radius: var(--radius); width: 100%; object-fit: cover; height: 480px; box-shadow: var(--shadow-lg); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.about-image-wrapper:hover .about-main-img { transform: scale(1.02); }
.about-float-card { position: absolute; bottom: 10px; right: 0; z-index: 2; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); }
.afc-icon { width: 40px; height: 40px; background: var(--peach-100); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; }
.afc-icon i { font-size: 1.3rem; color: var(--peach-500); }
.about-float-card strong { display: block; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.about-float-card span { font-size: 0.75rem; color: var(--text-muted); }
.about-dots { position: absolute; top: 10px; right: -10px; width: 80px; height: 80px; background-image: radial-gradient(circle, var(--purple-300) 1.5px, transparent 1.5px); background-size: 12px 12px; opacity: 0.5; z-index: 0; }

.mv-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.mv-card { display: flex; gap: 14px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease, border-color 0.3s ease; }
.mv-card:hover { border-color: var(--purple-300); box-shadow: var(--shadow-sm); transform: translateX(6px); }
.mv-icon { width: 42px; height: 42px; background: var(--purple-100); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.05rem; color: var(--purple-500); }
.mv-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.mv-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.tech-stack { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tech-label { font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; font-weight: 500; }
.tech-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.tech-badges span { font-size: 0.78rem; font-weight: 600; color: var(--purple-600); background: var(--purple-100); border: 1px solid var(--purple-200); border-radius: 50px; padding: 4px 12px; }

/* ============================================  SERVICES  */
.services-section { background: var(--bg); }

.service-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 26px; height: 100%; position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.3s ease; cursor: default; }
.service-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-soft); opacity: 0; transition: var(--transition); z-index: 0; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); border-color: var(--purple-300); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }

.service-card.featured { background: linear-gradient(135deg, var(--purple-500), #A855F7); border-color: transparent; }
.service-card.featured::before { display: none; }
.service-card.featured h3, .service-card.featured p { color: #fff; }
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); color: #fff; }
.service-card.featured .service-list li { color: rgba(255,255,255,0.85); }
.service-card.featured .service-list li i { color: var(--peach-400); }
.service-card.featured .service-link { color: var(--peach-400); }
.service-card.featured:hover { box-shadow: 0 20px 60px rgba(124,58,237,0.4); }

.service-featured-badge { position: absolute; top: 18px; right: 18px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; color: var(--purple-500); background: var(--white); border-radius: 50px; padding: 3px 10px; }
.service-card.featured .service-featured-badge { color: var(--purple-500); background: #fff; }

.service-icon-wrap { width: 56px; height: 56px; background: var(--purple-100); border: 1.5px solid var(--purple-200); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--purple-500); margin-bottom: 20px; transition: var(--transition); }
.service-card:not(.featured):hover .service-icon-wrap { background: var(--gradient-purple); color: #fff; border-color: transparent; transform: scale(1.05); }

.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; font-weight: 700; }
.service-card:not(.featured) h3 { color: var(--text-dark); }
.service-card p { font-size: 0.86rem; color: var(--text-body); margin-bottom: 18px; line-height: 1.7; }
.service-list { list-style: none; padding: 0; margin-bottom: 20px; }
.service-list li { font-size: 0.84rem; color: var(--text-muted); padding: 4px 0; display: flex; align-items: center; gap: 7px; }
.service-list li i { color: var(--peach-500); font-size: 0.9rem; }
.service-link { font-family: var(--font-heading); font-size: 0.84rem; font-weight: 700; color: var(--purple-500); display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.service-link:hover { gap: 9px; color: var(--peach-500); }

/* ============================================  CTA  */
.cta-section { padding: 20px 0 60px; }
.cta-inner { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--purple-500) 0%, #A855F7 60%, var(--peach-500) 100%); border-radius: 28px; padding: 60px; color: #fff; }
.cta-blob { position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: rgba(255,255,255,0.08); border-radius: 50%; pointer-events: none; }
.cta-inner h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 8px; color: #fff; }
.cta-inner p { color: rgba(255,255,255,0.8); margin: 0; }
.cta-inner .btn-primary-custom { background: #fff; color: var(--purple-600); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.cta-inner .btn-primary-custom:hover { background: var(--peach-100); }
@media (max-width: 768px) { .cta-inner { padding: 40px 28px; text-align: center; } }

/* ============================================  CONTACT  */
.contact-section { background: var(--bg-2); }
.contact-info-cards { margin-bottom: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon { width: 38px; height: 38px; background: var(--peach-100); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; color: var(--peach-500); flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.contact-info-item span { font-size: 0.85rem; color: var(--text-muted); }
.map-container { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); height: 220px; min-height: 180px; }
.map-container.flex-grow-1 { height: auto; }
.map-container iframe { width: 100%; height: 100%; min-height: 180px; border: none; display: block; }

.contact-form-wrapper { background: var(--white); border: 1.5px solid var(--border); border-radius: 24px; padding: 44px; box-shadow: 0 8px 40px rgba(124,58,237,0.1); display: flex; flex-direction: column; }
.form-group-custom { display: flex; flex-direction: column; gap: 7px; position: relative; }
.form-group-custom label { font-size: 0.83rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; display: block; }
.required { color: var(--peach-500); }
.form-input { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text-dark); font-family: var(--font-body); font-size: 0.93rem; width: 100%; transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; outline: none; -webkit-appearance: none; display: block; }
.form-input::placeholder { color: #BDB5CF; font-size: 0.9rem; }
.form-input:focus { border-color: var(--purple-500); background: var(--white); box-shadow: 0 0 0 4px rgba(124,58,237,0.09); outline: none; }
.form-input.error { border-color: var(--peach-500); }
select.form-input { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7FA8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.input-error { font-size: 0.76rem; color: var(--peach-500); min-height: 1rem; display: block; }
.btn-submit { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; font-size: 0.97rem; }
.btn-submit:hover i { transform: translateX(4px); }
.btn-submit i { transition: transform 0.3s; }
.form-success-msg { text-align: center; padding: 48px 20px; }
.success-icon-wrap { width: 64px; height: 64px; background: #DCFCE7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.success-icon-wrap i { font-size: 1.8rem; color: #22C55E; }
.form-success-msg h4 { font-size: 1.4rem; margin-bottom: 8px; color: var(--text-dark); }
.form-success-msg p { color: var(--text-muted); }
.alert-custom { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; }
.alert-error { background: #FFF1EB; border: 1px solid var(--peach-200); color: var(--peach-500); }
@media (max-width: 768px) { .contact-form-wrapper { padding: 26px 18px; } }

/* ============================================  FOOTER  */
.footer { background: var(--text-dark); color: #fff; padding-top: 72px; }
.footer-brand { margin-bottom: 16px; display: inline-block; }
.footer .logo-text { color: #fff; }
.footer .logo-tagline { color: rgba(255,255,255,.5); }
.footer .logo-icon { background: var(--gradient-purple); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 22px; max-width: 280px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: .85rem; color: rgba(255,255,255,.65); }
.footer-contact-item i { color: var(--peach-400); font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-links a:hover { background: var(--gradient-purple); color: #fff; transform: translateY(-3px); }
.footer-heading { font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--peach-400); padding-left: 5px; }
.newsletter-form { display: flex; }
.newsletter-input { flex: 1; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.12); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); padding: 11px 15px; color: #fff; font-family: var(--font-body); font-size: 0.88rem; outline: none; transition: var(--transition); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--purple-300); }
.newsletter-btn { background: var(--gradient-peach); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 11px 18px; color: #fff; cursor: pointer; font-size: 1rem; transition: var(--transition); }
.newsletter-btn:hover { opacity: 0.85; }
.footer-top { padding-bottom: 56px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--peach-400); }

/* ============================================  SCROLL TOP  */
.scroll-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: var(--gradient-purple); border: none; border-radius: 12px; color: #fff; font-size: 1.05rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: var(--transition); z-index: 999; box-shadow: 0 6px 20px rgba(124,58,237,0.4); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* ============================================  RESPONSIVE  */
@media (max-width: 768px) {
    .hero-stats { gap: 18px; } .stat-divider { display: none; }
    .hero-circle-bg { width: 300px; height: 300px; }
    .hero-main-img { height: 300px; }
    .about-main-img { height: 300px; }
    .footer-desc { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-float-1 { left: 0; }
    .hero-float-2 { right: 0; }
}
@media (max-width: 576px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-primary-custom, .btn-ghost-custom { width: 100%; justify-content: center; }
    .hero-title { font-size: 2rem; }
}

@keyframes pageLoad { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   ENHANCED ANIMATIONS & EFFECTS
   ============================================ */

/* Staggered children animation */
.stagger-children > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0ms; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:80ms; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:160ms; }
.stagger-children.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:240ms; }

/* Number counter shimmer during count */
.stat-num.counting { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Hero badge pulse ring */
.hero-badge { position: relative; }
.hero-badge::before { content: ''; position: absolute; inset: -3px; border-radius: 50px; border: 1.5px solid var(--purple-200); animation: badgePulse 2.5s ease infinite; }
@keyframes badgePulse { 0%,100% { opacity:0.4; transform:scale(1); } 50% { opacity:0; transform:scale(1.06); } }

/* Gradient text shimmer on hover */
.section-title .gradient-text { background-size: 200% 100%; animation: shimmerGrad 4s linear infinite; }
@keyframes shimmerGrad { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Service icon spin-in on hover */
.service-icon-wrap { transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, color 0.3s, border-color 0.3s; }
.service-card:not(.featured):hover .service-icon-wrap { transform: scale(1.12) rotate(-8deg); }

/* Contact form input focus line - removed bottom line overlay that caused display issues */
.form-group-custom { position: relative; }

/* Scroll-to-top bounce */
.scroll-top:hover { animation: bounceUp 0.5s ease; }
@keyframes bounceUp { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-8px)} 60%{transform:translateY(-4px)} }

/* CTA inner glow pulse */
.cta-inner { animation: ctaGlow 4s ease infinite alternate; }
@keyframes ctaGlow { from { box-shadow: 0 20px 60px rgba(124,58,237,0.25); } to { box-shadow: 0 20px 80px rgba(255,112,67,0.3); } }

/* Footer social hover pop */
.social-links a { transform-origin: center bottom; }
.social-links a:hover { animation: socialPop 0.35s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes socialPop { 0%{transform:scale(1)} 50%{transform:scale(1.25) translateY(-4px)} 100%{transform:scale(1) translateY(-3px)} }

/* Smooth underline links */
.service-link, .footer-links a, .nav-link { position: relative; }
/* Astro card */
.astro-card { border-color: #FFD5C8; background: linear-gradient(160deg, #fff 60%, #FFF1EB 100%); }
.astro-card:hover { border-color: var(--peach-500); box-shadow: 0 12px 40px rgba(255,112,67,.18); }
.astro-icon { background: linear-gradient(135deg,#FF9A70,#FF7043) !important; border-color: transparent !important; color: #fff !important; }
.astro-card .service-link { color: var(--peach-500); }
.astro-card .service-list li i { color: var(--peach-500); }

/* Hero stats counter highlight */
.hero-stats { gap: 32px; }
.stat-item { padding: 12px 18px; background: var(--purple-100); border-radius: var(--radius-sm); border: 1px solid var(--purple-200); transition: var(--transition); }
.stat-item:hover { background: var(--gradient-purple); border-color: transparent; }
.stat-item:hover .stat-num, .stat-item:hover .stat-plus { -webkit-text-fill-color: #fff; background: none; color: #fff; }
.stat-item:hover .stat-label { color: rgba(255,255,255,0.8); }

/* About section dots animation */
.about-dots { animation: dotsFloat 5s ease-in-out infinite alternate; }
@keyframes dotsFloat { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(-12px) rotate(5deg); } }

/* Navbar link hover underline grow */
.nav-link:not(.nav-cta)::after { transition: width 0.3s cubic-bezier(0.22,1,0.36,1); }

.contact-form-wrapper form { display: flex; flex-direction: column; flex: 1; }
.contact-form-wrapper form .row { flex: 1; }
