/* ============================================
   PTS - Premium Enhanced Design
   ============================================ */

:root {
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F48FB1;
    --secondary: #FF5722;
    --gradient-brand: linear-gradient(135deg, #E91E63 0%, #FF5722 100%);
    --gradient-brand-v: linear-gradient(180deg, #E91E63 0%, #FF5722 100%);
    --gradient-brand-hover: linear-gradient(135deg, #C2185B 0%, #E64A19 100%);
    --gradient-brand-soft: linear-gradient(135deg, rgba(233,30,99,0.08) 0%, rgba(255,87,34,0.08) 100%);
    --dark: #0d0d1a;
    --dark-2: #131328;
    --dark-3: #1a1a3e;
    --gradient-dark: linear-gradient(135deg, #0d0d1a 0%, #131328 40%, #1a1a3e 100%);
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D0D0D0;
    --gray-400: #9E9E9E;
    --gray-600: #555;
    --gray-800: #1a1a1a;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 60px rgba(0,0,0,0.1);
    --shadow-brand: 0 10px 40px rgba(233,30,99,0.3);
    --shadow-glow: 0 0 30px rgba(233,30,99,0.2);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-600);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    font-weight: 700;
}

a { text-decoration: none; }
img { max-width: 100%; }
.section-padding { padding: 110px 0; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner { position: relative; }

.preloader-logo {
    width: 50px;
    height: 50px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-ring {
    position: absolute;
    top: -15px; left: -15px;
    width: 80px; height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(13,13,26,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    padding: 10px 0;
}

.navbar .logo-img { height: 45px; transition: all 0.3s ease; }
.navbar.scrolled .logo-img { height: 38px; }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 18px !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary-light) !important; }

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--gradient-brand);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 50%; }

.btn-nav {
    background: var(--gradient-brand);
    color: var(--white) !important;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-nav:hover::before { left: 100%; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-brand); color: var(--white) !important; }

.navbar-toggler { border: none !important; }
.navbar-toggler:focus { box-shadow: none !important; }
.navbar-toggler-icon { filter: brightness(0) invert(1); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-glow {
    background: var(--gradient-brand);
    color: var(--white);
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-brand);
    color: var(--white);
}

.btn-glow:hover::before { left: 100%; }

.btn-glass {
    color: var(--white);
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
}

.btn-glass:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.4s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: var(--primary-dark);
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Scanning line effect */
.hero-scanline {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    opacity: 0.4;
    z-index: 2;
    animation: scanDown 8s linear infinite;
}

@keyframes scanDown {
    0% { top: -2px; }
    100% { top: 100%; }
}

/* Grid overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(233,30,99,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233,30,99,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}

#particleCanvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

/* Animated blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(233,30,99,0.3), transparent);
    top: -150px; right: -100px;
    animation: blobMove1 15s ease-in-out infinite;
}

.blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,87,34,0.2), transparent);
    bottom: -100px; left: -100px;
    animation: blobMove2 18s ease-in-out infinite;
}

.blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(156,39,176,0.15), transparent);
    top: 40%; left: 30%;
    animation: blobMove3 20s ease-in-out infinite;
}

@keyframes blobMove1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-80px, 60px); }
    66% { transform: translate(40px, -40px); }
}

@keyframes blobMove2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(60px, -50px); }
    66% { transform: translate(-30px, 30px); }
}

@keyframes blobMove3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -60px) scale(1.2); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    background: rgba(233,30,99,0.12);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(233,30,99,0.2);
    animation: fadeInUp 0.8s ease;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px; height: 8px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 10px;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px #4caf50;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-typed-wrapper { display: inline; }

.typed-cursor {
    display: inline-block;
    color: var(--primary);
    animation: blink 0.8s step-end infinite;
    font-weight: 300;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

/* Trust badges */
.hero-trust-bar {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-icon {
    width: 34px; height: 34px;
    background: rgba(233,30,99,0.12);
    border: 1px solid rgba(233,30,99,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 0.9rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero image with rotating rings */
.hero-image-wrapper { position: relative; z-index: 2; }

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(233,30,99,0.15);
    top: 50%; left: 50%;
}

.ring-1 {
    width: 350px; height: 350px;
    margin: -175px 0 0 -175px;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 450px; height: 450px;
    margin: -225px 0 0 -225px;
    animation: ringRotate 30s linear infinite reverse;
    border-style: dashed;
}

.ring-3 {
    width: 550px; height: 550px;
    margin: -275px 0 0 -275px;
    animation: ringRotate 40s linear infinite;
    border-color: rgba(255,87,34,0.08);
}

/* Dots on rings */
.ring-dot {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--gradient-brand);
    border-radius: 50%;
    top: 0; left: 50%;
    margin-left: -5px; margin-top: -5px;
    box-shadow: 0 0 12px rgba(233,30,99,0.6);
}

@keyframes ringRotate { to { transform: rotate(360deg); } }

/* Hero Tech Visual */
.hero-tech-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.tech-center-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 130px; height: 130px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 60px rgba(233,30,99,0.5), 0 0 120px rgba(233,30,99,0.2);
    z-index: 3;
}

.tech-center-circle i {
    font-size: 3.2rem;
    color: #fff;
    z-index: 2;
    position: relative;
    animation: globeSpin 10s linear infinite;
}

@keyframes globeSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Pulsing ring around center */
.center-pulse {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: centerPulseAnim 2.5s ease-out infinite;
}

@keyframes centerPulseAnim {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* SVG connecting lines */
.orbit-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connect-line {
    stroke: rgba(233,30,99,0.15);
    stroke-width: 1;
    stroke-dasharray: 8 4;
    animation: dashFlow 3s linear infinite;
}

.cl-1 { animation-delay: 0s; }
.cl-2 { animation-delay: 0.5s; }
.cl-3 { animation-delay: 1s; }
.cl-4 { animation-delay: 1.5s; }
.cl-5 { animation-delay: 2s; }
.cl-6 { animation-delay: 2.5s; }

@keyframes dashFlow {
    to { stroke-dashoffset: -48; }
}

.tech-orbit-item {
    position: absolute;
    width: 65px; height: 65px;
    background: rgba(13,13,26,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(233,30,99,0.25);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 2px;
    font-size: 1.3rem;
    color: var(--primary);
    z-index: 4;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: orbitPulse 3s ease-in-out infinite;
}

.orbit-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-top: -2px;
}

.tech-orbit-item:hover {
    background: var(--gradient-brand);
    color: #fff;
    transform: scale(1.2) !important;
    box-shadow: 0 0 30px rgba(233,30,99,0.5);
    border-color: transparent;
}

.tech-orbit-item:hover .orbit-label {
    color: rgba(255,255,255,0.9);
}

.orbit-1 { top: 2%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-2 { top: 20%; right: 2%; animation-delay: 0.5s; }
.orbit-3 { bottom: 20%; right: 2%; animation-delay: 1s; }
.orbit-4 { bottom: 2%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.orbit-5 { bottom: 20%; left: 2%; animation-delay: 2s; }
.orbit-6 { top: 20%; left: 2%; animation-delay: 2.5s; }

@keyframes orbitPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,99,0.15); }
    50% { box-shadow: 0 0 25px 8px rgba(233,30,99,0.08); }
}

.floating { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* STATS BAR */
.stats-bar {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.stats-bar-inner {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.stat-icon {
    width: 55px; height: 55px;
    background: var(--gradient-brand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-box h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.stat-box p {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin: 2px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    background: var(--dark);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-track { overflow: hidden; white-space: nowrap; }

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 15px;
}

.marquee-content .dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    vertical-align: middle;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gradient-brand-soft);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-badge.light {
    background: rgba(255,255,255,0.06);
    color: var(--primary-light);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--gray-400);
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BG Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(233,30,99,0.04), transparent);
    top: -100px; right: -150px;
}

.shape-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,87,34,0.03), transparent);
    bottom: -100px; left: -100px;
}

.bg-mesh {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(233,30,99,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255,87,34,0.03) 0%, transparent 50%),
        var(--gray-50);
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--gray-50) 0%, #fff 50%, var(--gray-50) 100%);
}

