/*
Theme Name: WedProposal
Theme URI: https://weddingproposal.com
Author: Mohamed Shaheen
Author URI: https://weddingproposal.com
Description: A bespoke WordPress theme for cinematic proposal planning across Europe's most romantic destinations. Features a custom Destination post type, Theme Customizer, SMTP contact forms, and fully responsive design.
Version: 1.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wedproposal
Tags: one-column, custom-menu, featured-images, theme-options, custom-logo
*/

/* ==========================================================================
   Wedding Proposal — Global Stylesheet
   All pages: Home, About, Destinations, Blog, Contact
   ========================================================================== */

/* ===== CSS Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #ec1349;
    --primary-hover: #d4113f;
    --lavender: #f3f0ff;
    --cream: #fffdfa;
    --bg-light: #fdfafb;
    --bg-dark: #221015;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --white: #ffffff;
    --border-light: rgba(236, 19, 73, 0.1);
    --shadow-primary: rgba(236, 19, 73, 0.2);
    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-display);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 { font-weight: 500; }

.script-accent {
    font-family: var(--font-serif);
    font-style: italic;
}

/* ===== Scroll Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ===== Keyframe Animations ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes ping {
    0% { transform: scale(1); opacity: 0.75; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Stagger animation delay classes */
.stagger-1 { animation-delay: 100ms; transition-delay: 100ms; }
.stagger-2 { animation-delay: 200ms; transition-delay: 200ms; }
.stagger-3 { animation-delay: 300ms; transition-delay: 300ms; }
.stagger-4 { animation-delay: 400ms; transition-delay: 400ms; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(236, 19, 73, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(236, 19, 73, 0.5); }

/* ===== Layout ===== */
.page-wrapper {
    position: relative;
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    overflow-x: hidden;
}

/* ===== Header / Navigation — Floating Glass Pill ===== */
.header-floating-wrap {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    pointer-events: none;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 64rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
    pointer-events: auto;
}

.header:hover {
    background: rgba(255, 255, 255, 0.8);
}

main {
    padding-top: 6rem;
}

/* Remove padding-top when hero is the first child of main */
main:has(> .page-hero:first-child),
main:has(> .hero:first-child) {
    padding-top: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.header-logo .material-symbols-outlined { font-size: 1.875rem; }

.header-logo h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.header-logo h2 span { color: var(--primary); }

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
}

/* Nav Link — Animated Underline */
.nav-link {
    position: relative;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--primary); }

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active { color: var(--primary); font-weight: 700; }

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--primary);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.025em;
    box-shadow: 0 10px 15px -3px var(--shadow-primary);
    transition: background 0.2s, transform 0.2s;
}

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

.mobile-menu-btn {
    display: block;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

/* ===== Mobile Menu — Modern Drawer ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
}

.mobile-menu-header .header-logo h2 {
    font-size: 1.125rem;
}

.mobile-menu-header button {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.05);
    transition: background 0.2s, transform 0.2s;
}

.mobile-menu-header button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.25rem;
    flex: 1;
}

.mobile-menu-nav a:not(.btn-primary-wrap) {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-xl);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    color: var(--text-dark);
}

.mobile-menu-nav a:not(.btn-primary-wrap):hover,
.mobile-menu-nav a:not(.btn-primary-wrap):active {
    background: rgba(236, 19, 73, 0.06);
    color: var(--primary);
    transform: translateX(4px);
}

.mobile-menu-nav a:not(.btn-primary-wrap).active,
.mobile-menu-nav a:not(.btn-primary-wrap).current-menu-item {
    background: rgba(236, 19, 73, 0.08);
    color: var(--primary);
}

.mobile-menu-nav > a:last-child {
    margin-top: auto;
}

.mobile-menu-nav .btn-primary {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: var(--radius-full);
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* ===== Hero Section (Homepage) ===== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    background: radial-gradient(ellipse at 50% 0%, rgba(236, 19, 73, 0.04) 0%, transparent 70%);
}

@media (min-width: 768px) {
    .hero { padding: 8rem 1rem; }
}

.hero-text { max-width: 56rem; text-align: center; }

/* Hero Label — Badge Pill */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    background: rgba(236, 19, 73, 0.05);
    border: 1px solid rgba(236, 19, 73, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.hero-label-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .hero-title { font-size: 4rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4.75rem; }
}

.hero-title .highlight {
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    margin: 1.5rem auto 0;
    max-width: 42rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Hero CTA Buttons Row */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Hero Video Frame */
.hero-frame-wrapper {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    max-width: 64rem;
    padding: 0 1rem;
}

.hero-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 2.5rem;
    border: 8px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.7s ease;
}

.hero-frame:hover {
    transform: scale(1.02);
}

/* Gradient overlay inside frame */
.hero-frame-gradient {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent, transparent);
    pointer-events: none;
}

