/* =========================================================================
   VARIABLES & GLOBAL STYLES
   ========================================================================= */
:root {
    --maroon: #800000;
    --maroon-dark: #5a0000;
    --golden: #FFD700;
    --golden-hover: #e6c200;
    --saffron: #FF9933;
    --white: #FFFFFF;
    --light-bg: #fdfbf7;
    --text-dark: #333333;
    --text-light: #666666;
    --whatsapp-green: #25D366;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Mukta', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--maroon);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 70px 0;
}

.bg-light { background-color: var(--light-bg); }
.bg-maroon { background-color: var(--maroon); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white) !important; }
.mt-4 { margin-top: 30px; }

/* Utilities */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.title-divider {
    height: 3px;
    width: 60px;
    background-color: var(--golden);
    margin: 0 auto 25px auto;
}
.title-divider.left { margin: 0 0 25px 0; }
.title-divider.white { background-color: var(--white); }

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--saffron);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-primary:hover { background-color: var(--maroon); }

.btn-secondary {
    background-color: var(--maroon);
    color: var(--white);
}
.btn-secondary:hover { background-color: var(--saffron); }

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
.top-bar {
    background-color: var(--maroon);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}
.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar i {
    color: var(--golden);
    margin-right: 5px;
}
.contact-info span { margin-right: 20px; }

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--maroon);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    align-items: center;
}
.nav-menu ul li {
    position: relative;
    margin-left: 25px;
}
.nav-menu ul li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 0;
}
.nav-menu ul li a:hover, 
.nav-menu ul li a.active {
    color: var(--saffron);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 100;
    border-top: 3px solid var(--maroon);
    max-height: 400px;
    overflow-y: auto;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    margin: 0 !important;
    border-bottom: 1px solid #eee;
}
.dropdown-menu li:last-child { border-bottom: none; }
.dropdown-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
    color: var(--text-light) !important;
}
.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--maroon) !important;
    padding-left: 25px !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--maroon);
    cursor: pointer;
}

/* =========================================================================
   HERO SLIDER
   ========================================================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: var(--maroon-dark);
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 80%;
}
.slide-content h2 {
    color: var(--golden);
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
/* Slider Controls */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: var(--golden);
    font-weight: bold;
    font-size: 24px;
    transition: 0.4s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 2;
}
.next { right: 0; border-radius: 3px 0 0 3px; }
.prev:hover, .next:hover { background-color: rgba(128,0,0,0.8); }

.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.dot.active, .dot:hover { background-color: var(--golden); }

/* =========================================================================
   SECTIONS & GRIDS
   ========================================================================= */
/* Welcome Section */
.welcome-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
}

/* About Short */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 5px solid var(--golden);
}
.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--saffron);
    box-shadow: 0 10px 25px rgba(128,0,0,0.1);
}
.service-icon {
    font-size: 3rem;
    color: var(--saffron);
    margin-bottom: 20px;
}
.service-card h3 {

    margin-bottom: 15px;
    font-size: 1.4rem;
}
.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}
.read-more {
    color: var(--maroon);
    font-weight: 600;
    font-family: var(--font-heading);
}
.read-more:hover { color: var(--saffron); }

/* Why Choose Us */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.feature-list li {
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(255,215,0,0.3);
}
.feature-list li i {
    color: var(--golden);
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Gallery Preview */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(128,0,0,0.9), rgba(128,0,0,0.9)), url('../images/image1.jpg') center/cover;
    padding: 80px 0;
    color: var(--white);
}
.cta-section h2 { color: var(--golden); font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { font-size: 1.2rem; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.bg-golden { background-color: var(--golden); }
.bg-golden:hover { background-color: var(--white); }
.text-maroon { color: var(--maroon) !important; }
.bg-green { background-color: var(--whatsapp-green); }
.bg-green:hover { background-color: #128C7E; }

/* Contact Section */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid var(--maroon);
}
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--saffron);
}
.w-100 { width: 100%; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: var(--golden);
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #ccc; }
.footer-col ul li a:hover { color: var(--saffron); padding-left: 5px; }
.contact-list li {
    display: flex;
    margin-bottom: 15px;
}
.contact-list i {
    color: var(--saffron);
    margin-right: 15px;
    margin-top: 5px;
}
.footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .slide-content h2 { font-size: 2.2rem; }
    .slide-content p { font-size: 1.2rem; }
}

@media (max-width: 768px) {
    .top-bar-container { flex-direction: column; text-align: center; gap: 5px; }
    .menu-toggle { display: block; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.active { left: 0; }
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }
    .nav-menu ul li { margin: 0; width: 100%; text-align: center; border-bottom: 1px solid #eee; }
    .nav-menu ul li a { padding: 15px; display: block; }
    
    /* Dropdown reset for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        background: #f9f9f9;
        max-height: 250px;
    }
    .dropdown:hover .dropdown-menu { display: block; }
    
    .hero-slider { height: 60vh; }
    .slide-content { width: 95%; }
    .gallery-grid { grid-template-columns: 1fr; }
}