/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #faf8f3;
    color: #2c2416;
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

#smooth-wrapper {
    width: 100%;
}

#smooth-content {
    position: relative;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8dcc0 50%, #d4c4a0 100%);
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: -0.02em;
    color: #2c2416;
}

.hero-title span {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hero-title .line-2 {
    background: linear-gradient(45deg, #c49b61, #a67c52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 1;
    transform: translateY(0);
    max-width: 600px;
    margin: 0 auto;
    color: #5a5040;
    letter-spacing: 0.3px;
}

.scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
    opacity: 0.9;
}

.scroll-mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s infinite ease-in-out;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.scroll-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: arrowFloat 2s infinite ease-in-out;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.7;
}

.scroll-arrow:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0.4;
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    animation: textPulse 2s infinite ease-in-out;
}

@keyframes mouseWheel {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(6px); 
    }
}

@keyframes arrowFloat {
    0%, 100% { 
        opacity: 0.3; 
        transform: rotate(45deg) translateY(0); 
    }
    50% { 
        opacity: 1; 
        transform: rotate(45deg) translateY(4px); 
    }
}

@keyframes textPulse {
    0%, 100% { 
        opacity: 0.6; 
    }
    50% { 
        opacity: 1; 
    }
}

/* Desktop Navigation */
.navbar-desktop {
    position: fixed;
    top: calc(1.5rem + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: calc(100% - 3rem);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: block;
}

/* Mobile Navigation */
.navbar-mobile {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: calc(100% - 1rem);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: none;
}

.navbar-desktop.active,
.navbar-mobile.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.navbar-mobile .navbar-content {
    height: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2416;
    font-style: italic;
}

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

.nav-links a {
    color: #2c2416;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c49b61;
    transition: width 0.3s ease;
}

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

/* Mobile Navigation Styles */
.navbar-mobile .logo {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mobile-nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.hamburger-line {
    width: 18px;
    height: 1.5px;
    background: #2c2416;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: calc(2rem + 60px);
    right: 1rem;
    width: calc(100vw - 2rem);
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1001;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .mobile-menu {
        background: rgba(255, 255, 255, 0.95);
    }
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    color: #2c2416;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-menu a:last-child {
    margin-bottom: 0;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}


.read-more-btn:hover .arrow {
    transform: translateX(5px);
}

/* Parallax Text Section */
.parallax-text-section {
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f2e7d5 0%, #e6d7bb 100%);
}

.parallax-text {
    display: flex;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 15vw, 20rem);
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.15;
    gap: 4rem;
    color: #c49b61;
}

.large-text {
    display: inline-block;
}

/* Profile Metrics Section */
.metrics-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f3ee 0%, #ede7d9 100%);
    position: relative;
    overflow: hidden;
}

.metrics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23c49b61" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.metrics-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.metrics-subtitle {
    font-size: 1.3rem;
    color: #5a5040;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 155, 97, 0.2);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(196, 155, 97, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 155, 97, 0.1), transparent);
    transition: left 0.6s ease;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(196, 155, 97, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 155, 97, 0.4);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(196, 155, 97, 0.3));
}

.metric-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #c49b61;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(45deg, #c49b61, #d4af73, #c49b61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(196, 155, 97, 0.3);
}

.metric-number.counting {
    animation: pulse 0.8s ease-in-out, gradientShift 4s ease-in-out infinite;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2416;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.metric-description {
    font-size: 0.95rem;
    color: #5a5040;
    line-height: 1.5;
    font-style: italic;
}

/* Charts Container */
.charts-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.chart-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(196, 155, 97, 0.25);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 15px 50px rgba(196, 155, 97, 0.15),
        0 6px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.chart-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 25px 70px rgba(196, 155, 97, 0.25),
        0 10px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(196, 155, 97, 0.5);
}

.chart-full-width {
    width: 100%;
}

.chart-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2416;
    margin-bottom: 2rem;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    height: 350px;
    width: 100%;
}

/* Top Performing Content */
.top-content-section {
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2416;
    text-align: center;
    margin-bottom: 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0;
}

.content-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 155, 97, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(196, 155, 97, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.content-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 45px rgba(196, 155, 97, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(196, 155, 97, 0.4);
}

.content-thumbnail {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.content-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-item:hover .content-thumbnail img {
    transform: scale(1.05);
}

.content-views {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.content-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2416;
    margin-bottom: 0.5rem;
}

.content-info p {
    font-size: 0.9rem;
    color: #5a5040;
    margin: 0;
    font-style: italic;
}


/* Parallax Destinations Section */
.parallax-destinations {
    background: #faf8f3;
    position: relative;
    overflow: hidden;
}

.section-header {
    padding: 4rem 0;
    text-align: center;
    background: #faf8f3;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    margin: 0;
    color: #2c2416;
    opacity: 1;
    transform: translateY(0);
}

.destination-panel {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-right: 2rem;
}

.destination-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    will-change: transform;
    transform: scale(1.1);
}

.destination-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(44, 36, 22, 0.7) 0%,
        rgba(44, 36, 22, 0.4) 50%,
        rgba(196, 155, 97, 0.3) 100%
    );
}

