:root {
    --dark-green: #06261d;
    --gold: #c5a059;
    --cream: #f4f1ea;
    --text-dark: #1a1a1a;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    opacity: 0.6;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    background-color: rgba(6, 38, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    transition: max-height 0.3s ease-in-out;
}

.nav-links a {
    text-decoration: none;
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.nav-cta {
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--dark-green) !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: transparent;
    color: var(--gold) !important;
}

/* Mobile Nav State */
@media (max-width: 768px) {
    .menu-toggle { 
        display: block; 
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-green);
        padding: 0;
        border-bottom: 1px solid var(--gold);
        gap: 0;
    }
    .nav-links.active { 
        display: flex; 
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        padding: 20px;
        display: block;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }
    .nav-cta {
        border-radius: 0;
        border: none;
    }
}

/* Hero Refinement */
.hero {
    background-color: var(--dark-green);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 60px;
}

.hero-content { flex: 1; }
.hero-visual { flex: 1; display: flex; justify-content: center; }

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--cream);
}

.subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 20px; align-items: center; }

/* Floating Card Mockup */
.mockup-container {
    perspective: 1000px;
}

.floating-card {
    width: 320px;
    height: 180px;
    background: linear-gradient(135deg, #1a1a1a, #06261d);
    border: 1px solid var(--gold);
    border-radius: 15px;
    position: relative;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.2rem;
    border: 1px solid var(--gold);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-chip {
    width: 35px;
    height: 25px;
    background: linear-gradient(45deg, #c5a059, #e0c07a);
    border-radius: 5px;
    position: absolute;
    right: 25px;
    top: 50px;
}

.card-name {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.card-title {
    font-size: 0.6rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(10deg); }
    50% { transform: translateY(-20px) rotateY(-10deg); }
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-visual { margin-top: 50px; }
    .hero h1 { font-size: 3rem; }
    .hero-btns { justify-content: center; flex-direction: column; width: 100%; }
    .btn-gold, .btn-outline { width: 100%; box-sizing: border-box; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .floating-card { width: 280px; height: 160px; }
    .container { padding: 40px 15px; }
}

/* Buttons */
.btn-gold {
    background: linear-gradient(90deg, #c5a059, #e0c07a);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 30px;
    border-radius: 2px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card { padding: 40px; border-left: 1px solid #ddd; }
.icon-gold { color: var(--gold); font-size: 2.5rem; margin-bottom: 20px; }

/* Portfolio Placeholders */
.img-placeholder {
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--gold);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.img-placeholder:hover {
    transform: scale(1.02);
}

.overlay {
    background: rgba(6, 38, 29, 0.8); /* dark-green with opacity */
    color: var(--gold);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-placeholder:hover .overlay {
    opacity: 1;
}

/* Why Choose Us & Dark Sections */
.why-us, .final-cta { background-color: var(--cream); }
.offer, .final-cta { background-color: var(--dark-green); color: white; }

.benefit-row {
    display: flex;
    align-items: center;
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
}

.benefit-row i {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 20px;
}

.dark-card {
    border: 1px solid var(--gold);
    padding: 40px;
}

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

.btn-outline {
    border: 2px solid var(--gold);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-block;
}