/* ============================================
   SERVICE CARDS 3D
   ============================================ */
.service-card-3d {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 28px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: 0; left: -150%;
    width: 100%; height: 100%;
    background: linear-gradient(115deg, transparent 30%, rgba(233,30,99,0.04) 50%, transparent 70%);
    transition: left 0.8s ease;
}

.service-card-3d:hover .card-shine { left: 150%; }

.service-card-3d::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card-3d:hover::after { transform: scaleX(1); }

.service-card-3d:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(233,30,99,0.12);
    border-color: transparent;
}

.service-card-icon-wrap {
    width: 70px; height: 70px;
    background: var(--gradient-brand);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 28px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(233,30,99,0.2);
}

.service-card-3d:hover .service-card-icon-wrap {
    transform: rotateY(180deg);
    border-radius: 50%;
}

.service-card-3d h5 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card-3d p { font-size: 0.9rem; margin-bottom: 18px; color: var(--gray-400); }

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover { color: var(--secondary); gap: 12px; }

/* ============================================
   ABOUT SECTION
   ============================================ */
/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s ease 2s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* About Visual Box (Hexagon Grid) */
.about-visual-box {
    position: relative;
    min-height: 450px;
}

.hex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 420px;
    margin: 0 auto;
}

.hex-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hex-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hex-item:hover::before { transform: scaleX(1); }

