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

:root {
    --gold-50: #FBF8E9;
    --gold-100: #F7F1D4;
    --gold-200: #F0E4A9;
    --gold-300: #E8D77F;
    --gold-400: #E1CA54;
    --gold-500: #D9BD2A;
    --gold-600: #C3A91F;
    --gold-700: #9E8819;
    --gold-800: #796813;
    --gold-900: #54470D;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: white;
}

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

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
    padding: 0.5rem 0;
}

#header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0;
}

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

#header .logo img {
    width: 160px;
    height: auto;
}

#header nav button {
    background: none;
    border: none;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

#header.scrolled nav button {
    color: var(--gray-800);
}

#header nav button:hover {
    color: var(--gold-500);
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 0.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold-600);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-700);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.pulse {
    animation: pulse-subtle 3s infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8.75rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.text-gold {
    color: var(--gold-400);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E5E7EB;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: white;
    opacity: 0.8;
}

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

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.bg-white {
    background: white;
}

.bg-gray {
    background: var(--gray-100);
}

.bg-light {
    background: var(--gray-50);
}

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

.section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

@media (min-width: 768px) {
    .section h2 {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    color: var(--gray-700);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--gray-900);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.grid-3 {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.grid-4 {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card h2, .card h3 {
    margin-bottom: 1.5rem;
}

.card p {
    margin-bottom: 1.5rem;
}

.card-hover {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.card-hover:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    background: var(--gold-50);
    transform: translateY(-5px);
}

.card-hover .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-hover h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.card-hover p {
    color: var(--gray-700);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 28rem;
    height: 24rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid rgba(217, 189, 42, 0.3);
    transition: transform 0.5s;
    margin: 0 auto;
}

.video-container:hover {
    transform: scale(1.05);
}

.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(217, 189, 42, 0.1), rgba(217, 189, 42, 0.2));
    z-index: 10;
    pointer-events: none;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Portfolio Companies */
.portfolio-grid {
    max-width: 64rem;
    margin: 0 auto;
}

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

.company-logo {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.company-logo img {
    max-height: 100%;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.3s;
}

.company-card:hover .company-logo img {
    transform: scale(1.05);
}

.company-badge {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--gray-100);
    color: var(--gold-600);
    font-size: 0.875rem;
    font-weight: 500;
}

/* CTA Boxes */
.cta-box {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 32rem;
    margin: 3rem auto 0;
    border: 1px solid var(--gold-100);
}

.cta-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

.cta-gradient {
    background: linear-gradient(to right, var(--gold-50), var(--gold-100));
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gold-200);
    text-align: center;
    margin-top: 3rem;
}

.cta-gradient h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.cta-gradient p {
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Strategic Vision */
.strategic-vision {
    position: relative;
    width: 100%;
    max-width: 42rem;
    height: 16rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(217, 189, 42, 0.5);
    margin: 3rem auto;
}

@media (min-width: 768px) {
    .strategic-vision {
        height: 20rem;
    }
}

.strategic-vision::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(217, 189, 42, 0.2), rgba(217, 189, 42, 0.3));
    z-index: 10;
}

.strategic-vision img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 1.5rem;
    z-index: 20;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

/* Process Steps */
.process-steps {
    position: relative;
}

.process-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    text-align: center;
}

.process-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gold-100);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.process-step {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold-600);
    margin-bottom: 0.5rem;
}

.process-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.timeline {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* Checklists */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.checklist li::before {
    content: '✓';
    color: var(--gold-600);
    font-weight: 700;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.criteria-list > div {
    margin-bottom: 1.5rem;
}

.criteria-list h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.criteria-list p {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.icon-inline {
    margin-right: 0.75rem;
}

/* Advantages */
.advantage-card {
    text-align: center;
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--gold-100);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.advantage-card:hover .advantage-icon {
    background: var(--gold-200);
}

/* Value Proposition */
.value-prop-box {
    background: linear-gradient(to right, var(--gold-50), var(--gold-100));
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gold-200);
    margin-top: 4rem;
}

.value-prop-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.value-prop-box > p {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 1.5rem;
    line-height: 1.75;
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-600);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.contact-form-container {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(217, 189, 42, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--gold-600);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--gold-700);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    color: var(--gold-600);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.text-sm {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.directions-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--gold-600);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.directions-link:hover {
    color: var(--gold-700);
}

.map-container {
    height: 12rem;
    background: linear-gradient(to bottom right, var(--gold-50), var(--gray-100));
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gold-200);
    transition: box-shadow 0.3s;
}

.map-container:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    filter: contrast(1.05) saturate(0.95) brightness(1.02);
}

.map-caption {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo img {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

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

@media (min-width: 768px) {
    .footer-text {
        text-align: right;
    }
}

.footer-text p {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-links {
        justify-content: flex-end;
    }
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-500);
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    border-left: 4px solid #10B981;
}

.toast.error {
    border-left: 4px solid #EF4444;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.toast-description {
    font-size: 0.875rem;
    color: var(--gray-700);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade on Scroll */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
