/* Google Fonts Import: Modern 'Outfit' for Headings and 'Poppins' for Body */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Poppins:wght@300;400;500&display=swap');

:root {
    --gold: #C5A021;
    --dark: #121212;
    --light: #f4f4f4;
    --white: #ffffff;
    --green: #25D366;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6; 
    color: #333; 
    overflow-x: hidden; 
    background-color: var(--white);
}

/* Stylish Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: auto; 
}
a {
  text-decoration: none !important; }

/* --- Header & Nav --- */
.main-header { 
    background: var(--dark); 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.4); 
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img { 
    height: 55px; 
    transition: var(--transition);
}

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

.menu-toggle {
    display: none; 
}

.nav-menu ul { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
}

.nav-menu a { 
    color: var(--white); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 16px; 
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

.call-btn-nav { 
    background: var(--gold); 
    color: black !important; 
    padding: 10px 22px; 
    border-radius: 8px; 
    font-weight: 700; 
    box-shadow: 0 4px 10px rgba(197, 160, 33, 0.3);
    transition: var(--transition);
}

.call-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 33, 0.5);
}

/* --- Hero Section --- */
.hero { 
    height: 85vh; 
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/hero-image.png') center center / cover no-repeat; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    padding: 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    color: var(--gold); 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    font-weight: 800;
    line-height: 1.1;
}

.hero p { 
    font-size: clamp(1.1rem, 2vw, 1.4rem); 
    max-width: 750px; 
    margin: 0 auto 35px auto; 
    font-weight: 300;
}

/* --- Service Cards & Titles --- */
.section-padding { padding: 80px 0; }

.section-title { 
    text-align: center; 
    margin-bottom: 50px; 
    font-size: 2.5rem; 
    position: relative; 
    text-transform: capitalize;
}

.section-title::after { 
    content: ''; 
    width: 70px; 
    height: 4px; 
    background: var(--gold); 
    position: absolute; 
    bottom: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
    border-radius: 2px;
}

.service-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
}

.card { 
    background: white; 
    padding: 40px 30px; 
    border-radius: 15px; 
    text-align: center; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); 
    border: 1px solid #f0f0f0; 
    transition: var(--transition); 
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.card i { 
    font-size: 50px; 
    color: var(--gold); 
    margin-bottom: 25px; 
}

.card h3 { 
    margin-bottom: 15px; 
    font-size: 1.5rem;
}

.read-more { 
    color: var(--gold); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 15px; 
    display: inline-block; 
    margin-top: 15px; 
    transition: 0.3s;
}

.read-more:hover {
    letter-spacing: 1px;
}

/* --- Side Query Button --- */
.side-query-btn {
    position: fixed; 
    right: 0; 
    bottom: 80px; 
    background: var(--green); 
    color: white;
    padding: 14px 22px; 
    border-radius: 30px 0 0 30px; 
    cursor: pointer; 
    z-index: 2100;
    font-weight: 700; 
    box-shadow: -4px 8px 20px rgba(0,0,0,0.25); 
    transition: var(--transition);
    display: flex; 
    align-items: center; 
    gap: 10px;
    font-family: 'Outfit', sans-serif;
}

.side-query-btn:hover {
    padding-right: 35px;
}

/* --- Modal Popup Styling --- */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 3000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.85); 
    backdrop-filter: blur(5px);
}

.modal-content { 
    background: white; 
    margin: 25vh auto; 
    padding: 40px; 
    border-radius: 25px; 
    width: 90%; 
    max-width: 420px; 
    text-align: center; 
    position: relative; 
    animation: modalSlide 0.4s ease-out;
}

@keyframes modalSlide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal { 
    position: absolute; 
    right: 20px; 
    top: 15px; 
    font-size: 28px; 
    cursor: pointer; 
    color: #999; 
}

.btn-popup { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    padding: 16px; 
    margin-top: 20px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 700; 
    color: white; 
    transition: 0.3s;
}

.btn-popup.wa { background: var(--green); }
.btn-popup.call { background: var(--dark); }

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; color: white; font-size: 28px; cursor: pointer; }
    
    .nav-menu { 
        position: absolute; 
        top: 80px; 
        left: -100%; 
        width: 100%; 
        background: var(--dark); 
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
        padding: 40px 20px; 
        border-top: 1px solid #333; 
        height: 100vh;
    }
    
    .nav-menu.active { left: 0; }
    
    .nav-menu ul { 
        flex-direction: column; 
        text-align: center; 
        gap: 35px;
    }

    .nav-menu a {
        font-size: 20px;
    }

    .desktop-only { display: none; }
    
    .hero { height: 75vh; }
    
    .service-grid { grid-template-columns: 1fr; }
    
    /* Mobile Sticky Bar */
    .mobile-sticky-action { 
        position: fixed; 
        bottom: 0; 
        width: 100%; 
        display: flex; 
        z-index: 2500; 
        box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    }
    
    .wa-float, .call-float { 
        flex: 1; 
        text-align: center; 
        padding: 18px; 
        color: white; 
        text-decoration: none; 
        font-weight: 700; 
        font-family: 'Outfit', sans-serif;
    }
    
    .wa-float { background: var(--green); }
    .call-float { background: var(--gold); color: black; }
}