.hex-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233,30,99,0.12);
    border-color: rgba(233,30,99,0.2);
}

.hex-item i {
    font-size: 2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.hex-item span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
}

.hex-1 { animation: hexFadeIn 0.6s ease 0.1s both; }
.hex-2 { animation: hexFadeIn 0.6s ease 0.2s both; }
.hex-3 { animation: hexFadeIn 0.6s ease 0.3s both; }
.hex-4 { animation: hexFadeIn 0.6s ease 0.4s both; grid-column: span 1; }
.hex-5 { animation: hexFadeIn 0.6s ease 0.5s both; }
.hex-6 { animation: hexFadeIn 0.6s ease 0.6s both; }
.hex-7 { animation: hexFadeIn 0.6s ease 0.7s both; grid-column: 2; }

@keyframes hexFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* About Dashboard Visual */
.about-dashboard {
    position: relative;
    padding: 20px;
    min-height: 400px;
}

.dash-main {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--gradient-dark);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.dash-body {
    padding: 24px 20px;
}

.dash-stat-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    flex: 1;
    text-align: center;
    padding: 16px 8px;
    background: var(--gradient-brand-soft);
    border-radius: 14px;
    border: 1px solid rgba(233,30,99,0.08);
}

.dash-stat-icon {
    width: 36px; height: 36px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 8px;
    color: #fff;
    font-size: 0.9rem;
}

.dash-stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-800);
    font-family: 'Poppins', sans-serif;
}

.dash-stat-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding: 0 10px;
}

.dash-bar {
    flex: 1;
    background: var(--gradient-brand);
    border-radius: 8px 8px 4px 4px;
    position: relative;
    min-height: 20px;
    animation: barGrow 1.5s ease-out both;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.dash-bar:hover { opacity: 1; }

.dash-bar span {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
}

@keyframes barGrow {
    from { height: 0 !important; }
}

/* Floating mini cards */
.dash-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--gray-200);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.dash-float-card i {
    font-size: 1.2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-float-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.dash-float-card small {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.df-1 {
    top: 10px; right: -10px;
    animation-delay: 0s;
}

.df-2 {
    bottom: 30px; left: -10px;
    animation-delay: 2s;
}

.about-img-stack { position: relative; }

.about-img-main { border-radius: var(--radius-lg); }

.about-img-overlay {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.experience-float {
    position: absolute;
    top: 20px; left: -25px;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 18px 25px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-brand);
    animation: float 4s ease-in-out infinite;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.9;
}

.text-lg { font-size: 1.05rem; }

.about-feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.about-feature-pill:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(233,30,99,0.08);
    transform: translateY(-3px);
}

.pill-icon {
    width: 40px; height: 40px;
    background: var(--gradient-brand-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.about-feature-pill:hover .pill-icon {
    background: var(--gradient-brand);
    color: var(--white);
}

.about-feature-pill span {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline { position: relative; }

.process-line {
    position: absolute;
    top: 85px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.15;
    display: none;
}

@media (min-width: 992px) { .process-line { display: block; } }

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.process-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    top: 10px; right: 20px;
}

.process-icon {
    width: 65px; height: 65px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(233,30,99,0.25);
    position: relative;
    z-index: 2;
}

.process-step h5 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--gray-400); margin: 0; }

/* ============================================
   GLASS CARDS (Why Choose Us)
   ============================================ */
.glass-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover::before { transform: scaleX(1); }

.glass-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-10px);
    border-color: rgba(233,30,99,0.3);
    box-shadow: 0 20px 60px rgba(233,30,99,0.1);
}

