/* ==========================================================================
   STAR BIKE RENTAL JAIPUR - GLOBAL STYLESHEET
   Theme: Royal Rajasthani Pink, Sand Gold, and Slate Dark/Light Contrasts
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,500&display=swap');

/* --- Design Tokens / CSS Variables --- */
:root {
    --primary-pink: #D91C5C;        /* Royal Jaipur Terracotta Pink */
    --primary-pink-light: #E25E83;  /* Hover / Accent Pink */
    --secondary-gold: #D4AF37;      /* Royal Jaipur Gold */
    --secondary-gold-light: #F4D068;/* Soft accent gold */
    --bg-dark: #121413;             /* Premium Dark Slate */
    --bg-card-dark: #1E2220;        /* Card Background in Dark Mode */
    --bg-light: #FFF8F9;            /* Rose-tinted Off-White */
    --bg-card-light: #FFFFFF;       /* Card Background in Light Mode */
    --text-dark: #1A1C1A;           /* Primary Text for Light Backgrounds */
    --text-light: #F5F5F5;          /* Primary Text for Dark Backgrounds */
    --text-muted: #6B7280;          /* Secondary Muted Text */
    --border-color: rgba(217, 28, 92, 0.15); /* Pink tinted border */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(217, 28, 92, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --max-width: 1200px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.font-heritage {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-pink);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: #4A4A4A;
    margin-bottom: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* --- Common Layout & Containers --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--text-light);
}

.section-dark p {
    color: #CDCDCD;
}

/* --- Headers & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 249, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(217, 28, 92, 0.1);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: #FFF8F9;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-pink);
    animation: rotateLogo 8s linear infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary-pink);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-pink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-light));
    color: #FFF !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(217, 28, 92, 0.3);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 28, 92, 0.4);
}

/* Mobile Menu Toggle */
.menu-btn {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    z-index: 1001;
}

/* --- Hero Banner Section --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(18, 20, 19, 0.75), rgba(18, 20, 19, 0.8)), url('assets/images/hero_jaipur.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    color: var(--text-light);
}

.hero-content {
    max-width: 750px;
    z-index: 2;
}

.hero-tagline-bold {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-tagline-bold span {
    color: var(--secondary-gold);
    display: block;
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: #E2E8F0;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Hero Forms & Call to Action */
.booking-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) 150px;
    gap: 1.25rem;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0, 0, 0, 0.4);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(217, 28, 92, 0.3);
}

.form-group select option {
    background-color: var(--bg-dark);
    color: #FFF;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-light));
    color: #FFF;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(217, 28, 92, 0.4);
    transition: var(--transition-smooth);
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 28, 92, 0.6);
    background: linear-gradient(135deg, var(--primary-pink-light), var(--primary-pink));
}

.btn-secondary {
    background: transparent;
    color: #FFF;
    border: 2px solid var(--secondary-gold);
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--secondary-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Fleet Section & Cards --- */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.fleet-card {
    background: var(--bg-card-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.fleet-img-container {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.fleet-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-img-container img {
    transform: scale(1.08);
}

.fleet-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-pink);
    color: #FFF;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.fleet-price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(18, 20, 19, 0.85);
    color: var(--secondary-gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.fleet-info {
    padding: 2rem;
}

.fleet-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.fleet-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 1rem;
}

.fleet-meta span {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.fleet-features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.fleet-features-list li {
    font-size: 0.95rem;
    color: #4A4A4A;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-features-list li::before {
    content: '✓';
    color: var(--primary-pink);
    font-weight: bold;
}

.btn-book-now {
    width: 100%;
    text-align: center;
}

/* --- About & History Section --- */
.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-img-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 480px;
}

.about-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-pink);
    color: #FFF;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(217, 28, 92, 0.4);
    text-align: center;
}

.about-experience-badge h4 {
    font-size: 2.5rem;
    color: #FFF;
    line-height: 1;
}

.about-experience-badge p {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    color: #FFF;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(217, 28, 92, 0.08);
    line-height: 1;
}

.testimonial-rating {
    color: var(--secondary-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-pink);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(217,28,92,0.2);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Contact & Location Block --- */
.contact-container-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(217, 28, 92, 0.1);
    color: var(--primary-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(217,28,92,0.2);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    color: #4A4A4A;
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary-pink);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--primary-pink-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFF;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-pink);
    color: #FFF;
    border-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 28, 92, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: #FFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-premium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.input-group input,
.input-group textarea {
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-pink);
    background-color: #FFF;
    box-shadow: 0 0 10px rgba(217,28,92,0.15);
}

.btn-form {
    width: 100%;
}

.map-container {
    margin-top: 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(217, 28, 92, 0.1);
    box-shadow: var(--shadow-premium);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Interactive Booking Calculator (on services/fleet page) --- */
.calculator-box {
    background: var(--bg-card-dark);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 3rem auto 0;
}

.calculator-title {
    text-align: center;
    color: var(--secondary-gold) !important;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calc-result {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.calc-price {
    font-size: 3rem;
    color: var(--secondary-gold);
    font-weight: 800;
    margin: 1rem 0;
}

/* --- FAQ Section & Accordions --- */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-card-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.faq-header {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    background: #FFF;
    transition: var(--transition-smooth);
}

.faq-header:hover {
    background: rgba(217, 28, 92, 0.03);
    color: var(--primary-pink);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-pink);
    transition: var(--transition-smooth);
}

.faq-body {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-body-content {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    background-color: #FAFAFA;
}

.faq-item.active .faq-header {
    color: var(--primary-pink);
    background: rgba(217, 28, 92, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-body {
    max-height: 300px; /* arbitrary height to slide down */
}

/* --- Footer --- */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    border-top: 3px solid var(--primary-pink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    color: var(--secondary-gold);
    margin-bottom: 1.75rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-pink);
    margin-top: 0.5rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul a {
    color: #CDCDCD;
    font-size: 0.95rem;
}

.footer-column ul a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-column p {
    color: #CDCDCD;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-about-text {
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #CDCDCD;
    font-size: 0.95rem;
}

.footer-contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-info a {
    color: #FFF;
}

.footer-contact-info a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary-pink);
}

/* --- Floating WhatsApp Button & Pulse --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    background: #25D366;
    color: #FFF;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: floatAnim 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Red Dot notification on WA button to prompt click */
.whatsapp-badge {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    background-color: #EF4444;
    border: 2px solid #FFF;
    border-radius: 50%;
    animation: redPulse 2s infinite;
}

/* --- Keyframes & Animations --- */
@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes redPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes rotateLogo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline-bold {
        font-size: 3.2rem;
    }
    
    .hero-tagline-bold span {
        font-size: 1.8rem;
    }

    .about-section-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .navbar {
        height: 70px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #FFF8F9;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(217, 28, 92, 0.1);
        z-index: 998;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .booking-form .btn-primary {
        grid-column: span 2;
        width: 100%;
    }

    .about-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-frame img {
        height: 380px;
    }

    .contact-container-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 6rem;
    }

    .hero-tagline-bold {
        font-size: 2.5rem;
    }

    .hero-tagline-bold span {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }

    .booking-widget {
        padding: 1.5rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form .btn-primary {
        grid-column: span 1;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.5rem 1rem;
    }

    .whatsapp-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-tagline-bold {
        font-size: 2rem;
    }

    .hero-tagline-bold span {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }
}
