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

:root {
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #1a1a1a;
    --bg-dark-tertiary: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-gray-light: #999999;
    --accent-red: #2563eb;
    --accent-red-dark: #1d4ed8;
    --accent-orange: #ea580c;
    --border-gray: #333333;
    --grid-color: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-white);
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--accent-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-link {
    background: transparent;
    color: var(--text-white);
    padding: 14px 0;
}

.btn-link:hover {
    color: var(--accent-red);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-apply-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--bg-dark);
    padding: 120px 20px 40px;
}

.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 69, 19, 0.15) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.hero-text {
    text-align: left;
}

.hero-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background-color: var(--bg-dark-tertiary);
}

.hero-image-1 {
    max-width: 600px;
    margin-left: auto;
}

.hero-image-2 {
    max-width: 500px;
    margin-right: 2rem;
}

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

.logo-small {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-line-1 {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title-line-2 {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.8;
}

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

.hero-footer {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-gray-light);
}

.social-icon {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-red);
}

/* Clients Section */
.clients-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    text-align: center;
}

.clients-headline {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.client-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.clients-more {
    color: var(--text-gray-light);
    font-style: italic;
}

/* Services Intro Section */
.services-intro {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-dark);
}

.section-tag {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.red-text {
    color: var(--accent-red);
}

.orange-text {
    color: var(--accent-orange);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1);
}

.service-icon .material-icons {
    font-size: 2rem;
    color: var(--text-white);
}

/* Material Icons styling */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    vertical-align: middle;
}

th .material-icons {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-left: 0.25rem;
    vertical-align: middle;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Growth Section */
.growth-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-dark);
}

/* Results Section */
.results-section {
    padding: 80px 20px;
    background-color: var(--bg-dark);
}

.results-headline {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.data-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-dark-tertiary);
    border-radius: 8px;
    overflow: hidden;
}

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

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-gray);
    font-size: 0.875rem;
}

th i {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

.sub-header {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-gray-light);
    margin-top: 0.25rem;
}

td {
    padding: 1rem;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-gray);
    font-size: 0.875rem;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

tfoot tr {
    background-color: var(--bg-dark-secondary);
}

tfoot td {
    font-weight: 600;
    padding: 1rem;
    border-top: 2px solid var(--border-gray);
}

.footer-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-gray-light);
    margin-top: 0.25rem;
}

.results-footer {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 2rem;
}

/* Track Record Section */
.track-record {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

/* Apply Section */
.apply-section {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--bg-dark);
}

.apply-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

/* Apply Page Header */
.apply-header {
    padding: 20px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-gray);
}

.apply-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-red);
}

.back-link .material-icons {
    font-size: 1.5rem;
}

/* Typeform Section */
.typeform-section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    min-height: 80vh;
}

.typeform-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.typeform-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.typeform-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.typeform-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.typeform-embed {
    width: 100%;
    height: auto;
    background-color: var(--bg-dark-tertiary);
    border-radius: 8px;
    overflow: visible;
}

.typeform-embed iframe {
    width: 100%;
    height: auto;
    border: none;
}

.typeform-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
}

/* Footer */
.footer {
    padding: 40px 20px;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: var(--text-gray-light);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-line-1 {
        font-size: 2rem;
    }
    
    .hero-title-line-2 {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-images {
        align-items: center;
    }
    
    .hero-image-1,
    .hero-image-2 {
        max-width: 100%;
        margin: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .clients-headline {
        font-size: 1.5rem;
    }
    
    .clients-logos {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-headline {
        font-size: 1.75rem;
    }
    
    table {
        font-size: 0.75rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
    
    .apply-headline {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .nav-apply-btn {
        font-size: 0.875rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 30px;
    }
    
    .hero-title-line-1 {
        font-size: 1.75rem;
    }
    
    .hero-title-line-2 {
        font-size: 1.875rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

