:root {
    --bg-dark: #08080a;
    --bg-section: #0f1014;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-light: rgba(255, 255, 255, 0.08);
    
    --text-main: #f8f9fa;
    --text-muted: #9ca3af;
    --text-dark: #111;
    
    --accent-gold: #c5a365;
    --accent-blue: #00d2ff;
    
    --font-heading: 'Poppins', sans-serif;
    --font-heading-alt: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #111, #222);
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--accent-gold), transparent);
    opacity: 0.1;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 0.3;
}

.btn-primary:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(197, 163, 101, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border-bottom: 1px solid var(--accent-blue);
    padding: 0.8rem 0;
    border-radius: 0;
}

.btn-secondary:hover {
    color: var(--accent-blue);
    padding-left: 0.5rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Glasscard */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 8, 10, 0.9);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading-alt);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: var(--text-main);
}

.btn-nav {
    border: 1px solid var(--border-light);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: var(--text-main);
    color: var(--text-dark);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(8,8,10,0.4) 0%, rgba(8,8,10,1) 100%);
}

.hero-content {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 10;
    padding-top: 5rem;
}

.hero-content .subheadline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-content .headline {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content .headline span {
    background: linear-gradient(90deg, var(--text-main), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* About Section */
.about {
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

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

.stat-num {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading-alt);
    color: var(--text-main);
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    position: relative;
}

.modern-card {
    padding: 2rem;
    margin-bottom: 2rem;
}

.offset {
    margin-left: 3rem;
    margin-top: -1rem;
    border-color: rgba(197, 163, 101, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* Expertise Section */
.expertise {
    background: var(--bg-dark);
}

.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.section-header.text-center {
    margin: 0 auto 4rem auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-card {
    padding: 2.5rem;
}

.expertise-card.lg-card {
    grid-column: span 2;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.expertise-card:hover .icon-wrapper {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* Hover glow effect */
.hover-glow:hover {
    box-shadow: 0 0 20px rgba(197, 163, 101, 0.1);
}

/* Ventures Section */
.ventures {
    background: var(--bg-section);
}

.venture-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.venture-row:last-child {
    margin-bottom: 0;
}

.venture-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    aspect-ratio: 4/3;
}

.venture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.venture-row:hover .venture-image img {
    transform: scale(1.05);
}

.venture-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8,8,10,0.8));
    pointer-events: none;
}

.venture-category {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.venture-highlights {
    margin-top: 1.5rem;
}

.venture-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.venture-highlights li i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-dark);
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.placeholder-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #111);
    border: 2px solid var(--border-light);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0c10 100%);
    padding: 8rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.cta-headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Contact Section */
.contact {
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 3rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.method-item i {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.method-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.method-item p {
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.05);
}

.submit-btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--text-main);
}

/* Animations & Responsive */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-slide {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.venture-row.reverse .reveal-slide {
    transform: translateX(50px);
}

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

@media (max-width: 968px) {
    .about-grid, .venture-row, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .venture-row.reverse .venture-content {
        order: 2;
    }
    
    .venture-row.reverse .venture-image {
        order: 1;
    }

    .expertise-card.lg-card {
        grid-column: span 1;
    }
    
    .offset {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content .headline {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .btn-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}
