/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003D7A;
    --secondary-color: #004A8F;
    --orange: #FF8C00;
    --orange-light: #FFA500;
    --orange-lighter: #FFB520;
    --yellow: #FFD700;
    --green: #2D8B3E;
    --green-light: #4CAF50;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --black: #000000;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.hidden {
    display: none !important;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    padding: 0.5rem 0;
}

.logo img {
    height: 224px;
    width: auto;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04));
    transition: all 0.3s ease;
}

.logo:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
    margin-right: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--orange), var(--orange-light), var(--yellow));
    border-radius: 9999px;
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    color: var(--primary-color);
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--orange);
    background-color: rgba(255, 140, 0, 0.05);
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    animation: fadeIn 0.3s ease;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--orange);
    background: linear-gradient(to right, rgba(255, 140, 0, 0.05), rgba(255, 215, 0, 0.05));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.header .btn {
    padding: 0.45rem 1.1rem;
    font-size: 0.75rem;
}

.btn-gradient {
    background: linear-gradient(to right, var(--orange), var(--orange-light), var(--orange-lighter));
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-gradient:hover {
    box-shadow: 0 20px 25px -5px rgba(255, 140, 0, 0.5);
    transform: scale(1.05);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-green {
    background: linear-gradient(to right, #7FB069, #91C483);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-green:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.btn-glass:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-orange:hover {
    background-color: var(--orange-light);
    transform: scale(1.05);
}

.btn-white {
    background-color: var(--white);
    color: var(--orange);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: var(--gray-100);
    color: var(--orange-light);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    overflow: hidden;
    min-height: 20vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-container {
    position: relative;
    z-index: 10;
    padding: 3rem 1.5rem;
    margin-left: 0;
    /* Align to left side */
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 4rem 1.5rem;
        padding-left: 3.5rem;
    }
}

.hero-content {
    max-width: 52rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeIn 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, var(--yellow), var(--orange-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1.75;
    animation: fadeIn 0.8s ease 0.2s backwards;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: fadeIn 0.8s ease 0.3s backwards;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Sections */
.section {
    padding: 3rem 0;
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--gray-50);
}

.bg-light-gray {
    background-color: #f9fafb;
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.bg-primary .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.bg-primary .section-subtitle {
    color: var(--gray-300);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Text Utilities */
.text-large {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-10 {
    margin-bottom: 1.5rem;
}

.mb-16 {
    margin-bottom: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

/* Links */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: var(--orange-light);
}

.link-arrow svg {
    transition: transform 0.3s ease;
}

.link-arrow:hover svg {
    transform: translateX(0.25rem);
}

/* Images */
.rounded-image {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.relative {
    position: relative;
}

.stat-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: linear-gradient(to bottom right, var(--orange), var(--orange-light));
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -6px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 1.75rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 140, 0, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.75rem);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--orange), var(--orange-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: var(--white);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
}

.service-card:hover .service-title {
    color: var(--orange);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.75;
    position: relative;
    z-index: 10;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--gray-50);
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: var(--gray-100);
}

.check-icon {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item span {
    color: var(--gray-700);
    font-size: 1.125rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(to bottom right, var(--orange), var(--orange-light));
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: var(--white);
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 300;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .stat-value {
        font-size: 3rem;
    }
}

.stat-text {
    color: var(--gray-300);
    font-size: 1.125rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, var(--primary-color), #002A5C, #001F45);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.footer .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 5rem;
    width: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(to bottom right, var(--orange), var(--yellow));
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(255, 140, 0, 0.5);
}

/* Form Styles (Shared) */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--orange);
}

.error-border {
    border-color: #ef4444 !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Modal / Popup Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--white);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 1rem;
    position: relative;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gray-100);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-600);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content {
    padding: 2.5rem;
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
}

.success-container {
    background-color: var(--green);
    color: var(--white);
    padding: 3rem;
    border-radius: 0.5rem;
    text-align: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
}

.phone-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--yellow), var(--orange-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--orange), var(--yellow));
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    width: 0.5rem;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--gray-300);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(to bottom right, var(--orange), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.footer-contact li:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    color: var(--white);
}

.footer-contact a {
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

@media (min-width: 1024px) {
    .footer-info {
        text-align: center;
    }
}

.footer-legal {
    display: flex;
    gap: 2rem;
    margin: 0.5rem 0;
}

.footer-legal a {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--yellow);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(to bottom right, #25D366, #1EBE57);
    color: var(--white);
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-button:hover {
    box-shadow: 0 25px 50px -12px rgba(37, 211, 102, 0.5);
    transform: scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

.whatsapp-button:hover .whatsapp-tooltip,
.btn-floating-book:hover .book-tooltip {
    opacity: 1;
}

.book-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 1rem;
    background: linear-gradient(to right, var(--orange), var(--orange-light));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

/* Floating Book Now Button */
.btn-floating-book {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 15px 35px -5px rgba(255, 140, 0, 0.4);
    animation: bounce 2s infinite;
    /* Popup/Bounce like WhatsApp */
    transition: all 0.3s ease;
    padding: 0;
    /* Remove default button padding */
}

.btn-floating-book:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 20px 40px -5px rgba(255, 140, 0, 0.6);
}

@media (max-width: 767px) {
    .btn-floating-book {
        bottom: 6.5rem;
        right: 1.5rem;
        width: 3.5rem;
        height: 3.5rem;
        padding: 0;
    }

    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.5rem;
        height: 3.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-badge {
        position: static;
        margin-top: 1rem;
    }
}