/* Ping animation ring around play button */
.hero-play-ping {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Hero Poster Image */
.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Self-hosted video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* YouTube / Vimeo embed container */
.hero-video-embed {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hero-video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video thumbnail ready — show paused video first frame instead of static poster */
.hero-frame.has-video-thumb .hero-poster { opacity: 0; pointer-events: none; }
.hero-frame.has-video-thumb .hero-video { opacity: 1; }

/* Playing state */
.hero-frame.is-playing .hero-poster { opacity: 0; }
.hero-frame.is-playing .hero-video,
.hero-frame.is-playing .hero-video-embed { opacity: 1; pointer-events: auto; }
.hero-frame.is-playing .hero-play-btn .hero-play-icon { opacity: 0; transform: scale(0.5); }

/* Play / Pause button overlay */
.hero-play-btn {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hero-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    transition: background 0.3s, transform 0.3s, opacity 0.3s;
}

.hero-play-icon .material-symbols-outlined {
    font-size: 3rem;
}

.hero-play-btn:hover .hero-play-icon {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

/* Show pause icon on hover when playing */
.hero-frame.is-playing .hero-play-btn:hover .hero-play-icon {
    opacity: 0.8;
    transform: scale(1);
}

/* Decorative Blurs — Floating */
.hero-blur {
    position: absolute;
    width: 16rem;
    height: 16rem;
    border-radius: var(--radius-full);
    filter: blur(60px);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-blur--bottom-left {
    bottom: -3rem;
    left: -3rem;
    background: rgba(236, 19, 73, 0.2);
}

.hero-blur--top-right {
    top: -3rem;
    right: -3rem;
    background: rgba(168, 85, 247, 0.2);
    animation-delay: 2s;
}

/* ===== Destinations Section (Homepage) ===== */
.destinations {
    background: rgba(243, 240, 255, 0.3);
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .destinations { padding: 7rem 5rem; }
}

.destinations-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .destinations-header {
        flex-direction: row;
        align-items: center;
    }
}

.destinations-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.destinations-subtitle {
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    transition: gap 0.3s;
}

.btn-text:hover { gap: 0.75rem; }

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

@media (min-width: 640px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Destination Card */
.dest-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 2rem;
    cursor: pointer;
}

.dest-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

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

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent);
}

.dest-card-text {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    transition: transform 0.4s ease;
}

.dest-card:hover .dest-card-text {
    transform: translateY(-8px);
}

.dest-card-text h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
}

.dest-card-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-serif);
    font-style: italic;
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
}

.dest-card:hover .dest-card-text p {
    opacity: 1;
}

/* Explore Icon — centered, appears on hover */
.dest-explore-icon {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.dest-explore-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
}

.dest-card:hover .dest-explore-icon {
    opacity: 1;
}

/* Destination Card — Border Glow on Hover */
.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    border: 2px solid transparent;
    transition: border-color 0.4s;
    z-index: 2;
    pointer-events: none;
}

.dest-card:hover::after {
    border-color: rgba(236, 19, 73, 0.3);
}

/* ===== Testimonial Section (Single Quote) ===== */
.testimonial {
    padding: 6rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial { padding: 7rem 5rem; }
}

.testimonial-inner { max-width: 48rem; margin: 0 auto; }

.testimonial-icon {
    font-size: 3.75rem;
    color: rgba(236, 19, 73, 0.3);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: #1e293b;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .testimonial-quote { font-size: 1.875rem; }
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-line {
    width: 3rem;
    height: 1px;
    background: rgba(236, 19, 73, 0.3);
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

/* ===== Testimonial — Stacked Multiple Testimonials ===== */
.testimonials-section {
    padding: 6rem 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonials-section { padding: 7rem 5rem; }
}

.testimonials-section .section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 48rem;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 32px rgba(236, 19, 73, 0.06);
    text-align: center;
    border: 1px solid rgba(236, 19, 73, 0.06);
}

.testimonial-card .testimonial-icon {
    font-size: 2.5rem;
}

.testimonial-card .testimonial-quote {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .testimonial-card .testimonial-quote { font-size: 1.5rem; }
}

/* ===== Testimonial Carousel ===== */
.testimonial-carousel {
    position: relative;
    max-width: 52rem;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

/* Carousel Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(236, 19, 73, 0.15);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(236, 19, 73, 0.4);
}

/* Carousel Arrows */
.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid rgba(236, 19, 73, 0.1);
    color: var(--primary);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.carousel-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 16px var(--shadow-primary);
}

/* ===== Homepage Testimonial Carousel ===== */
.home-testimonial-carousel {
    position: relative;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.home-testimonial-carousel .testimonial-quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    background: rgba(236, 19, 73, 0.08);
    color: var(--primary);
    margin-bottom: 2rem;
}

.home-testimonial-carousel .testimonial-quote-icon .material-symbols-outlined {
    font-size: 2rem;
}

/* Track and slides */
.htc-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.htc-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.htc-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.htc-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #1e293b;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .htc-quote { font-size: 2rem; }
}

