:root {
    --color-black: #0a0a0a;
    --color-gold: #d4af37;
    --color-gold-dark: #b89830;
    --color-white: #f0f0f0;
    --color-grey: #a0a0a0;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
}

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

.logo-area {
    text-align: left;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
}

.logo .logo-main {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.8rem;
    color: var(--color-grey);
    margin-top: 0.25rem;
    max-width: 250px;
}

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

.main-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

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

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #e0e0e0;
}

.btn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* General Section Styling */
section {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-gold);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #111;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold);
}

.service-card .btn {
    margin-top: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--color-grey);
}

/* Trusted By Section */
.trusted-by-section {
    background-color: #111;
    padding: 4rem 0;
}

.trusted-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-grey);
    margin-bottom: 2rem;
    font-weight: 500;
}

.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-grey);
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.logo-item:hover {
    opacity: 1;
    color: var(--color-white);
}

/* Why Us Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.highlight-card {
    padding: 2rem;
}

.highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--color-grey);
}

/* Contact Section */
.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--color-grey);
    margin-bottom: 1.5rem;
}

.email-link {
    font-size: 1.2rem;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-form input,
.contact-form textarea {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 1rem;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid #222;
    background-color: var(--color-black);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-grey);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--color-grey);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s;
}

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

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.hero-content .animate-on-scroll:nth-child(1) { transition-delay: 0.2s; }
.hero-content .animate-on-scroll:nth-child(2) { transition-delay: 0.4s; }
.hero-content .animate-on-scroll:nth-child(3) { transition-delay: 0.6s; }
.services-section .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-section .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-section .service-card:nth-child(3) { transition-delay: 0.3s; }
.why-us-section .highlight-card:nth-child(1) { transition-delay: 0.1s; }
.why-us-section .highlight-card:nth-child(2) { transition-delay: 0.2s; }
.why-us-section .highlight-card:nth-child(3) { transition-delay: 0.3s; }


/* Responsive Design */
@media (max-width: 992px) {
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-content {
        text-align: center;
    }
    .contact-content .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav ul {
        gap: 1.5rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .logos {
        flex-direction: column;
    }
    .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-links {
        display: flex;
        gap: 1rem;
    }
    .footer-links a {
        margin-left: 0;
    }
}