:root {
    --navy: #0a1628;
    --navy-light: #132240;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --white: #ffffff;
    --gray: #a0a0a0;
    --gray-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: var(--gold);
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(201, 162, 39, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Sections */
.section {
    padding: 100px 5%;
}

.section-alt {
    background: var(--navy-light);
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 2rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.1);
}

.card-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.value-item h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    padding: 150px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Content */
.content {
    max-width: 900px;
    margin: 0 auto;
}

.content h2 {
    color: var(--gold);
    margin: 2.5rem 0 1rem;
    font-size: 1.8rem;
}

.content h3 {
    color: var(--gold-light);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.3rem;
}

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

.content ul {
    color: var(--gray-light);
    margin: 1rem 0 1rem 2rem;
}

.content li {
    margin-bottom: 0.5rem;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(201, 162, 39, 0.05);
    border-left: 3px solid var(--gold);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 24px;
}

.contact-item-text h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.contact-item-text p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(201, 162, 39, 0.1);
    border-left: 3px solid var(--gold);
}

.contact-note p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-form {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 2.5rem;
}

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

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

.form-group label {
    display: block;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--navy);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select option {
    background: var(--navy);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    border: none;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: var(--gold-light);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--navy-light);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.footer-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    color: var(--gray);
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy-light);
    padding: 1.5rem 5%;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--navy);
}

.cookie-btn-accept:hover {
    background: var(--gold-light);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.cookie-btn-decline:hover {
    background: rgba(201, 162, 39, 0.1);
}

/* Mobile responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        font-size: 2rem;
    }

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

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
