/* ===================================
   VrindaGo Website CSS
   Mobile-First Responsive Design
=================================== */

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

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: #2c2c2c;
}

h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e55a2b;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.25rem;
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 60px 0;
}

/* Color Variables */
:root {
    --primary-color: #1B4F8C;          /* Deep Blue */
    --primary-dark: #164080;
    --primary-light: #4A73A8;
    --accent-color: #F4B942;           /* Golden Yellow */
    --accent-dark: #E6A632;
    --accent-light: #F7C96B;
    --secondary-color: #f0f0f0;
    --text-dark: #2c2c2c;
    --text-medium: #555;
    --text-light: #777;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* ===================================
   HEADER & NAVIGATION
=================================== */
.header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo:hover {
    color: var(--primary-dark);
}

/* Mobile Menu Button */
.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: space-around;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow);
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 0.75rem 20px;
    color: var(--text-dark);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.05);
}

/* ===================================
   BUTTONS
=================================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
    background-color: #ccc;
    color: #666;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   HERO SECTION
=================================== */
.hero {
    background: linear-gradient(135deg, rgba(27, 79, 140, 0.05) 0%, rgba(27, 79, 140, 0.1) 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ===================================
   SECTION STYLES
=================================== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(27, 79, 140, 0.05) 0%, rgba(27, 79, 140, 0.1) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Coming Soon Badge */
.coming-soon {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: normal;
}

.coming-soon-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 10px;
}

/* ===================================
   FEATURE GRIDS
=================================== */
.features-grid,
.about-grid,
.values-grid,
.vm-grid,
.contact-grid,
.packages-grid,
.quick-links-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card,
.about-card,
.value-card,
.vm-card,
.contact-card,
.package-card,
.quick-link-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover,
.about-card:hover,
.value-card:hover,
.vm-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon,
.vm-icon,
.value-icon,
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3,
.about-card h3,
.value-card h3,
.vm-card h3,
.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p,
.about-card p,
.value-card p,
.vm-card p,
.contact-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===================================
   SECTION CONTENT LAYOUTS
=================================== */
.section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr;
}

.content-text {
    text-align: left;
}

.content-image {
    text-align: center;
}

.image-placeholder {
    background: var(--secondary-color);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    color: var(--text-light);
    font-weight: 500;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Focus Points */
.focus-points {
    margin-top: 2rem;
}

.focus-point {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.focus-point:last-child {
    border-bottom: none;
}

.focus-point h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* ===================================
   ROOM CARDS
=================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.room-image {
    position: relative;
    height: 200px;
}

.room-image .image-placeholder {
    height: 100%;
    margin: 0;
    border: none;
    border-radius: 0;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.room-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.room-details {
    padding: 1.5rem;
}

.room-title {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.room-location {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.room-description {
    color: var(--text-medium);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity {
    background: rgba(27, 79, 140, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   FORMS
=================================== */
.form-container,
.contact-form-container,
.interest-content {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

/* Host Interest Section */
.host-interest-section {
    background: linear-gradient(135deg, rgba(27, 79, 140, 0.02) 0%, rgba(27, 79, 140, 0.05) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-medium);
}

.contact-form,
.interest-form,
.traveler-form,
.host-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

/* ===================================
   SPECIAL SECTIONS
=================================== */

/* App Notice */
.app-notice {
    background: linear-gradient(135deg, rgba(27, 79, 140, 0.05) 0%, rgba(27, 79, 140, 0.1) 100%);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: column;
    text-align: center;
}

.notice-icon {
    font-size: 3rem;
}

.notice-text h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.notice-text p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
    background: rgba(27, 79, 140, 0.05);
    padding: 3rem 0;
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Guide Features */
.guides-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.guide-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.guide-feature .feature-icon {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.guide-feature h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.guide-feature p {
    margin-bottom: 0;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Package Cards */
.package-card {
    text-align: left;
}

.package-duration {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.package-highlights {
    list-style: none;
    margin: 1rem 0;
}

.package-highlights li {
    padding: 0.25rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.package-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* FAQ Items */
.faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Quick Links */
.quick-link-card {
    text-align: left;
}

.quick-link-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quick-link-card ul {
    list-style: none;
    margin: 0;
}

.quick-link-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-link-card li:last-child {
    border-bottom: none;
}

.quick-link-card a {
    color: var(--text-medium);
    transition: var(--transition);
}

.quick-link-card a:hover {
    color: var(--primary-color);
}

/* Emergency Contact */
.emergency-contact {
    background: rgba(27, 79, 140, 0.05);
    text-align: center;
}

.emergency-content {
    max-width: 600px;
    margin: 0 auto;
}

.emergency-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===================================
   CTA SECTION
=================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-section .btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* ===================================
   FOOTER
=================================== */
.footer {
    background: var(--text-dark);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.875rem;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
=================================== */
@media (min-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 2.75rem;
    }
    
    /* Navigation */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 2rem;
    }
    
    .nav-link {
        padding: 0.5rem 0;
        background: none;
        border-bottom: 2px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: none;
        border-bottom-color: var(--primary-color);
    }
    
    /* Grids */
    .features-grid,
    .about-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guides-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Section Content */
    .section-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-content.reverse {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    /* App Notice */
    .notice-content {
        flex-direction: row;
        text-align: left;
    }
    
    .notice-content .btn {
        flex-shrink: 0;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
=================================== */
@media (min-width: 1024px) {
    /* Typography */
    h1 { font-size: 3rem; }
    
    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 3rem;
    }
    
    /* Grids */
    .features-grid,
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guides-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Large Screen Layout */
    .container {
        padding: 0 40px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    /* Room Cards - Better spacing on large screens */
    .room-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===================================
   UTILITY CLASSES
=================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===================================
   WHATSAPP FLOATING BUTTON
=================================== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 998;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #20BA5A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 16px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===================================
   ACCESSIBILITY
=================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .room-card,
    .about-card,
    .value-card,
    .vm-card,
    .contact-card,
    .package-card,
    .quick-link-card,
    .faq-item,
    .guide-feature {
        border: 2px solid var(--text-dark);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .nav,
    .btn,
    .cta-section {
        display: none;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .section {
        padding: 20px 0;
    }
}