.glass-number {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 10px;
}

.glass-card h5 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.glass-card p { color: rgba(255,255,255,0.55); font-size: 0.93rem; }

/* GCC Visual Icons */
.gcc-visual-icon {
    width: 80px; height: 80px;
    background: var(--gradient-brand);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(233,30,99,0.3);
    transition: all 0.4s ease;
}

.glass-card:hover .gcc-visual-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(233,30,99,0.4);
}

.gcc-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.gcc-steps span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.gcc-steps span i {
    color: #4caf50;
    font-size: 0.7rem;
}

/* Floating icons in dark sections */
.floating-icons {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    overflow: hidden;
    z-index: 1;
}

.fi {
    position: absolute;
    color: rgba(233,30,99,0.06);
    font-size: 40px;
    animation: floatIcon 15s ease-in-out infinite;
}

.fi-1 { top: 10%; left: 5%; animation-delay: 0s; }
.fi-2 { top: 60%; left: 10%; animation-delay: 3s; }
.fi-3 { top: 20%; right: 8%; animation-delay: 6s; }
.fi-4 { bottom: 15%; right: 15%; animation-delay: 9s; }
.fi-5 { top: 45%; left: 45%; animation-delay: 12s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: 80px 0; }

.cta-card-premium {
    background: var(--gradient-brand);
    border-radius: var(--radius-lg);
    padding: 65px 55px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes .cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.c1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.c2 { width: 200px; height: 200px; bottom: -80px; left: 80px; }
.c3 { width: 150px; height: 150px; top: 20px; left: 40%; border: 2px solid rgba(255,255,255,0.08); background: transparent; }

.cta-card-premium h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 10px; }
.cta-card-premium p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0; }

/* ============================================
   PAGE HEADER (Inner pages)
   ============================================ */
.page-header {
    background: var(--gradient-dark);
    padding: 170px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
    top: -150px; right: -100px;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,87,34,0.06) 0%, transparent 70%);
    bottom: -100px; left: -50px;
}

.page-header h1 { font-size: 3.2rem; font-weight: 900; color: var(--white); margin-bottom: 15px; }
.page-header .breadcrumb { background: none; margin: 0; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.page-header .breadcrumb-item a:hover { color: var(--primary-light); }
.page-header .breadcrumb-item.active { color: var(--primary-light); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================
   SERVICES DETAIL
   ============================================ */
.service-row { padding: 50px 0; }
.service-content { padding: 20px 0; }

.service-icon-wrapper {
    width: 65px; height: 65px;
    background: var(--gradient-brand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(233,30,99,0.2);
}

.service-icon-wrapper i { font-size: 26px; color: var(--white); }
.service-content h3 { font-size: 1.6rem; margin-bottom: 15px; }
.service-content p { text-align: justify; }

.service-list { list-style: none; padding: 0; margin-top: 18px; }

.service-list li {
    padding: 10px 0;
    font-weight: 500;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i { color: var(--primary); font-size: 14px; }

/* ============================================
   GOVERNANCE CARDS
   ============================================ */
.governance-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.governance-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.governance-card.featured {
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-brand);
}

.governance-card.featured h4, .governance-card.featured p { color: var(--white); }
.governance-card.featured .card-icon { background: rgba(255,255,255,0.2); color: var(--white); }

.card-icon {
    width: 70px; height: 70px;
    background: var(--gradient-brand-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.governance-card h4 { font-size: 1.15rem; margin-bottom: 15px; }
.governance-card p { font-size: 0.93rem; text-align: justify; }

/* Digital, GCC, Staffing, Model, Mission Cards - same as before but enhanced */
.digital-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.digital-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(233,30,99,0.1);
}

.digital-icon {
    width: 65px; height: 65px;
    background: rgba(233,30,99,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.digital-icon img { width: 40px; height: 40px; object-fit: contain; }
.digital-card h4 { color: var(--white); font-size: 1.25rem; margin-bottom: 12px; }
.digital-card p { color: rgba(255,255,255,0.55); font-size: 0.93rem; text-align: justify; }

.gcc-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
}

.gcc-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.07); border-color: var(--primary); }
.gcc-img { margin-bottom: 20px; }
.gcc-img img { width: 200px; border-radius: var(--radius); }
.gcc-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.gcc-line { width: 50px; height: 3px; background: var(--gradient-brand); margin: 0 auto; border-radius: 10px; }

.staffing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 28px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    text-align: center;
}

.staffing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.staffing-icon { width: 80px; height: 80px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.staffing-icon img { max-width: 65px; max-height: 65px; object-fit: contain; }
.staffing-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.staffing-card p { font-size: 0.93rem; }

.model-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 35px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.model-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.model-icon { width: 60px; height: 60px; margin-bottom: 20px; }
.model-icon img { width: 55px; height: 55px; object-fit: contain; }
.model-card h4 { font-size: 1.25rem; margin-bottom: 15px; }
.model-card p { text-align: justify; }
.model-card ul { list-style: none; padding: 0; margin: 10px 0; }
.model-card ul li { padding: 5px 0 5px 25px; position: relative; font-weight: 500; }
.model-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--primary); }

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mission-card.vision { background: var(--gradient-brand); border: none; }
.mission-card.vision h3, .mission-card.vision p { color: var(--white); }
.mission-card.vision .mission-icon { background: rgba(255,255,255,0.2); color: var(--white); }

.mission-icon {
    width: 65px; height: 65px;
    background: var(--gradient-brand-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-card h3 { font-size: 1.5rem; margin-bottom: 15px; }

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    height: 100%;
}

.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--primary); }

