/* 
   Standed Stay
   Theme Colors:
   Primary: Deep Blue (Trust/Professional) - #0E2954
   Secondary: Gold (Comfort/Premium) - #D4AF37
   Accent: Light Blue - #1F6E8C
   Background: Pure White & Off-White
*/

:root {
    --primary-blue: #0E2954;
    --light-blue: #1F6E8C;
    --gold: #C5A059;
    /* More elegant, muted gold */
    --light-gold: #D4AF37;
    --champagne: #F4EBD0;
    --white: #FFFFFF;
    --off-white: #FCF9F2;
    /* Creamier background */
    --text-dark: #2C3333;
    --text-light: #526D82;
    --transition-speed: 0.3s;

    /* Variable colors */
    --bg-main: var(--off-white);
    --bg-card: var(--white);
    --text-main: var(--text-dark);
    --border-color: rgba(14, 41, 84, 0.08);
}

[data-theme="dark"] {
    --bg-main: #05142b;
    --bg-card: #0E2954;
    --text-dark: #ffffff;
    --text-main: #ffffff;
    --text-light: #ccd6f6;
    --nav-bg: #05142b;
    --off-white: #0a1b32;
    --white: #0E2954;
    --border-color: rgba(255, 255, 255, 0.15);
}

/* Theme Toggle Button Style */
.theme-toggle {
    background: var(--bg-main);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

[data-theme="dark"] .icon-sun {
    display: block;
}

[data-theme="dark"] .icon-moon {
    display: none;
}

.icon-sun {
    display: none;
}

.icon-moon {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background-color: #030d1d;
    color: var(--white);
    padding: 8px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar a {
    color: var(--gold);
}

/* Features Bar */
.features-bar {
    display: flex;
    justify-content: center;
    background: var(--bg-card);
    padding: 2.5rem 5%;
    border-bottom: 2px solid var(--border-color);
}

.feature-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-right: 1px solid var(--border-color);
}

.feature-box:last-child {
    border-right: none;
}

.feat-icon {
    font-size: 1.8rem;
}

.feature-box p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Typography & General */
h1,
h2,
h3 {
    color: var(--text-dark);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 {
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: #FCF9F2 !important;
    /* Creamy light to match logo bg */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(14, 41, 84, 0.05);
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar {
    background: #0E2954 !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    /* Slightly smaller to fit with img */
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo img {
    height: 45px;
    /* Adjust based on your logo shape */
    width: auto;
    object-fit: contain;
}

.logo span span {
    color: var(--gold);
}

/* Footer Logo Adjustments */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span span {
    color: var(--gold);
}

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

.nav-links li a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    position: relative;
    transition: color 0.4s ease-in-out;
}

/* Scroll කරද්දී menu අකුරු වල පාට කළු කරන්න */
.navbar.scrolled .nav-links li a {
    color: #333 !important;
}

[data-theme="dark"] .navbar.scrolled .nav-links li a {
    color: #ffffff !important;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: -5px;
    left: 0;
    transition: width var(--transition-speed);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    /* Full screen height */
    /* Using 4.png as requested by the user */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('photo/4.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 5%;
}

[data-theme="dark"] .hero {
    /* Use the same 4.png in dark mode with a deeper overlay */
    background: linear-gradient(rgba(14, 41, 84, 0.7), rgba(5, 20, 43, 0.8)), url('photo/4.png') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    animation: fadeInDown 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out forwards;
}

.highlight-icon {
    font-size: 1.4rem;
}

.hero-address {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: #ffffff;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: #0E2954;
    /* Dark text on gold button for clarity */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background-color: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: #0E2954;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    margin-bottom: 1.5rem;
}

.btn-outline:hover {
    background: var(--gold);
    color: #0E2954;
}

/* General Sections */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-heading h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--gold);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-heading p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Location & Info Section */
.location-section {
    padding: 6rem 5%;
    background-color: var(--bg-main);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.attractions-table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.attractions-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.attractions-table th {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.attractions-table th:first-child {
    border-top-left-radius: 20px;
}

.attractions-table th:last-child {
    border-top-right-radius: 20px;
}

.attractions-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    vertical-align: middle;
}

.attractions-table tbody tr:last-child td {
    border-bottom: none;
}

.attractions-table tbody tr {
    transition: background-color var(--transition-speed);
}

.attractions-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.time-badge {
    background-color: var(--gold);
    color: #0E2954;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    white-space: nowrap;
}

.why-stay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform var(--transition-speed);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.why-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-main);
    line-height: 1.7;
}

[data-theme="dark"] .why-card h3 {
    color: var(--gold);
}

[data-theme="dark"] .attractions-table th {
    background-color: #05142b;
    border-bottom: 2px solid var(--gold);
    color: #ffffff;
}

[data-theme="dark"] .attractions-table-wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .time-badge {
    color: #0E2954;
    background-color: var(--gold);
}

/* Dining Section */
.dining-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

[data-theme="dark"] .dining-section {
    background-color: #030d1d;
    /* Matches top bar for contrast */
}

.dining-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.dining-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed);
}

.dining-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.dining-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.dining-list {
    list-style: none;
    text-align: left;
}

