/* Variables & Reset */
:root {
    --primary: #007aff;
    --secondary: #0056b3;
    --dark: #1d1d1f;
    --light: #f5f5f7;
    --white: #ffffff;
    --gray: #86868b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 { font-size: 3rem; line-height: 1.2; font-weight: 700; }
h2 { font-size: 2.5rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.full-width { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 30px; }
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero {
    height: 100vh;
    background: url(whirlpool.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
}


.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content { position: relative; z-index: 1; }
.hero p { font-size: 1.2rem; margin: 20px 0 40px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; }

img {
    width: 100%;
    padding: 6%
}


/* Sections Common */
.section-padding { padding: 100px 0; }
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}
.section-title.left { text-align: left; }

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover { transform: translateY(-10px); }

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content { padding: 25px; }

/* Why Us */
.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    background: var(--light);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Booking Form */
.booking-container {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
}

.form-group { margin-bottom: 20px; }
input, select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    outline: none;
}
input:focus { border-color: var(--primary); }

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary);
}

.stars { color: #f1c40f; margin-bottom: 15px; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
}
.call-btn {
 position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1d1d1f;
  color: white;
  text-align: center;
  padding: 10px;
}

.call-btn:hover {
  background: #218838;
}

p {
    text-align: center;
}
h2 {
    font-size: 2.5rem;
    text-align: center;
}

/* Footer */
footer {
    background: #000;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about h3 span { color: var(--primary); }
.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons i { font-size: 1.5rem; }
.footer-bottom { text-align: center; border-top: 1px solid #333; padding-top: 20px; font-size: 0.9rem; color: var(--gray); }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Hamburger menu ko initially hide rakhein (sirf desktop ke liye) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 5px;
}

@media (max-width: 991px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .why-us-wrapper, .booking-container, .footer-grid {
        grid-template-columns: 1fr; /* Column layout for mobile */
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Navbar fix */
    .nav-links {
        display: none; /* Mobile menu hidden initially */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex; /* Click hone par dikhega */
    }

    .nav-btn { display: none; } /* Mobile par call button navbar se hata kar floating use karein */
    
    .hamburger { display: flex; } /* Show hamburger icon */

    /* Hero fix */
    .hero { height: 80vh; }
    .hero-btns { flex-direction: column; padding: 0 20px; }
    
    /* Grid adjustments */
    .features-grid { grid-template-columns: 1fr; }
    
    .section-padding { padding: 60px 0; }
    
    .booking-container { padding: 20px; }
}

/* Image box fix */
.image-box img {
    width: 100%;
    padding: 2%; /* Desktop par 6% zyada tha mobile ke liye */
    height: auto;
}
@media (max-width: 768px) {
    .cta-btns {
        display: flex;
        flex-direction: column; /* Buttons ko ek ke niche ek lane ke liye */
        align-items: center;
        gap: 15px; /* Buttons ke beech ka gap */
        padding: 0 20px;
    }

    .cta-btns .btn {
        width: 100%; /* Mobile par full width buttons acche lagte hain */
        max-width: 300px; /* Zyada bade na ho jayein isliye limit */
        margin: 0; /* Purana margin hata do */
    }
    
    /* Icons aur text ke beech thoda space */
    .btn i {
        margin-right: 8px;
    }
}