@media (min-width: 1024px) {
    .htc-quote { font-size: 2.5rem; line-height: 1.5; }
}

.htc-author {
    margin-top: 2.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
}

/* Controls — arrows + dots */
.htc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.htc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.htc-arrow:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.08);
}

.htc-arrow .material-symbols-outlined {
    font-size: 1.375rem;
}

.htc-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.htc-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.htc-dot.active {
    width: 1.75rem;
    background: var(--primary);
    border-radius: var(--radius-full);
}

/* Background blob decoration */
.testimonial-bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 25rem;
    background: radial-gradient(ellipse, rgba(236, 19, 73, 0.04), rgba(168, 85, 247, 0.04), transparent);
    border-radius: var(--radius-full);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* ===== Footer ===== */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .footer-inner { padding: 4rem 5rem; }
}

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

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.footer-brand-logo .material-symbols-outlined { font-size: 1.5rem; }

.footer-brand-logo h2 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.footer-brand-logo h2 span { color: var(--primary); }

.footer-description {
    margin-top: 1.5rem;
    max-width: 24rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Footer Heading */
.footer-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-top: 2rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .footer-heading { font-size: 2.5rem; }
}

.footer-heading .script-accent {
    color: var(--primary);
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    border: 1px solid #e2e8f0;
    color: var(--text-light);
    transition: all 0.3s;
}

.footer-socials a .material-symbols-outlined {
    font-size: 1rem;
}

.footer-socials a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* Contact Form (in footer) */
.contact-form-card {
    border-radius: 2rem;
    background: #f8fafc;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .contact-form-card { padding: 2.5rem; }
}

.contact-form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
}

.contact-form-card > p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-form { margin-top: 2rem; }

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-form .form-row { grid-template-columns: 1fr 1fr; }
}

.contact-form .form-row + *,
.contact-form select + *,
.contact-form textarea + *,
.contact-form .form-input + .form-input,
.contact-form .form-input + select,
.contact-form .form-input + textarea { margin-top: 1rem; }

.form-input {
    width: 100%;
    border-radius: var(--radius-xl);
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--shadow-primary);
}

.form-input::placeholder { color: var(--text-light); }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    border-radius: var(--radius-xl);
    background: #0f172a;
    padding: 1.125rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.025em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-submit .material-symbols-outlined {
    font-size: 0.875rem;
    transition: transform 0.3s;
}

.btn-submit:hover .material-symbols-outlined {
    transform: translateX(2px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--primary); }


/* ==========================================================================
   NEW COMPONENT STYLES — shared across all pages
   ========================================================================== */

/* ===== Button Variants ===== */

/* Outline / Ghost Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: transparent;
    border: 2px solid var(--primary);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.025em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* White outline variant for dark backgrounds */
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: transparent;
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.025em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* WhatsApp Green Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.025em;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.25);
    transition: background 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-1px);
}

/* ===== WhatsApp Floating Bubble ===== */
.whatsapp-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* WhatsApp Bubble — Tooltip */
.whatsapp-bubble::before {
    content: 'Chat with us';
    position: absolute;
    right: calc(100% + 0.75rem);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--text-dark);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.whatsapp-bubble:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-bubble .whatsapp-tooltip {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.whatsapp-bubble svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: var(--white);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== Page Hero Banner (About, Destinations, Blog, Contact) ===== */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 380px;
    padding: 8rem 1.5rem 5rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-hero { min-height: 420px; padding: 9rem 2rem 5rem; }
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(15, 23, 42, 0.4) 100%
    );
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 48rem;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
}

@media (min-width: 768px) {
    .page-hero-title { font-size: 3.5rem; }
}

