/* Modern Design System & Variables */
/* Modern Design System & Variables - Light Theme */
:root {
    --primary-hue: 215;
    --primary-color: #132A4B;
    /* Dark Blue */
    --secondary-color: #AE8C4A;
    /* Gold */
    --accent-color: #AE8C4A;
    /* Gold */

    --bg-dark: #f8f9fa;
    /* Light background */
    --bg-card: rgba(255, 255, 255, 0.7);
    /* More opaque for light mode */
    --bg-glass: rgba(255, 255, 255, 0.6);

    --text-main: #1a1a1a;
    /* Dark text */
    --text-muted: #555555;
    /* Medium dark text */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Softer shadows */
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 5px 20px rgba(var(--primary-hue), 80%, 60%, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    /* Ensure high contrast */
    background: #4a4eff;
    background: linear-gradient(135deg, #4a4eff, #b34eff);
}

/* Specific override for Book Now button to ensure color application */
#bookNowBtn {
    background: #4a4eff !important;
    background: linear-gradient(135deg, #4a4eff, #b34eff) !important;
    color: white !important;
    border: none !important;
    box-shadow: var(--shadow-glow) !important;
}

#bookNowBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(120, 80, 255, 0.5) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(120, 80, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(var(--primary-hue), 80%, 60%, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    /* More transparent */
    backdrop-filter: blur(10px);
    /* Reduced blur */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0px 0;
    transition: var(--transition);
    background: white;
    /* Solid background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    /* Slightly more opaque */
    backdrop-filter: blur(10px);
    padding: 5px 0;
    /* Reduced padding */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo img {
    height: 50px !important;
    /* Smaller logo on scroll */
    transition: height 0.3s ease;
}

.logo img {
    transition: height 0.3s ease;
    /* Smooth transition */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    /* Ensure vertical stacking */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    margin-top: 0;
    /* Remove offset */
    padding-top: 80px;
    /* Account for fixed header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #1a1a1a;
    /* Fallback color */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=2021&q=80');
    background-size: cover;
    background-position: center;
}

.hero-bg::after {
    display: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.sphere-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    /* Ensure title is white */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    /* Stronger shadow for readability */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    /* Changed to white for visibility on image */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin-bottom: 50px;
    font-weight: 500;
}

/* Booking Widget */
.booking-widget {
    max-width: 800px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    background: #ffffff !important;
    /* Solid white background */
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border: none;
    /* Slight padding for inner content */
}

/* Trip.com Widget Container Fix */
.booking-widget-container {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    z-index: 10;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    /* Add background to ensure visibility */
    padding: 10px;
    border-radius: 12px;
    max-width: 920px;
    /* Slightly larger than iframe */
}

.booking-widget-container iframe {
    background: white;
    /* Ensure iframe has background */
}

.tab-buttons {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    /* Darker semi-transparent for contrast */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    /* White text for visibility on transparent bg */
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.tab-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: none;
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.booking-form {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: none;
}

.form-group input {
    width: 100%;
    background: #f1f3f5;
    border: 1px solid transparent;
    padding: 14px 15px;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(var(--primary-hue), 80%, 60%, 0.15);
}

.btn-search {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    height: 46px;
    /* Match input height */
}

.btn-search:hover {
    filter: brightness(1.1);
}

/* Sections Common */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-hue), 80%, 60%, 0.3);
}

.card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.card-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-muted);
}

.card-location {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-amenities {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.card-amenities span {
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.05);
    /* Darker subtle background for light mode */
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-muted);
}

/* Features Styling */
.section-dark {
    background: #f0f2f5;
    /* Light grey alternative */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: var(--font-body);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out forwards;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--text-main);
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.mobile-input-group {
    display: flex;
    align-items: stretch;
}

.modal textarea {
    width: 100%;
    padding: 14px 15px;
    background: #f1f3f5;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.modal textarea:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-hue), 80%, 60%, 0.1);
}

.mobile-input-group select {
    padding: 14px 10px;
    background: #f1f3f5;
    border: 1px solid transparent;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border-right: 1px solid #ddd;
    outline: none;
    font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1.2rem;
    /* Slightly larger for flags */
    color: var(--text-main);
    cursor: pointer;
}

.error-msg {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input {
    border-color: #dc3545;
}

.form-group.error .error-msg {
    display: block;
}

/* Footer & Responsive */
.footer {
    background: #1a1a1a;
    /* Keep footer dark for contrast */
    color: white;
    padding: 80px 0 30px;
    border-top: none;
}

.footer .footer-brand p,
.footer .footer-col a,
.footer .footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}

.footer .logo {
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-top: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations & Keyframes */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .booking-widget-container iframe {
        height: 300px;
        /* Adjust for mobile if needed */
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo {
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .booking-form {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    .btn-search {
        width: 100%;
        margin-top: 10px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out forwards;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--text-main);
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.mobile-input-group {
    display: flex;
    align-items: stretch;
}

.mobile-input-group select {
    padding: 14px 10px;
    background: #f1f3f5;
    border: 1px solid transparent;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border-right: 1px solid #ddd;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
}

.error-msg {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input {
    border-color: #dc3545;
}

.form-group.error .error-msg {
    display: block;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo {
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .booking-form {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    .btn-search {
        width: 100%;
        margin-top: 10px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Floating Call Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 12px 24px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(19, 42, 75, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float-pulse 2s infinite ease-in-out;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(19, 42, 75, 0.6);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: wiggle 2s infinite ease-in-out;
}

.cta-text {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

@keyframes float-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(19, 42, 75, 0.7);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(19, 42, 75, 0);
        transform: translateY(-3px);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(19, 42, 75, 0);
        transform: translateY(0);
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }

    .cta-text {
        font-size: 0.9rem;
    }
}