:root {
    --bg-dark: #121820;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --accent-gold: #c5a059;
    --accent-hover: #b08d46;
    --white: #ffffff;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--bg-dark);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 24, 32, 0.85) 0%, rgba(18, 24, 32, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--white);
}

.badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--accent-gold);
    color: #e2c285;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .highlight {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--bg-dark);
}

/* Features */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 35px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.img-wrapper {
    height: 220px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-text p {
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #cbd5e1;
}

.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    color: var(--text-main);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.form-wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 1.05rem;
    padding: 15px;
}

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

#formResult {
    display: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: transform 0.3s, background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #0b0f14;
    color: #64748b;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #1e293b;
}

.sub-footer {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #475569;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}
