/* CSS Variables */
:root {
    --bg-primary: #080a16;
    --bg-secondary: #0d1020;
    --accent-gold: #f2b84b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glow-blue: rgba(59, 130, 246, 0.3);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Glow Overlay */
.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    box-shadow:
        inset 0 0 100px 20px var(--glow-blue),
        inset 0 0 200px 50px rgba(59, 130, 246, 0.15);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 4rem 0;
}

.hero-bg-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.pattern-circle,
.pattern-rect {
    position: absolute;
    opacity: 0.05;
    border: 1px solid var(--text-secondary);
}

.pattern-circle {
    border-radius: 50%;
}

.pattern-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
}

.pattern-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: -50px;
}

.pattern-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 10%;
}

.pattern-4 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.logo-img {
    max-width: 350px;
    height: auto;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Grid (Two Column Layout) */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

/* Section Label */
.section-label {
    position: relative;
}

.section-label.centered {
    text-align: center;
    margin-bottom: 1rem;
}

.section-label .label-text {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-label .label-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-label.centered .label-line {
    margin: 0 auto;
}

.section-label h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Content */
.section-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-content p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

/* Intro Section */
.intro {
    padding: 6rem 0;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(242, 184, 75, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--text-primary);
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Philosophy Section */
.philosophy {
    padding: 4rem 0;
}

.philosophy-item {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.philosophy-item:last-child {
    border-bottom: none;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 16/10;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1d2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.portfolio-placeholder span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.portfolio-card:hover .portfolio-placeholder {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(242, 184, 75, 0.15);
}

.portfolio-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.portfolio-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.contact-info.centered {
    align-items: center;
    text-align: center;
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item span {
    color: var(--text-secondary);
    font-weight: 300;
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form textarea {
    margin-bottom: 1rem;
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: none;
    padding: 1rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(242, 184, 75, 0.3);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .stats-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn-send {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .container>* {
    animation: fadeInUp 0.8s ease forwards;
}

.logo {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.3s;
}

.hero-subtitle {
    animation-delay: 0.5s;
}