/* ============================================
   COLOR CONFIGURATION SECTION
   ============================================ */

:root {
    /* Primary Brand Colors */
    --primary-color: #002e53;
    --secondary-color: #c6e0e4;
    
    /* Header & Footer Colors */
    --header-bg-color: #c6e0e4;
    --header-text-color: #002e53;
    --footer-bg-color: #002e53;
    --footer-text-color: #ffffff;
    
    /* Background Colors */
    --body-bg-color: #ffffff;
    --light-color: #e8f4f5;
    --dark-color: #002e53;
    
    /* Text Colors */
    --text-color: #333333;
    --heading-color: #002e53;
    
    /* Utility Colors */
    --border-color: #c6e0e4;
    --success-color: #10b981;
    --white-color: #ffffff;
    
    /* Shadows */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ============================================
   RESET AND BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--body-bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: var(--header-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    color: var(--header-text-color);
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--header-text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--header-text-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--header-text-color);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--header-text-color);
    cursor: pointer;
}
.logo-image-wrapper {margin-bottom:35px;}
.logo-image-wrapper img {margin:0 auto;width:100%;max-width:150px;}

/* ============================================
   HERO BANNER SECTION
   ============================================ */

.hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.nashikpropertydeals.com/image/dream-property-in-nashik.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
    overflow: hidden;padding:40px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 46, 83, 0.85) 0%, rgba(0, 26, 51, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.3s both;
}

.btn-cta {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    display: inline-block;
}

.btn-primary:hover {
    background: #001a33;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 46, 83, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 46, 83, 0.3);
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    background: rgba(0, 46, 83, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.about-features i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================
   PROPERTY CATEGORIES SECTION
   ============================================ */

.categories-section {
    background: var(--body-bg-color);
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-block {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.category-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-block:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-content {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.category-title {
    font-size: 24px;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
}

.category-content .btn-secondary {
    width: auto;
    min-width: 150px;
    text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--light-color);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-info-item h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-info-item p {
    color: var(--text-color);
    font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--footer-text-color);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--footer-text-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: var(--transition);
    color: var(--footer-text-color);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
   /* padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);*/
    opacity: 0.9;
    color: var(--footer-text-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white-color);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .header-phone {
        display: none;
    }

    .hero-banner {
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
}