.page-hero-subtitle {
    margin-top: 1rem;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Page hero with CTA row */
.page-hero .hero-cta-row {
    margin-top: 1.5rem;
}

/* ===== Section Utilities ===== */
.section {
    padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
    .section { padding: 7rem 5rem; }
}

.section--lavender {
    background: rgba(243, 240, 255, 0.3);
}

.section--cream {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(236, 19, 73, 0.7);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .section-title { font-size: 2.75rem; }
}

.section-subtitle {
    margin-top: 0.75rem;
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===== "How It Works" / "The Process" Section ===== */
.how-it-works {
    padding: 6rem 1.5rem;
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

@media (min-width: 768px) {
    .how-it-works { padding: 7rem 5rem; }
}

.how-it-works > * {
    position: relative;
    z-index: 1;
}

/* Section header — flex row with space-between */
.how-it-works .section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 4rem;
    text-align: left;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .how-it-works .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.how-it-works .section-header .btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    transition: gap 0.3s;
}

.how-it-works .section-header .btn-text:hover {
    gap: 0.75rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.step-card {
    position: relative;
    text-align: left;
    padding: 2.25rem 2rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: var(--radius-2xl);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Accent top border on hover */
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: var(--primary);
    border-radius: 0 0 2px 2px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover::after {
    transform: scaleX(1);
}

/* Hide step icon circles */
.step-icon {
    display: none;
}

.step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(236, 19, 73, 0.06);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    transition: background 0.3s, color 0.3s;
}

.step-card:hover .step-number {
    background: var(--primary);
    color: var(--white);
}

.step-title {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-description {
    position: relative;
    z-index: 1;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Final CTA Banner ===== */
.cta-banner {
    position: relative;
    background: var(--text-dark);
    padding: 5rem 1.5rem;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-banner { padding: 6rem 5rem; }
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(236, 19, 73, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 40%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(236, 19, 73, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 44rem;
    margin: 0 auto;
}

.cta-banner-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cta-banner-title { font-size: 2.5rem; }
}

.cta-banner-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.cta-banner-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-banner .btn-primary {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(236, 19, 73, 0.3);
}

.cta-banner .btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 8px 24px rgba(236, 19, 73, 0.4);
}

/* ===== Destination Detail Page ===== */

/* Larger hero for detail pages */
.dest-detail-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 420px;
    padding: 8rem 1.5rem 5rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.dest-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(15, 23, 42, 0.4) 100%
    );
    z-index: 1;
}

.dest-detail-hero h1,
.dest-detail-hero p {
    position: relative;
    z-index: 2;
}

.dest-detail-hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
}

.dest-detail-hero p {
    margin-top: 0.5rem;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-serif);
    font-style: italic;
}

@media (min-width: 768px) {
    .dest-detail-hero {
        min-height: 520px;
    }
    .dest-detail-hero h1 {
        font-size: 4rem;
    }
}

/* Destination description prose */
.dest-description {
    max-width: 52rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .dest-description { padding: 5rem 2rem; }
}

.dest-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.dest-description p:last-child { margin-bottom: 0; }

/* Proposal Idea Cards */
.proposal-ideas {
    padding: 4rem 1.5rem;
    background: rgba(243, 240, 255, 0.3);
}

@media (min-width: 768px) {
    .proposal-ideas { padding: 5rem; }
}

.proposal-ideas h2,
.gallery-section h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.proposal-ideas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .proposal-ideas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .proposal-ideas-grid { grid-template-columns: repeat(3, 1fr); }
}

.proposal-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.proposal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.proposal-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-full);
    background: var(--lavender);
    color: var(--primary);
    margin-bottom: 1rem;
}

