/* =========================================
   Design System & CSS Variables
   ========================================= */
:root {
    --bg-primary: #000000;
    --bg-secondary: #09090b;
    --accent-color: #D4AF37;
    /* Elegant metallic gold */
    --accent-gradient: linear-gradient(to right, #E2C275, #FFF3D8, #D4AF37);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   Typography
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title i {
    font-style: italic;
    color: var(--text-primary);
    /* Changed from accent to white */
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    /* Slightly more rounded to match screenshots */
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-white {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    background-color: #f0f0f0;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-trust-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-trust-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-8px);
    /* Visually align icon with text center */
}

.brand-icon-svg {
    width: 65px;
    height: 65px;
    /* Ensuring icon is slightly prominent */
}

.brand-icon-wrapper svg circle {
    fill: transparent;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: #E2C275;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.brand-subname {
    font-family: var(--font-body);
    font-size: 0.70rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.brand-line {
    height: 1px;
    flex-grow: 1;
    background-color: #ffffff;
    opacity: 0.5;
}

.footer-logo {
    margin-bottom: 24px;
    align-items: flex-start;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.phone-link:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.menu-toggle .bar {
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lighter overlay for the new design */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    max-width: 900px;
    margin-top: -50px;
    /* Slight push up to make room for trust bar */
}

.hero-title {
    font-size: 5rem;
    /* Larger to match screenshot */
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    /* Text shadow for legibility */
}

.hero-title i {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* =========================================
   Trust Bar
   ========================================= */
.hero-trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    color: var(--text-primary);
    /* Changed to white */
    font-size: 1.2rem;
}

.trust-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* =========================================
   Services Section (Grid)
   ========================================= */
.services {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card-large {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
}

.service-img-wrapper-large {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.service-card-large:hover .service-img {
    transform: scale(1.05);
}

.service-content-large {
    padding: 0 10px;
}

.service-title-large {
    font-size: 1.75rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    /* Using sans-serif for these cards */
}

.service-text-large {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1rem;
    max-width: 90%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    /* Changed from accent to white */
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link span {
    transition: transform var(--transition-fast);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* =========================================
   Process Sequence
   ========================================= */
.process {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.process-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed var(--border-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-step {
    display: flex;
    gap: 40px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 1px solid var(--text-primary);
    /* Changed from accent to white */
    color: var(--text-primary);
    /* Changed from accent to white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    flex-shrink: 0;
    z-index: 2;
}

.step-content {
    padding-top: 10px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-text {
    color: var(--text-secondary);
}

/* =========================================
   FAQ Accordion
   ========================================= */
.faq-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
    /* Changed from accent to white */
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
}

/* =========================================
   Contact Form
   ========================================= */
.contact {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 1.125rem;
}

.contact-form {
    background: var(--bg-primary);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--text-primary);
    /* Changed from accent color to white */
    box-shadow: 0 0 0 1px var(--text-primary);
    /* Changed from accent color to white */
}

.submit-btn {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    position: relative;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bg-primary);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* =========================================
   Success Modal
   ========================================= */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal.hidden .modal-content {
    transform: translateY(40px);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    border: 2px solid #2ecc71;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-btn {
    width: 100%;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-desc {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
    /* Changed to white */
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =========================================
   Animations & Utilities
   ========================================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-color);
    color: #000000;
    transform: translateY(-3px);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .services-grid-large {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 4rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Mobile Menu Active State */
    .nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 100;
        padding: 24px;
    }

    .nav.active .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .nav.active .nav-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav.active .btn-white {
        width: 100%;
    }

    .nav.active .nav-link {
        font-size: 1.5rem;
    }

    .menu-toggle.active {
        position: fixed;
        right: 24px;
        top: 28px;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 3rem;
    }

    .trust-container {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .process-line {
        left: 15px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .process-step {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}