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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Color Variables */
:root {
    --primary-blue: #0f172a;
    --deep-blue: #1e293b;
    --midnight-blue: #020617;
    --charcoal: #374151;
    --gold-accent: #d97706;
    --muted-teal: #0d9488;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --white: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--charcoal);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-cta {
    background: var(--gold-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #b45309;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 119, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(217, 119, 6, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="30" height="26" patternUnits="userSpaceOnUse"><polygon points="15,2 25,8 25,20 15,26 5,20 5,8" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagon)"/></svg>');
    opacity: 0.8;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 300;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #cbd5e1;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--gold-accent);
    color: white;
    border-color: var(--gold-accent);
}

.cta-button.primary:hover {
    background: #b45309;
    border-color: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
}

/* Challenge Section */
.challenge {
    background: var(--light-gray);
}

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

.challenge-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.challenge-text {
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.8;
}

.challenge-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--muted-teal), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    font-size: 4rem;
    color: white;
}

/* Approach Section */
.approach {
    background: white;
}

.approach-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--charcoal);
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--light-gray);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step p {
    color: var(--charcoal);
    font-size: 1rem;
}

.approach-conclusion {
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-accent);
    font-weight: 500;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 4rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-accent);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    background: white;
}

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

.differentiator {
    text-align: center;
    padding: 2rem 1rem;
}

.diff-icon {
    width: 80px;
    height: 80px;
    background: var(--muted-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.diff-icon i {
    font-size: 2rem;
    color: white;
}

.differentiator h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.differentiator p {
    color: var(--charcoal);
    font-size: 1rem;
}

/* Case Study Section */
.case-study {
    background: var(--light-gray);
}

.case-study-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
}

.case-item.outcome {
    border-left: 5px solid var(--gold-accent);
}

.case-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-item h3 i {
    color: var(--gold-accent);
}

.case-item p {
    color: var(--charcoal);
    font-size: 1rem;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--primary-blue);
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-email {
    font-size: 1.4rem;
    color: var(--gold-accent);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-email i {
    font-size: 1.2rem;
}

.contact-email a {
    color: var(--gold-accent);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .cta-button.secondary {
    color: white;
    border-color: white;
}

.contact .cta-button.secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left h3 {
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: var(--light-gray);
    min-height: 100vh;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--light-gray);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-content .contact-info {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.legal-content .contact-info p {
    margin: 0;
}

.legal-content .contact-info a {
    color: var(--gold-accent);
    text-decoration: none;
}

.legal-content .contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .challenge-content .section-title {
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .differentiators {
        grid-template-columns: 1fr;
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .legal-page {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link, .nav-cta {
        font-size: 0.85rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}