.proposal-card-icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.proposal-card-title,
.proposal-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.proposal-card-text,
.proposal-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.proposal-card .material-symbols-outlined {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-full);
    background: var(--lavender);
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Image Gallery — CSS Grid */
.gallery-section {
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .gallery-section { padding: 5rem; }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

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

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

/* ===== Blog Card Styles ===== */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.blog-card-image,
.blog-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--lavender);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.blog-card-title a {
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card-date {
    color: var(--text-light);
}

.blog-card-link,
.blog-card-read-more {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s, color 0.2s;
}

.blog-card-link:hover,
.blog-card-read-more:hover {
    gap: 0.5rem;
    color: var(--primary-hover);
}

.blog-card-link .material-symbols-outlined {
    font-size: 1.125rem;
}

/* ===== Blog Article / Prose Typography ===== */
.prose {
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

@media (min-width: 768px) {
    .prose { padding: 4rem 2rem 6rem; }
}

.prose h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .prose h1 { font-size: 3rem; }
}

.prose h2 {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.25;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.prose p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.prose p:last-child { margin-bottom: 0; }

.prose strong { color: var(--text-dark); font-weight: 600; }

.prose em { font-style: italic; }

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.prose a:hover { color: var(--primary-hover); }

.prose blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--primary);
    background: var(--lavender);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.prose ul,
.prose ol {
    margin: 1.25rem 0;
    padding-left: 1.75rem;
    color: var(--text-muted);
}

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose li {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.prose li::marker {
    color: var(--primary);
}

.prose img {
    width: 100%;
    border-radius: var(--radius-2xl);
    margin: 2rem 0;
}

.prose hr {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 2.5rem 0;
}

/* Blog article meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.article-meta .blog-card-category {
    margin-bottom: 0;
}

/* ===== Contact Page — Split Layout ===== */
.contact-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .contact-split { padding: 5rem 2rem; }
}

@media (min-width: 1024px) {
    .contact-split { grid-template-columns: 1fr 1fr; }
}

.contact-form-section {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(236, 19, 73, 0.05);
}

.contact-form-section h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-section > p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form-section .form-group {
    margin-bottom: 1rem;
}

.contact-form-section .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-info-item span,
.contact-info-item a {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

/* ===== About Page Specific Styles ===== */

/* Story Section — Two Column (text + image) */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-story { padding: 5rem 2rem; }
}

@media (min-width: 1024px) {
    .about-story { grid-template-columns: 1fr 1fr; }
}

.about-story-text h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-story-text .section-label {
    text-align: left;
}

.about-story-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-story-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.about-story-text p:last-child { margin-bottom: 0; }

.about-story-image {
    border-radius: var(--radius-3xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reduce vertical padding between consecutive story sections */
.about-story + .about-pullquote { margin-top: -2rem; }
.about-pullquote + .about-story { margin-top: -2rem; }
.about-story + .about-story { padding-top: 0; }

/* Reverse layout variant */
.about-story--reverse .about-story-image {
    order: -1;
}

@media (min-width: 1024px) {
    .about-story--reverse .about-story-image { order: -1; }
    .about-story--reverse .about-story-text { order: 1; }
}

/* Pull Quote — full-width accent strip */
.about-pullquote {
    background: var(--lavender);
    padding: 4rem 1.5rem;
    text-align: center;
}

.about-pullquote blockquote {
    max-width: 44rem;
    margin: 0 auto;
}

.about-pullquote blockquote p {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .about-pullquote { padding: 5rem 2rem; }
    .about-pullquote blockquote p { font-size: 2.25rem; }
}

/* Stats Band */
.about-stats {
    background: var(--text-dark);
    padding: 3.5rem 1.5rem;
}

.about-stats-inner {
    max-width: 64rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .about-stats { padding: 4rem 2rem; }
    .about-stats-inner { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.about-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .about-stat-number { font-size: 3rem; }
}

.about-stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
}

/* Mission / Vision Cards */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .values-grid { padding: 5rem; }
}

@media (min-width: 640px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.value-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-full);
    background: var(--lavender);
    color: var(--primary);
}

.value-card-icon .material-symbols-outlined {
    font-size: 1.75rem;
}

.value-card-title,
.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-card-text,
.value-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.value-card .material-symbols-outlined {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-full);
    background: var(--lavender);
    color: var(--primary);
    font-size: 1.75rem;
}

/* Why Choose Us — Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .features-grid { padding: 5rem; }
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(236, 19, 73, 0.2);
}

.feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: var(--radius-full);
    background: var(--lavender);
    color: var(--primary);
}

.feature-card-icon .material-symbols-outlined {
    font-size: 1.5rem;
}

.feature-card-title,
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.feature-card-text,
.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-card .material-symbols-outlined {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: var(--radius-full);
    background: var(--lavender);
    color: var(--primary);
    font-size: 1.5rem;
}

/* ===== Destinations Listing Page — Grid Variant ===== */
.dest-listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .dest-listing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .dest-listing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Taller cards for listing page */
.dest-listing-grid .dest-card {
    aspect-ratio: 3 / 4;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ===== Form Status Messages (WordPress AJAX) ===== */
.form-status {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    text-align: center;
}
.form-status--success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.form-status--error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== WordPress Pagination ===== */
.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all 0.2s;
}
.blog-pagination a:hover {
    background: var(--primary);
    color: var(--white);
}
.blog-pagination .current {
    background: var(--primary);
    color: var(--white);
}

/* ===== WordPress Active Nav (from menu walker) ===== */
.nav-link.current-menu-item,
.nav-link.current-menu-parent {
    color: var(--primary);
}
