/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Brand Palette: Warm Luxury Tech */
    --primary-bronze: #cd7f32;
    --primary-dark: #8b4513;
    --accent-gold: #d4af37;
    --soft-beige: #f5f1e8;
    --warm-white: #fdfbf9;
    --text-dark: #2c2420; /* Deep Charcoal/Brown */
    --text-light: #6d635f;
    --white: #ffffff;
    
    /* Gradients */
    --grad-bronze: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
    --grad-gold: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 12px;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(205, 127, 50, 0.08);
    --shadow-hover: 0 15px 40px rgba(205, 127, 50, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--soft-beige); }
.text-center { text-align: center; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--grad-bronze);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-bronze);
    color: var(--primary-bronze);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-bronze);
    color: var(--white);
}

.section-title {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-bronze);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 { font-size: 2.5rem; }

/* =========================================
   3. COMPONENT: HEADER & NAV
   ========================================= */
.navbar {
    height: var(--header-height);
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}   

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
}

.logo span { color: var(--primary-bronze); }

.nav-links { display: flex; gap: 30px; }

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary-bronze); }

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-bronze);
    transition: 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   4. PAGE: HOME
   ========================================= */
.hero {
    position: relative; /* ✅ REQUIRED */
    height: 90vh;
    display: flex;
    align-items: center;
     justify-content: flex-start; /* ✅ LEFT ALIGN */
    padding-right: 30%;            /* ✅ PUSH FROM LEFT EDGE */
    margin-top: var(--header-height);

    background:
        radial-gradient(
            circle at top right,
            rgba(205, 127, 50, 0.15),
            transparent 45%
        ),
        url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'>\
<circle cx='1' cy='1' r='1' fill='rgba(205,127,50,0.06)'/>\
</svg>"),
        url("../images/hero.jpg");

    background-repeat: no-repeat, repeat, no-repeat;
    background-size: cover, auto, cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.35)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-bronze);
}


.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}


/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--primary-bronze);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--soft-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-bronze);
    margin-bottom: 20px;
}

/* =========================================
   5. PAGE: ABOUT & OTHERS
   ========================================= */
.page-header {
    background: var(--soft-beige);
    padding: 100px 0 60px;
    margin-top: var(--header-height);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border: 1px solid rgba(205, 127, 50, 0.1);
    border-radius: var(--radius-md);
}

/* =========================================
   6. CONTACT FORM
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.form-group { margin-bottom: 20px; }

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-bronze);
}

.contact-info-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
}

.contact-info-item { margin-bottom: 20px; display: flex; gap: 15px; align-items: center; }

/* =========================================
   7. FOOTER
   ========================================= */
footer {
    background: #1a1512;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.footer ul li { margin-bottom: 10px; }
.footer a:hover { color: var(--primary-bronze); }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background: var(--white); padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
}