﻿:root {
    --color-bg: #050505;
    --color-bg-alt: #0a0a0a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-gold: #D4AF37;
    --color-gold-light: #F4C430;
    --color-gold-dark: #AA8C2C;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.section-subtitle {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--color-gold-dark), var(--color-gold));
    color: #000;
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
    border: 1px solid var(--color-gold);
}

.btn-gold:hover {
    background: linear-gradient(45deg, var(--color-gold), var(--color-gold-light));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-dark {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: var(--color-gold);
    border: 1px solid #000;
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-gold);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-text p {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

nav a:not(.btn-gold):hover {
    color: var(--color-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 5px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    /* Placeholder high-quality building image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero h2 {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--color-bg-alt);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.director-card {
    margin-top: 30px;
    padding: 20px;
    border-left: 3px solid var(--color-gold);
    background: rgba(255, 255, 255, 0.03);
}

.director-info h4 {
    font-size: 1.2rem;
    color: var(--color-text);
}

.director-info .role {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.visual-box {
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--color-gold);
    border-right: 3px solid var(--color-gold);
}

.visual-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--color-gold);
    border-left: 3px solid var(--color-gold);
}

.building-icon {
    font-size: 5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--color-text);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Partners */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    opacity: 0.7;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-muted);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

/* Contact */
.bg-gold-gradient {
    background: linear-gradient(135deg, #111, #050505);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--color-text);
}

.contact-item p,
.contact-item a {
    color: var(--color-text-muted);
    transition: var(--transition);
}
.contact-item a:hover {
    color: var(--color-gold);
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    margin-bottom: 30px;
    border: 2px solid var(--color-gold);
    animation: slideDown 0.5s ease;
}

.form-success-message.show {
    display: block;
}

.form-success-message .success-icon {
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    color: #000;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: scaleIn 0.5s ease 0.2s backwards;
}

.form-success-message h3 {
    color: #000;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-success-message p {
    color: #555;
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    padding: 15px;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-brand h2 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.footer-copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--color-gold);
    }

    .header-content nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .visual-box {
        height: 300px;
    }
}
