/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #000;
    /* Deep Maroon */
    --secondary-color: #D4AF37;
    /* Gold */
    --text-heading: #1c1c1c;
    /* Almost Black */
    --text-body: #666666;
    /* Gray */
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --header-side-gap: clamp(44px, 4vw, 76px);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.btn {
    display: inline-block;
    background-color: #000;
    color: var(--white);
    padding: 14px 34px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

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

.btn-secondary {
    background-color: var(--white);
    color: var(--text-heading);
    border-color: var(--white);
}

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

/* Header */
.top-bar {
    background-color: #0f0f0f;
    color: #e8ddbf;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: none;
    /* Hidden on mobile mostly, block on desktop */
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

header {
    background: linear-gradient(180deg, #141414 0%, #0c0c0c 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 172px;
    padding: 0;
    position: relative;
}

.logo {
    grid-column: 2;
    justify-self: center;
    z-index: 2;
}

.logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.35);
}

.logo img {
    height: clamp(102px, 11vw, 148px);
    width: auto;
    max-width: none;
    object-fit: contain;
}

.nav-links {
    display: grid;
    grid-auto-flow: column;
    column-gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-left {
    grid-column: 1;
    justify-self: end;
    margin-right: var(--header-side-gap);
}

.nav-right {
    grid-column: 3;
    justify-self: start;
    margin-left: var(--header-side-gap);
}

.nav-links a {
    font-weight: 600;
    font-size: 0.92rem;
    color: #f0e5c5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a.btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #131313;
    padding: 10px 24px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.nav-links-mobile {
    display: none;
}

.nav-links-mobile a {
    font-weight: 600;
    font-size: 0.9rem;
    color: #f0e5c5;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.nav-links-mobile a.btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #131313;
}

.nav-links-mobile a.btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--secondary-color);
    grid-column: 3;
    justify-self: end;
}

/* Hero Section */
.hero {
    height: 40vh;
    /* Large height */
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero .btn:hover {
    color: var(--white);
    border-color: var(--white);
}

/* Common Section Titles */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

/* Cards (Services) */
.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Feature/About Split */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.split-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Contact Box */
.contact-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: #999;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2ad168, #179c49);
    color: var(--white);
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.whatsapp-float-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-icon img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.whatsapp-float-label {
    line-height: 1;
    letter-spacing: 0.2px;
}

/* Form */
input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    margin-bottom: 20px;
    outline: none;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 1200px) {
    nav {
        min-height: 154px;
        padding: 0;
    }

    .logo img {
        height: clamp(90px, 12vw, 128px);
    }

    .nav-links {
        column-gap: 20px;
    }

    .nav-left {
        margin-right: clamp(28px, 3vw, 52px);
    }

    .nav-right {
        margin-left: clamp(28px, 3vw, 52px);
    }

    .nav-links a {
        font-size: 0.84rem;
        letter-spacing: 0.8px;
    }

    .nav-links a.btn {
        padding: 9px 18px;
    }
}

@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        display: none;
    }

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

    nav {
        grid-template-columns: 1fr auto 1fr;
        min-height: 96px;
        padding: 8px 0;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .logo a {
        padding: 6px 10px;
        border-radius: 10px;
    }

    .logo img {
        height: clamp(66px, 18vw, 86px);
    }

    .mobile-menu-btn {
        grid-column: 3;
        justify-self: end;
    }

    .nav-links-mobile {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f0f0f;
        border-top: 1px solid rgba(212, 175, 55, 0.22);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 18px 0 20px;
        list-style: none;
        margin: 0;
        z-index: 1200;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .top-bar {
        display: none;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 58px;
        height: 58px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float-icon {
        width: 42px;
        height: 42px;
    }
}