.dining-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.dining-list li::before {
    content: "•";
    color: var(--gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.dining-list li strong {
    color: var(--text-dark);
}

[data-theme="dark"] .dining-card h3 {
    color: var(--gold);
}

[data-theme="dark"] .dining-list li strong {
    color: #ffffff;
}

.pro-tip-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 5px solid var(--gold);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.pro-tip-box h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-tip-box p {
    font-size: 1.05rem;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 6rem 5%;
    background-color: var(--bg-main);
}

[data-theme="dark"] .services-section {
    background-color: #05142b;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-list li::before {
    content: "•";
    color: var(--gold);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.service-list li strong {
    color: var(--text-dark);
}

[data-theme="dark"] .service-card h3 {
    color: var(--gold);
}

[data-theme="dark"] .service-list li strong {
    color: #ffffff;
}

/* Packages Section */
.packages-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

.packages-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.package-card {
    /* Soft Sand / Cream Theme for Day Package */
    background: linear-gradient(135deg, #F9F5EB 0%, #EAE3D2 100%);
    border-radius: 25px;
    padding: 3.5rem 2rem;
    width: 380px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.1), 0 0 1px rgba(197, 160, 89, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .package-card {
    background: linear-gradient(145deg, #4b3b20 0%, #1a140a 100%);
}

/* Subtle gradient top strip for premium card to make it pop */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #D4AF37, #E5C365);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(14, 41, 84, 0.12);
}

.package-card.premium {
    background: linear-gradient(145deg, var(--primary-blue) 0%, #06162e 100%);
    color: var(--white);
    transform: scale(1.08);
    z-index: 2;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 25px 50px rgba(14, 41, 84, 0.25);
}

/* Remove gradient strip for premium card as it has its own style */
.package-card.premium::before {
    display: none;
}

.package-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card.premium h3 {
    color: var(--gold);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.card-price {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.package-card.premium .card-price {
    color: #ffffff !important;
}

[data-theme="dark"] .package-card.premium h3 {
    color: var(--gold);
}

.card-price .currency {
    font-size: 2rem;
    vertical-align: super;
}

.card-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.card-features li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-main);
    /* Using main text color for visibility */
}

[data-theme="dark"] .card-features li {
    color: #e0e6ed;
    /* Slightly lighter for dark mode */
}

.package-card.premium .card-features li {
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 5%;
    background-color: var(--bg-main);
    text-align: center;
}

.gallery-instructions {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--light-blue) !important;
}

.gallery-controls {
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(14, 41, 84, 0.7));
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.gallery-item:hover::after {
    opacity: 1;
}

.loading-state {
    padding: 2rem;
    color: var(--text-light);
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 3rem 5%;
    text-align: center;
    border-top: 4px solid var(--gold);
}

[data-theme="dark"] footer {
    background-color: #030d1d;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-logo span {
    color: var(--gold);
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background-color: var(--bg-main);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    transition: transform var(--transition-speed);
    border-bottom: 3px solid var(--gold);
    border: 1px solid var(--border-color);
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.info-item p {
    font-weight: 600;
    color: var(--text-dark);
}

[data-theme="dark"] .info-item p {
    color: #ffffff;
}

.info-item a {
    color: var(--light-blue);
    transition: color var(--transition-speed);
}

[data-theme="dark"] .info-item a {
    color: var(--gold);
}

.info-item a:hover {
    color: var(--gold);
}

.info-item small {
    display: block;
    margin-top: 5px;
    font-weight: 400;
    color: var(--text-light);
}

/* Map Section */
.map-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

/* Lightbox Styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Next-level background: Deep blue radial gradient with high-end blur */
    background: radial-gradient(circle at center, rgba(31, 110, 140, 0.4) 0%, rgba(14, 41, 84, 0.98) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border-radius: 20px;
    /* Premium glow and border */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.8) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.lightbox.active {
    display: flex;
}

.lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.close-lightbox,
.prev-lightbox,
.next-lightbox {
    position: absolute;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 2001;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    top: 30px;
    right: 40px;
    font-size: 3.5rem;
}

.prev-lightbox,
.next-lightbox {
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.prev-lightbox {
    left: 30px;
}

.next-lightbox {
    right: 30px;
}

.close-lightbox:hover {
    color: var(--gold);
    transform: scale(1.1) rotate(90deg);
}

.prev-lightbox:hover,
.next-lightbox:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styling (Terms and Conditions) */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 41, 84, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.4s ease;
}

.modal-content {
    background-color: #FCF9F2;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 25px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

[data-theme="dark"] .modal-content {
    background-color: #0E2954;
    color: #ffffff;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--gold);
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 20px;
    padding-right: 15px;
    line-height: 1.8;
}

.modal-body h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

[data-theme="dark"] .modal-body h2 {
    color: var(--gold);
}

.modal-body h3 {
    margin: 1.5rem 0 1rem;
    color: var(--primary-blue);
    font-size: 1.3rem;
}

[data-theme="dark"] .modal-body h3 {
    color: #ffffff;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}

.modal-footer-info {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .modal-footer-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .package-card.premium {
        transform: scale(1);
    }

    .nav-links {
        display: none;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 10% auto;
    }
}