/* Core Design System for International Tourist Home */
:root {
    --primary-color: #1a2a6c;
    --secondary-color: #b21f1f;
    --accent-color: #fdbb2d;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-dark: #121212;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

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

/* About Section */
.about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text-highlight {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.about-text {
    margin-bottom: 1.5rem;
    color: #666;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Amenities Section */
.amenity-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4rem;
    text-align: center;
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.amenity-item:hover i {
    color: var(--accent-color);
    transform: translateY(-5px);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 42, 108, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.05em;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-cta {
    padding: 0.5rem 1.5rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    background: #128c7e;
}

.floating-whatsapp i {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/herosection.png');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1.2s ease;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

.hero-highlights {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.hero-highlights span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 187, 45, 0.3);
}

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

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.social-btn {
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-grid .cta-group {
    flex-direction: row !important;
    justify-content: flex-start !important;
}

/* Cards & Sections */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

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

.card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Highlight Features */
.highlights {
    background: #f1f4f9;
    padding: 6rem 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Pods Section */
.pods-section {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10rem 0;
}

/* Restaurant Section */
.restaurant-section {
    background: #fff;
    padding: 8rem 0;
}

/* Perfect For Section */
.perfect-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 1px solid #eee;
}

.perfect-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.perfect-item:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

/* Trust Section */
.trust-card {
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.trust-card h4 {
    color: var(--primary-color);
}

/* Location Item */
.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #444;
}

/* Pods List Update */
.pods-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pods-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pods-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pods-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pods-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

/* Footer & Contact */
footer {
    background: #0a1128;
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding-top: 4rem;
        transition: 0.5s;
        z-index: 999;
    }

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

    .menu-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .about-grid,
    .pods-grid,
    .restaurant-section .grid,
    #location .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

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

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-highlights span {
        justify-content: center;
    }

    .floating-whatsapp {
        padding: 0;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .about-grid {
        gap: 2rem;
    }

    .highlight-grid,
    .perfect-grid,
    .trust-grid,
    .amenity-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .highlight-item i,
    .trust-card i,
    .amenity-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .highlight-item h3,
    .trust-card h4,
    .amenity-item p {
        font-size: 1.1rem;
    }

    .perfect-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Masonry Gallery */
.masonry-gallery {
    columns: 3 320px;
    column-gap: 2rem;
    width: 100%;
    margin: 4rem 0;
    padding: 0 10px;
}

.masonry-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.95);
}

.masonry-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(26, 42, 108, 0.2);
    z-index: 5;
}

.masonry-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.masonry-item:hover::after {
    opacity: 1;
    backdrop-filter: blur(2px);
}

/* Mobile Responsive Gallery */
@media (max-width: 768px) {
    .masonry-gallery {
        columns: 1;
        column-gap: 0;
        padding: 0;
    }

    .masonry-item {
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }
}

/* Page Header Utilities */
.subpage-hero {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    position: relative;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.address-block {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

.address-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
}

.address-details i {
    color: var(--secondary-color);
    width: 25px;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .masonry-gallery {
        columns: 1;
    }

    .subpage-hero {
        height: 50vh;
    }

    .address-block {
        margin-top: -2rem;
        padding: 2rem 1.5rem;
    }
}