.destination-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem 0 3rem;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 2rem;
    align-items: center;
}

.destination-text {
    color: white;
    max-width: 700px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.destination-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.destination-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 600;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.destination-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    will-change: transform, background;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.15);
}

.detail-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #faf8f3;
}

.detail-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Destination Images Gallery */
.destination-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 300px;
    gap: 1.2rem;
    max-width: 480px;
    margin: 0;
    padding: 0;
}

.destination-images .small-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.destination-images .small-image:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
}

.destination-images .small-image:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

.destination-images .small-image:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.destination-images .small-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced tooltips for images */
.destination-images .small-image[title] {
    cursor: pointer;
}

.destination-images .small-image[title]:hover {
    position: relative;
}

/* Custom tooltip styling */
.destination-images .small-image[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.destination-images .small-image[title]:hover::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 0, 0, 0.9);
    z-index: 1001;
}



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

.blog-card {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: scale(0.9);
    cursor: pointer;
    border: 1px solid #e6d7bb;
    box-shadow: 0 4px 20px rgba(44, 36, 22, 0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(44, 36, 22, 0.15);
    border-color: #c49b61;
}

.blog-card.featured {
    grid-column: span 2;
}

.card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(254, 202, 87, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 2rem;
}

.card-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f2e7d5;
    color: #8b6914;
    border: 1px solid #e6d7bb;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #2c2416;
}

.card-excerpt {
    color: #5a5040;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8a7a66;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Quote Section */
.quote-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8dcc0 100%);
    text-align: center;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.quote {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
}

.quote p {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-style: italic;
    color: #2c2416;
}

.quote cite {
    font-size: 1.1rem;
    color: #5a5040;
    font-weight: 500;
    font-style: normal;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: #faf8f3;
}

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

.about-content p {
    font-size: 1.1rem;
    color: #5a5040;
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    line-height: 1.7;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat {
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 230, 211, 0.9));
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 1.5rem;
    box-shadow:
        0 8px 32px rgba(196, 155, 97, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 155, 97, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c49b61, #d4af73, #c49b61);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(196, 155, 97, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #c49b61;
    text-shadow: 0 2px 8px rgba(196, 155, 97, 0.3);
    position: relative;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #c49b61, #d4af73, #c49b61);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.stat-number.counting {
    animation: pulse 0.8s ease-in-out, gradientShift 4s ease-in-out infinite;
}

.stat-label {
    font-size: 0.85rem;
    color: #5a5040;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(196, 155, 97, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c49b61, #d4af73);
    border-radius: 3px;
    width: 0%;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(196, 155, 97, 0.4);
}

.stat-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: progressGlow 2s ease-in-out infinite;
}

