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

:root {
    --bg-dark: #050508;
    --bg-dark-rgb: 5, 5, 8;
    --bg-navy-dark: #0a0e1a;
    --bg-navy-dark-rgb: 10, 14, 26;
    --accent-gold: #ffd700;
    --accent-gold-rgb: 255, 215, 0;
    
    /* Luxury Gold Gradients */
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #f3c200 40%, #c59b00 80%, #a37c00 100%);
    --gold-text-gradient: linear-gradient(135deg, #fff7d6 0%, #ffd700 40%, #e6be00 85%, #b38f00 100%);
    --dark-gradient: linear-gradient(180deg, #0a0e1a 0%, #050508 100%);
    --navy-glow-gradient: radial-gradient(circle at 50% 50%, rgba(16, 28, 64, 0.4) 0%, rgba(5, 5, 8, 0) 70%);
    
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-light-gray: #cbd5e1;
    
    /* Translucent Glass Properties */
    --glass-bg: rgba(10, 14, 26, 0.65);
    --glass-bg-hover: rgba(15, 22, 41, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-gold: rgba(255, 215, 0, 0.15);
    
    /* Fonts */
    --font-headings: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows & Glows */
    --gold-glow: 0 0 25px rgba(255, 215, 0, 0.25);
    --gold-glow-strong: 0 0 35px rgba(255, 215, 0, 0.45);
    --navy-glow: 0 10px 40px rgba(16, 28, 64, 0.35);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1a2238;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
    box-shadow: var(--gold-glow);
}

/* Global Glowing Background Blobs (Optimized Float Animation) */
.bg-glow-blob {
    position: absolute;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(30, 48, 110, 0.15) 0%, rgba(5, 5, 8, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
    animation: floatBlob 25s infinite ease-in-out alternate;
    will-change: transform;
}
.blob-1 { top: 10%; right: -10%; animation-delay: 0s; }
.blob-2 { top: 40%; left: -20%; animation-delay: 5s; }
.blob-3 { bottom: 10%; right: -15%; animation-delay: 10s; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

p {
    color: var(--text-gray);
    font-weight: 400;
}

/* Utility Gradients & Highlights */
.gold-text {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    background-size: 200% auto;
    animation: goldShimmer 6s ease infinite;
}

.gold-accent {
    color: var(--accent-gold);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Premium Buttons */
.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Luxury Button Shine Effect */
.btn-primary::before, .nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before, .nav-cta:hover::before {
    left: 125%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow-strong);
    background: linear-gradient(135deg, #fff7d6 0%, #ffd700 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 12px 30px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.05);
}

/* Translucent Glass Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 8, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(5, 5, 8, 0.9);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.logo-img {
    height: 89px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition-smooth);
    /* Inverts white background to black and shifts dark navy to light silver-gold for high-end dark contrast */
    filter: invert(1) brightness(1.1) contrast(1.1) hue-rotate(180deg);
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(-2deg);
    filter: invert(1) brightness(1.35) contrast(1.2) hue-rotate(180deg) drop-shadow(0 0 10px rgba(255, 215, 0, 0.45));
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-active {
    color: var(--accent-gold) !important;
    font-weight: 600;
}

.nav-active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold-gradient);
    color: #000000 !important;
    padding: 8px 18px !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
    transition: var(--transition-smooth);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.nav-cta:hover {
    box-shadow: var(--gold-glow) !important;
    transform: translateY(-2px);
    color: #000000 !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 101;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, #0d1326 0%, var(--bg-dark) 70%);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.badge {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--glass-border-gold);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.8;
}

/* Premium Tech Visual inside Hero (Right Column) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-wrap {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 28, 64, 0.3) 0%, rgba(5, 5, 8, 0) 70%);
    filter: blur(10px);
}

.circle-orbit-1, .circle-orbit-2 {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 215, 0, 0.15);
    animation: rotateCW 40s linear infinite;
}

.circle-orbit-1 {
    width: 320px;
    height: 320px;
}

.circle-orbit-2 {
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: rotateCCW 25s linear infinite;
}

.center-card {
    position: absolute;
    background: rgba(10, 14, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    width: 280px;
    box-shadow: var(--navy-glow), 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 5;
    text-align: center;
    animation: floatCard 6s ease-in-out infinite;
}

.center-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.center-card .card-metric {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 5px;
}

.center-card .card-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-white);
    margin-bottom: 12px;
}

.center-card .card-graph {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.graph-bar {
    width: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.graph-bar.filled {
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Sections Styling */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-main-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(255, 215, 0, 0.04) 0%, rgba(5, 5, 8, 0) 60%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-gold);
    box-shadow: var(--navy-glow), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    background: radial-gradient(circle at 100% 100%, rgba(255, 215, 0, 0.08) 0%, rgba(5, 5, 8, 0) 65%);
}

.card-top {
    margin-bottom: 30px;
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-gold);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.service-card:hover .icon-box {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: var(--gold-glow);
    transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.service-card:hover h3 {
    color: var(--accent-gold);
}

.service-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

.service-features {
    list-style: none;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 14px;
}

.service-features li {
    font-size: 0.82rem;
    color: var(--text-light-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.service-features li i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.card-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 5px 12px;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.tech-badge i {
    font-size: 0.85rem;
}

.tech-badge:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-left-content {
    max-width: 540px;
}

.why-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    background: rgba(10, 14, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: var(--navy-glow);
}

.why-card .why-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    line-height: 1.5;
}

.why-feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.why-feature-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    background: rgba(10, 14, 26, 0.8);
    transform: translateY(-5px);
    box-shadow: var(--navy-glow);
}

.why-feature-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.why-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-feature-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Metrics Bar */
.metrics-strip {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    position: relative;
    group: hover;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
    box-shadow: var(--navy-glow), 0 15px 35px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.9) 0%, rgba(20, 28, 52, 0.9) 100%);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent-gold);
    opacity: 0.4;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(20, 35, 65, 0.8) 100%);
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5, 5, 8, 0.9) 0%, rgba(5, 5, 8, 0.4) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-details {
    padding: 28px;
}

