/* --- Core Premium Framework Variables --- */
:root {
    --gold: #D4AF37;
    --gold-hover: #AA7C11;
    --bg-dark: #0A0A0A;
    --bg-surface: #121212;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Global Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

/* --- Section Layout Headers --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.gold-text {
    color: var(--gold);
}

/* --- Premium Navigation Bar (Logo Optimization) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 90px; /* Bolder, high-end visibility */
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.tagline-nav {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    display: block;
}

.nav-cta {
    background: var(--gold);
    color: #000000;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

/* --- Hero Banner Layout --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1486873249359-2731bd6dafc7?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(10,10,10,1) 95%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-sub {
    font-family: var(--font-heading);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* --- Layout Buttons --- */
.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0.6rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.wa-icon {
    width: 20px;
    height: 20px;
}

/* --- Destinations Layout Grid --- */
.destinations-section {
    background-color: var(--bg-dark);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.destination-card {
    background: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.8rem;
}

.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.destination-card:hover .card-btn {
    background: var(--gold);
    color: #000000;
    border-color: var(--gold);
    font-weight: 600;
}

/* --- Travel Blogs Section --- */
.blogs-section {
    background-color: var(--bg-surface);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 1.8rem;
}

.blog-date {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.blog-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-card:hover .blog-link {
    color: var(--gold);
    padding-left: 5px;
}

/* --- YouTube Shorts Frame Layout (Strict 9:16 Aspect Ratio) --- */
.shorts-section {
    background-color: var(--bg-dark);
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.short-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* Strict 9:16 Vertical Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.short-container:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

.short-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Premium Google Reviews Layout --- */
.reviews-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
}

.rating-summary-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.g-logo-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.rating-details {
    flex-grow: 1;
}

.rating-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.stars-row {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.3rem;
}

.star-icon {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating-score {
    font-weight: 600;
    margin-left: 0.6rem;
    font-size: 1rem;
    color: var(--text-main);
}

.reviews-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-review {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    white-space: nowrap;
}

.btn-review:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

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

.review-display-card {
    background: linear-gradient(145deg, #121212, #181818);
    border-radius: 8px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #000000;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.reviewer-meta h4 {
    font-size: 1rem;
    font-weight: 600;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
}

.card-stars {
    color: #FFD700;
    letter-spacing: 1px;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.review-display-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* --- WhatsApp Catalog Section --- */
.catalog-section {
    background-color: var(--bg-surface);
    padding: 4rem 2rem;
}

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

.catalog-card {
    background: linear-gradient(145deg, #161616, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.catalog-icon-glow {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.catalog-icon-glow img {
    width: 35px;
    height: 35px;
    filter: invert(59%) sepia(85%) saturate(415%) hue-rotate(85deg) brightness(93%) contrast(92%);
}

.catalog-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.catalog-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.btn-catalog {
    background-color: #25D366;
    color: #ffffff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-catalog:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --- Premium Footer --- */
.main-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tagline-footer {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

.footer-contacts h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-contacts p {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer-contacts a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contacts a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* --- Global Layout Media Viewports --- */
@media (max-width: 968px) {
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 75px; /* Keeps the brand identity sharp and prominent on mobile layouts */
    }
    .tagline-nav { display: none; }
    .hero h1 { font-size: 2.4rem; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .btn { width: 100%; }
    .section-title { font-size: 2rem; }
    .footer-content { flex-direction: column; gap: 2rem; }
    .rating-summary-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
    .stars-row { justify-content: center; }
    .btn-review { width: 100%; }
}

@media (max-width: 480px) {
    .destinations-grid, .blogs-grid {
        grid-template-columns: 1fr;
    }
    .shorts-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}