.stat.animated .stat-progress-bar {
    width: 100%;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes progressGlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Travel Gallery - New Design */
.travel-gallery {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2416;
    margin-bottom: 0.5rem;
}

.gallery-title p {
    font-size: 1.1rem;
    color: #5a5040;
    font-style: italic;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.photo-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 20px 60px rgba(196, 155, 97, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
}

.photo-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-card:hover .photo-overlay {
    transform: translateY(0);
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(196, 155, 97, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.15);
}

.location {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.moment {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

/* Card specific positioning for visual interest */
.card-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.card-1 img {
    height: 400px;
}

.card-2 {
    grid-column: 2;
    grid-row: 1;
}

.card-3 {
    grid-column: 2;
    grid-row: 2;
}

.card-4 {
    grid-column: 1 / 3;
    grid-row: 3;
}

.card-4 img {
    height: 250px;
}

.about-image {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
}

/* Newsletter Section */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f2e7d5 0%, #e6d7bb 100%);
    text-align: center;
    border-top: 1px solid #e6d7bb;
    border-bottom: 1px solid #e6d7bb;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9);
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c2416;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #5a5040;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e6d7bb;
    border-radius: 0.5rem;
    background: #ffffff;
    color: #2c2416;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: #8a7a66;
}

.newsletter-input:focus {
    outline: none;
    border-color: #c49b61;
}

.newsletter-button {
    padding: 1rem 2rem;
    border: 2px solid #c49b61;
    border-radius: 0.5rem;
    background: #c49b61;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #a67c52;
    border-color: #a67c52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 97, 0.3);
}

.newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-button.loading {
    pointer-events: none;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.newsletter-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-message {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.3s ease-out;
}

.newsletter-message.success {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-message.error {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #f5f3ee;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e6d7bb;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2416;
    font-style: italic;
}

.footer-brand p {
    color: #5a5040;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c2416;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #5a5040;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #c49b61;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e6d7bb;
    color: #8a7a66;
}

/* Animation Classes */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.slide-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scale-up {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .article-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .destination-panel {
        height: auto;
        min-height: 100vh;
        padding: 4rem 0;
    }
    
    .destination-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
        padding: 0 1rem !important;
        display: grid !important;
        align-items: center !important;
    }

    .destination-text {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Override removed - using grid below */
    
    /* Destination Images Responsive */
    .destination-images {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(3, 200px) !important;
        max-width: 100% !important;
        width: 100% !important;
        gap: 1rem !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
        background-color: rgba(196, 155, 97, 0.1) !important;
        min-height: 650px !important;
    }

    .destination-images .small-image {
        width: 100% !important;
        height: 200px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        border-radius: 1rem;
        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 4px 10px rgba(0, 0, 0, 0.2);
        min-height: 200px;
        background-color: #c49b61 !important;
        opacity: 1 !important;
        display: block !important;
    }

    .destination-images .small-image:first-child,
    .destination-images .small-image:nth-child(2),
    .destination-images .small-image:nth-child(3) {
        grid-column: 1;
        grid-row: unset;
        height: 200px;
    }

    .destination-images .small-image:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.4),
            0 6px 15px rgba(0, 0, 0, 0.3);
    }

    /* Mobile tooltip adjustments */
    .destination-images .small-image[title]:hover::after {
        font-size: 0.8rem;
        padding: 6px 10px;
        bottom: -40px;
    }
    
    .destination-bg {
        background-attachment: scroll;
    }
    
    .destination-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 2rem;
    }
    
    .detail-item {
        padding: 1.5rem;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.12);
    }
    
    .destination-text {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: rgba(0, 0, 0, 0.15);
        padding: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 2rem;
        gap: 1rem;
        scale: 0.9;
    }
    
    .scroll-mouse {
        width: 24px;
        height: 40px;
    }
    
    .scroll-arrow {
        width: 10px;
        height: 10px;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .stats {
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        gap: 2rem;
        justify-content: center;
    }

    .footer-brand h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .footer-brand p {
        font-size: 1.1rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .footer-column a {
        font-size: 1rem;
    }
    
    .navbar-desktop {
        display: none !important;
    }

    .navbar-mobile {
        display: block !important;
    }
    
    .parallax-text {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    /* Metrics Section Responsive */
    .metrics-section {
        padding: 4rem 0;
    }

    .metrics-header {
        margin-bottom: 3rem;
    }

    .metrics-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .metric-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

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

    .metric-number {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }

    .metric-label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        letter-spacing: 0.05em;
    }

    .metric-description {
        font-size: 0.9rem;
    }

    /* Charts Responsive */
    .charts-container {
        padding: 0 1rem;
    }

    .chart-card {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }

    .chart-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .chart-wrapper {
        height: 280px;
    }

    /* Top Content Responsive */
    .top-content-section {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-item {
        padding: 1.2rem;
        border-radius: 1rem;
    }

    .content-thumbnail {
        height: 100px;
    }

    .content-views {
        font-size: 0.8rem;
        padding: 3px 6px;
    }

    .content-info h4 {
        font-size: 0.9rem;
    }

    .content-info p {
        font-size: 0.85rem;
    }
}


/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #faf8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

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

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2416;
    margin-bottom: 2rem;
    font-style: italic;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: #e6d7bb;
    margin: 0 auto;
    border-radius: 1px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: #c49b61;
    animation: loadingProgress 2s ease-out;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Performance optimizations */
.image-placeholder {
    background-attachment: scroll;
    will-change: transform;
}

[data-scroll] {
    will-change: transform, opacity;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Responsive Design for screens < 900px */
@media (max-width: 899px) {
    .container {
        padding: 0 1rem;
    }

    /* About Section Responsive */
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        order: 2;
    }

    .travel-gallery {
        order: 1;
        max-width: 100%;
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .gallery-title h3 {
        font-size: 1.8rem;
    }

    .gallery-title p {
        font-size: 1rem;
    }

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .card-1 img {
        height: 250px;
    }

    .card-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .card-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .card-4 {
        grid-column: 1;
        grid-row: 4;
    }

    .card-4 img {
        height: 200px;
    }

    .photo-card img {
        height: 200px;
    }

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

    .about-content p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .stat {
        padding: 1.5rem 1rem 1rem;
        border-radius: 1rem;
        min-width: 140px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    .stat-progress {
        height: 4px;
    }

    /* Hero Section Responsive */
    .hero-title {
        font-size: clamp(3rem, 8vw, 5rem);
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Navigation Responsive */
    .navbar-desktop .navbar-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .navbar-desktop {
        display: none !important;
    }

    .navbar-mobile {
        display: block !important;
    }

    .navbar-mobile .navbar-content {
        flex-direction: row !important;
        gap: 0;
        padding: 0;
    }

}