.value-icon {
    width: 65px; height: 65px;
    background: var(--gradient-brand-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon { background: var(--gradient-brand); color: var(--white); transform: scale(1.1); }
.value-card h5 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; margin: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-card-mini {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.contact-card-mini:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); }

.contact-card-icon {
    width: 65px; height: 65px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(233,30,99,0.2);
}

.contact-card-mini h5 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card-mini p { font-size: 0.9rem; margin: 0; }

.contact-form-wrapper, .map-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 35px;
    border: 1px solid var(--gray-200);
    height: 100%;
}

.contact-form-wrapper h3, .map-card h3 { font-size: 1.5rem; margin-bottom: 5px; }

.contact-form-wrapper .form-control {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 14px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233,30,99,0.1);
}

.social-section h5 { font-size: 1rem; margin-bottom: 10px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 70px 0 0;
    color: rgba(255,255,255,0.5);
    position: relative;
}

.footer-top-wave {
    position: absolute;
    top: -30px; left: 0;
    width: 100%;
}

.footer-top-wave svg { width: 100%; height: 30px; }

.footer-logo { height: 45px; opacity: 0.9; }
.footer-desc { font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-links a i { font-size: 9px; color: var(--primary); transition: transform 0.3s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-links a:hover i { transform: translateX(3px); }

.footer-contact { list-style: none; padding: 0; }

.footer-contact li {
    margin-bottom: 14px;
    font-size: 0.9rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact li i { color: var(--primary); margin-top: 4px; min-width: 16px; }

.footer-social a {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: all 0.4s ease;
    margin-right: 8px;
}

.footer-social a:hover {
    background: var(--gradient-brand);
    transform: translateY(-4px) rotate(5deg);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(233,30,99,0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p { margin: 0; font-size: 0.85rem; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--gradient-brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: var(--shadow-brand);
}

.back-to-top:hover { color: var(--white); transform: translateY(-5px); }
.back-to-top.show { opacity: 1; visibility: visible; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    .page-header h1 { font-size: 2.4rem; }

    .stats-bar-inner { flex-wrap: wrap; gap: 15px; }
    .stat-box { flex: 0 0 calc(50% - 10px); }

    .navbar-collapse {
        background: var(--dark-2);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.06);
    }

    .btn-nav { margin-top: 10px; display: block; text-align: center; }
    .section-padding { padding: 80px 0; }
    .cta-card-premium { padding: 40px 30px; }
    .hero-ring { display: none; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .page-header { padding: 140px 0 60px; }

    .about-img-overlay { display: none; }

    .experience-float {
        position: relative;
        top: auto; left: auto;
        display: inline-flex;
        margin-top: 15px;
    }

    .contact-form-wrapper, .map-card { padding: 25px 20px; }
    .stats-bar-inner { padding: 25px 20px; }
    .stat-box { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-buttons .btn { display: block; width: 100%; margin-bottom: 12px; }
    .hero-buttons .btn.me-3 { margin-right: 0 !important; }
    .cta-card-premium h2 { font-size: 1.5rem; }
    .stat-box { flex: 0 0 100%; }
}
