/* Base Reset & Variables */
:root {
    --primary: #C9A25D;
    --primary-dark: #96762B;
    --secondary: #0f172a;
    --accent: #C9A25D;

    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    /* Slate 400 */

    --border-color: rgba(201, 162, 93, 0.3);
    --glow-color: rgba(201, 162, 93, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    /* Global Deep Dark Gradient */
    background-image:
        radial-gradient(900px 450px at 15% 20%, rgba(224, 201, 126, .10), transparent 60%),
        radial-gradient(700px 380px at 85% 30%, rgba(255, 223, 138, .05), transparent 60%),
        linear-gradient(180deg, #0b1020, #1a1a2e);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation Element */
.global-glow {
    position: fixed;
    inset: -40%;
    z-index: -1;
    background:
        radial-gradient(circle at 30% 30%, rgba(224, 201, 126, .05), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, .05), transparent 55%);
    filter: blur(40px);
    animation: floatGlow 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes floatGlow {
    from {
        transform: translate3d(-20px, -20px, 0)
    }

    to {
        transform: translate3d(20px, 20px, 0)
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.gap-4 {
    gap: 1rem;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.text-gold {
    color: var(--primary);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(201, 162, 93, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #0f172a;
    /* Dark text for contrast on gold */
    border: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #0f172a;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.7);
    /* More transparent */
    backdrop-filter: blur(16px);
    /* Stronger blur */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    max-width: none !important;
    width: 100%;
    margin: 0;
    padding: 0 1rem;
    /* Minimal padding */
}

.nav-logo img {
    height: 52px;
    /* Slightly bigger */
    filter: drop-shadow(0 0 8px rgba(201, 162, 93, 0.3));
    transition: transform 0.3s;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: none;
    /* Hidden on mobile, shown in media query */
}

.nav-link {
    font-weight: 500;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(201, 162, 93, 0.5);
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: block;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    gap: 1.5rem;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

/* Custom Language Selector */
.lang-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(201, 162, 93, 0.3);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: 99px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Custom Arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A25D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
}

.lang-selector:hover,
.lang-selector:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--glow-color);
    outline: none;
}

.lang-selector option {
    background-color: var(--bg-card);
    color: white;
    padding: 10px;
}

@media(min-width: 768px) {

    /* Desktop Nav Links */
    .nav-links {
        display: flex;
        /* Center in the available space */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 6rem;
        /* Much wider spacing */
        background: rgba(255, 255, 255, 0.03);
        padding: 1rem 4rem;
        /* Larger pill */
        border-radius: 99px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .mobile-menu-btn {
        display: none;
    }
}


/* Hero Section */
.hero {
    padding: 8rem 1rem 5rem;
    text-align: center;
    position: relative;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 162, 93, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 99px;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), #fff);
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 48rem;
    margin: 0 auto 3rem;
}

@media(min-width: 640px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.video-wrapper {
    margin: 4rem auto;
    max-width: 900px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 40px -10px rgba(201, 162, 93, 0.2);
}


/* Cards (Global) */
.card {
    background: rgba(30, 41, 59, 0.6);
    /* Semi-transparent card */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    background: rgba(30, 41, 59, 0.8);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(201, 162, 93, 0.1);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 162, 93, 0.2);
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.card-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Grids */
.services-grid,
.trust-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {

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

@media(min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Stats Strip */
.stats-strip {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media(min-width: 768px) {
    .stats-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Contact Section Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Form Styles */
.contact-form {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 1.5rem;
}

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

.form-label {
    display: block;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(201, 162, 93, 0.1);
}

.form-select option {
    background: var(--bg-card);
    color: white;
}

/* Contact / Social Links Section (Restored from contacts.html) */
.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #e0c97e, #ffdf8a);
    color: #0f1d40;
    font-weight: 700;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(110%);
}

.social-btn i {
    font-size: 1.4rem;
    width: 2rem;
    text-align: center;
}


/* Footer */
footer {
    background: #020617;
    /* Very dark slate */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 1rem 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-size: 2rem;
    background: linear-gradient(90deg, var(--primary), white);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.8rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.2s;
}

.floating-wa:hover {
    transform: scale(1.1);
}