/* Global Styles with Gwalior Color Inspiration */
:root {
    --primary-red: #d10000; /* Gwalior Fort inspired */
    --secondary-red: #ff3333;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --black: #000000;
    --local-gold: #FFD700; /* Inspired by Gwalior's royal heritage */
    --local-blue: #0066cc; /* MP tourism blue */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', 'Nirmala UI', Arial, sans-serif; /* Mixed fonts for local appeal */
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles with Local Flair */
header {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 250px;
}

.logo h1 {
    color: var(--primary-red);
    font-size: clamp(22px, 4vw, 28px);
    margin-left: 10px;
    font-weight: 700;
}

.logo .tagline {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--local-gold);
    font-style: italic;
    margin-left: 10px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 15px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
}

nav ul li a:hover {
    color: var(--local-gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    font-size: clamp(14px, 2vw, 16px);
    border: 2px solid var(--primary-red);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.local-button {
    background-color: var(--local-blue);
    border-color: var(--local-blue);
}

.local-button:hover {
    color: var(--local-blue);
}

/* Hero Section with Gwalior Background */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581852057101-7681103a90a3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, var(--primary-red), var(--local-blue), var(--local-gold));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h2 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(16px, 3vw, 20px);
    margin: 0 auto 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.local-highlight {
    color: var(--local-gold);
    font-weight: bold;
}

/* Services Section with Localized Content */
.services {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--black);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 32px;
    padding: 25px;
    text-align: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: clamp(18px, 3vw, 22px);
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: clamp(14px, 2vw, 16px);
}

.local-badge {
    background-color: var(--local-blue);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-left: 10px;
}

/* About Section with Local Focus */
.about {
    padding: 60px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text h2 span {
    color: var(--primary-red);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: clamp(14px, 2vw, 16px);
}

.local-features {
    margin: 20px 0;
}

.local-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.local-features i {
    color: var(--primary-red);
    margin-right: 10px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
    outline: 2px solid var(--primary-red);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Localities We Serve Section */
.localities {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.localities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.locality-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-red);
}

.locality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.locality-card i {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 10px;
}

/* Testimonials from Gwalior Clients */
.testimonials {
    padding: 60px 0;
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #eee;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 60px;
    color: rgba(209, 0, 0, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-gray);
    font-size: clamp(14px, 2vw, 16px);
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-red);
}

.client-name {
    font-weight: bold;
    color: var(--black);
    font-size: clamp(14px, 2vw, 16px);
}

.client-location {
    color: var(--local-blue);
    font-size: clamp(12px, 2vw, 14px);
    display: flex;
    align-items: center;
}

.client-location i {
    margin-right: 5px;
    font-size: 12px;
}

/* Contact Section with Gwalior Address */
.contact {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 20px;
    color: var(--black);
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-size: clamp(14px, 2vw, 16px);
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 16px);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-red);
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background-color: var(--secondary-red);
    transform: translateY(-2px);
}

/* Gwalior Map Section */
.map-container {
    height: 400px;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer with Local Information */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-red), var(--local-blue), var(--local-gold));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    font-size: clamp(16px, 3vw, 20px);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--local-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: clamp(13px, 2vw, 15px);
    display: inline-block;
    padding: 2px 0;
}

.footer-col ul li a:hover {
    color: var(--local-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    background-color: var(--dark-gray);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 16px;
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
    color: var(--white);
    font-size: clamp(12px, 2vw, 14px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Language Switch for Local Audience */
.language-switch {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
}

.language-option {
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.language-option.active {
    background-color: var(--primary-red);
    color: white;
}

.language-option:not(.active):hover {
    background-color: #f0f0f0;
}

/* Responsive Styles for Gwalior Audience */
@media (max-width: 992px) {
    .hero {
        background-attachment: scroll;
        min-height: 50vh;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        order: 1;
    }
    
    nav {
        width: 100%;
        order: 3;
        display: none;
        margin-top: 15px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    nav ul li {
        margin: 5px 0;
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .language-switch {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        min-width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .header-container {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}