/* ==========================================
   CSS Variables & Theming
   ========================================== */
   :root {
    /* Colors */
    --bg-main: #07090f;
    --bg-secondary: #0c111c;
    --bg-card: rgba(18, 25, 43, 0.6);
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    
    --accent-primary: #00d2ff;
    --accent-secondary: #3a7bd5;
    
    /* Gradients */
    --gradient-accent: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 210, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* UI Values */
    --border-radius: 16px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Spacing */
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.dark-section {
    background-color: var(--bg-secondary);
}

/* ==========================================
   Utility Classes
   ========================================== */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-glass);
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
}

/* ==========================================
   Background Effects
   ========================================== */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bg-glow-1 {
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    bottom: -200px;
    right: -200px;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-dot {
    color: var(--accent-primary);
    font-size: 2rem;
    line-height: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

.nav-btn {
    padding: 10px 24px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Offset for header */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 20px;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Abstract Mall Art (CSS Graphics) */
.image-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(18,25,43,0.8) 0%, rgba(12,17,28,0.8) 100%);
}

.stats-card {
    position: absolute;
    top: 32px;
    left: -20px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: var(--border-glass);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}

.stats-card i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.stats-card h4 {
    margin: 0;
    font-size: 1rem;
}

.stats-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

.abstract-mall-art {
    position: relative;
    width: 300px;
    height: 300px;
}

.art-layer {
    position: absolute;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.art-layer-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,210,255,0.1) 0%, rgba(58,123,213,0.05) 100%);
    transform: rotate(-10deg);
}

.art-layer-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, rgba(0,210,255,0.2) 0%, rgba(58,123,213,0.1) 100%);
    transform: rotate(5deg);
    backdrop-filter: blur(4px);
}

.art-layer-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: var(--gradient-accent);
    opacity: 0.8;
    transform: rotate(15deg);
    box-shadow: 0 0 40px rgba(0,210,255,0.4);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(0,210,255,0.3); }
    100% { box-shadow: 0 0 50px rgba(0,210,255,0.6); }
}

/* ==========================================
   About Section
   ========================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.about-card h3 {
    font-size: 1.25rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   Team Section
   ========================================== */
.team-header-row {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
}

.ceo-card {
    display: flex;
    flex-direction: column;
}

.ceo-image-container {
    background: radial-gradient(circle at top, rgba(0,210,255,0.15) 0%, transparent 80%);
    width: 100%;
    height: 400px;
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.ceo-info {
    padding: 32px;
}

@media (min-width: 992px) {
    .team-header-row {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        align-items: center;
        gap: 48px;
    }
    .team-card.ceo-card {
        flex-direction: column;
    }
    .ceo-image-container {
        width: 100%;
        height: 400px;
        margin: 0;
        border-radius: 12px 12px 0 0;
    }
    .ceo-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
    }
    .team-section-header {
        text-align: left;
        margin-bottom: 0;
        padding-left: 0;
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.team-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-info h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
    color: var(--text-main);
}

.team-title {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================
   Approach Section
   ========================================== */
.approach-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-list i {
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-top: 4px;
}

.feature-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.financial-card {
    border-top: 4px solid var(--accent-primary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-header i {
    font-size: 2rem;
    color: var(--accent-primary);
}

.card-header h3 {
    margin: 0;
}

.highlight-box {
    background: rgba(0, 210, 255, 0.05);
    border-left: 3px solid var(--accent-primary);
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h4 {
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ==========================================
   Services Section
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 350px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.contact-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-item strong {
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0,0,0,0.4);
}

.w-100 {
    width: 100%;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #04060a;
    padding: 80px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
}

.footer h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-main);
}

.social-icons a:hover {
    background: var(--accent-primary);
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   Animations & Responsive
   ========================================== */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

@media (max-width: 992px) {
    .hero-container, .approach-split, .contact-wrapper, .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-card {
        top: 10px;
        left: 10px;
    }
    
    .contact-wrapper {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 15, 0.95);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        clip-path: circle(0% at top right);
        transition: all 0.4s ease-out;
    }
    
    .nav-menu.active {
        clip-path: circle(150% at top right);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
}