.portfolio-tag {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.portfolio-link {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.portfolio-link:hover {
    color: var(--accent-gold);
}

.portfolio-link i {
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.portfolio-link:hover i {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(255, 215, 0, 0.15);
    background: var(--glass-bg-hover);
    transform: translateY(-5px);
    box-shadow: var(--navy-glow);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: rgba(255, 215, 0, 0.05);
    transition: var(--transition-smooth);
}

.testimonial-card:hover .quote-icon {
    color: rgba(255, 215, 0, 0.1);
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.rating i {
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a2238;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.client-avatar i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.client-company {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-wrap {
    max-width: 480px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-details p, .contact-details a {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--accent-gold);
}

/* Embedded WhatsApp Direct Link */
.whatsapp-banner {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(10, 14, 26, 0.5) 100%);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.whatsapp-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #25d366;
}

.whatsapp-title i {
    font-size: 1.4rem;
}

.whatsapp-banner p {
    font-size: 0.88rem;
    color: var(--text-light-gray);
    line-height: 1.5;
}

.btn-whatsapp-embed {
    background: #25d366;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-headings);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-embed:hover {
    background: #1ebd58;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Contact Form Grid */
.contact-form-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--navy-glow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light-gray);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    background: rgba(5, 5, 8, 0.5);
    border: 1px solid var(--glass-border);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
    background: rgba(5, 5, 8, 0.8);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.form-status {
    font-size: 0.9rem;
    margin-top: 15px;
    display: none;
    align-items: center;
    gap: 8px;
}

.form-status.success {
    display: flex;
    color: #25d366;
}

.form-status.error {
    display: flex;
    color: #ef4444;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3), 0 0 10px rgba(37,211,102,0.4);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebd58;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Footer Section */
.footer {
    background-color: #030305;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: var(--gold-glow);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-column h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-bottom .credit {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .credit span {
    color: var(--accent-gold);
    font-weight: 500;
}

/* Animations Definitions */
@keyframes rotateCW {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCCW {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.1); }
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Native JS Reveal Classes */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Delay Helpers for elements in grid */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    .hero-grid {
        gap: 30px;
    }
    .why-grid {
        gap: 40px;
    }
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        border-left: 1px solid var(--glass-border);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        padding: 50px;
        z-index: 100;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding-top: 140px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-left-content {
        max-width: 100%;
        text-align: center;
    }
    
    .metrics-strip {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info-wrap {
        max-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Service cards — 1 column on tablet/mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Pricing rows responsive */
    .pricing-info-part {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .hero-circle-wrap {
        width: 280px;
        height: 280px;
    }
    .circle-orbit-1 {
        width: 240px;
        height: 240px;
    }
    .circle-orbit-2 {
        width: 180px;
        height: 180px;
    }
    .center-card {
        width: 220px;
        padding: 20px;
    }
    .center-card .card-metric {
        font-size: 2.2rem;
    }
    
    .why-right-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 30px 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Service card mobile tweaks */
    .service-card {
        padding: 22px 20px !important;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    /* Pricing row mobile */
    .pricing-row,
    .combo-deal-row {
        flex-direction: column !important;
        gap: 16px;
    }
    
    .pricing-action-part {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }
    
    .order-btn-responsive {
        font-size: 0.8rem !important;
        padding: 10px 14px !important;
    }
}
