/* ============================================
   IBEROGEORGIA - Main Styles
   ============================================ */

/* --- Variables --- */
:root {
    --primary: #c60b1e;
    --primary-dark: #a00918;
    --primary-light: #e02d3f;
    --secondary: #1a1a2e;
    --accent: #f1bf00;
    --text: #1a1a2e;
    --text-light: #555e68;
    --bg: #ffffff;
    --bg-light: #fffdf5;
    --bg-warm: #fef9e7;
    --border: #e0e0e0;
    --success: #27ae60;
    --error: #e74c3c;
    --whatsapp: #25d366;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 5px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --container: 1200px;
    --header-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background: #1da855;
    border-color: #1da855;
}
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1a1a2e;
    backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    height: var(--header-height);
    transition: all 0.3s;
}
.site-header.scrolled {
    height: 65px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    transition: height 0.3s;
}
.site-header.scrolled .header-inner { height: 65px; }

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 50px;
    width: auto;
    transition: height 0.3s;
}
.site-header.scrolled .logo-img { height: 40px; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
}
.nav-cta {
    background: var(--primary) !important;
    color: #ffffff !important;
    border-radius: 30px;
    padding: 8px 20px;
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}
.lang-current:hover { border-color: rgba(255,255,255,0.6); }
.lang-code { font-weight: 500; }
.lang-current i { font-size: 10px; transition: transform 0.3s; }
.lang-switcher.open .lang-current i { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 100;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    transition: background 0.2s;
}
.lang-option:hover { background: var(--bg-light); }
.lang-option.active { color: var(--primary); font-weight: 600; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    position: relative;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero.jpg') center/cover no-repeat;
    margin-top: var(--header-height);
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 40px 20px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.9;
    margin-bottom: 32px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero .btn-outline {
    color: white;
    border-color: white;
}
.hero .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* --- Page Header --- */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: var(--header-height);
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 10px;
}
.page-header p {
    opacity: 0.85;
    font-size: 18px;
}

/* --- Categories Grid --- */
.categories-section { background: var(--bg-light); }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.category-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary);
}
.category-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary);
}
.category-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* --- Tours Grid --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}
.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.tour-card:hover .tour-card-image img { transform: scale(1.05); }
.tour-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tour-card-badge {
    background: rgba(198, 11, 30, 0.75);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.tour-card-body { padding: 24px; }
.tour-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary);
}
.tour-card-title a { color: inherit; text-decoration: none; }
.tour-card-title a:hover { color: var(--primary); }
.tour-card-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
}
.tour-card-meta i { color: var(--primary); margin-right: 5px; }
.tour-card-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 16px;
}
.tour-card-route {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}
.tour-card-route i {
    color: var(--primary);
    margin-right: 5px;
}

/* --- Catalog Filters --- */
.catalog-filters {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}
.catalog-filters-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cf-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.cf-field {
    flex: 1;
    min-width: 180px;
}
.cf-field-full {
    flex: 1 1 100%;
}
.cf-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
}
.cf-field label i {
    color: var(--primary);
    margin-right: 4px;
}
.cf-search-wrap {
    position: relative;
}
.cf-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}
.cf-search-wrap input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}
.cf-search-wrap input:focus {
    border-color: var(--primary);
}
.cf-field select,
.cf-range input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: white;
    transition: border-color 0.2s;
}
.cf-field select:focus,
.cf-range input:focus {
    border-color: var(--primary);
}
.cf-range {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cf-range input {
    flex: 1;
    min-width: 0;
}
.cf-range span {
    color: var(--text-light);
    font-weight: 600;
}
.cf-row-countries {
    align-items: center;
}
.cf-row-countries label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-right: 4px;
    white-space: nowrap;
}
.cf-row-countries label i {
    color: var(--primary);
    margin-right: 4px;
}
.cf-countries {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}
.cf-country-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    background: white;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}
.cf-country-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.cf-country-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.cf-clear-btn {
    padding: 8px 20px;
    border: 1px solid #e74c3c;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    background: white;
    color: #e74c3c;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.cf-clear-btn:hover {
    background: #e74c3c;
    color: white;
}
.cf-results-count {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    text-align: right;
}
/* Ext tour card specifics */
.ext-tour-card .tour-card-image { height: 200px; }
.ext-tour-card .tour-card-body { padding: 18px 20px; }
.ext-tour-card .tour-card-title { font-size: 17px; margin-bottom: 6px; }
.ext-tour-card .tour-card-meta { margin-bottom: 12px; }

@media (max-width: 768px) {
    .cf-row { flex-direction: column; gap: 12px; }
    .cf-field { min-width: 100%; }
    .cf-row-countries { flex-direction: column; align-items: flex-start; gap: 10px; }
    .catalog-filters { padding: 16px; }
}

/* --- Tour Filters --- */
.tour-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}
.tour-filters-days { margin-top: -24px; }
.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- Tour Detail --- */
.tour-detail-header {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 140px 0 60px;
    text-align: left;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}
.tour-detail-header .container { position: relative; }
.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.8;
}
.breadcrumb a:hover { text-decoration: underline; }
.tour-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 15px;
}
.tour-detail-meta i { margin-right: 6px; }
.tour-detail-price { font-weight: 600; }

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}
.tour-section {
    margin-bottom: 40px;
}
.tour-short-description {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}
.tour-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary);
}
.tour-section h2 i { color: var(--primary); margin-right: 8px; }
.tour-description {
    font-size: 16px;
    line-height: 1.8;
    border-top: 2px solid var(--border);
    padding-top: 32px;
}
.tour-description p { margin-bottom: 16px; }
.tour-itinerary h3, .tour-itinerary h4 { color: var(--primary); margin: 20px 0 10px; }
.tour-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.tour-included h3 i { color: var(--success); }
.tour-not-included h3 i { color: var(--error); }
.tour-included li::before { content: '✓ '; color: var(--success); font-weight: bold; }
.tour-not-included li::before { content: '✗ '; color: var(--error); font-weight: bold; }

/* Booking Sidebar */
.tour-detail-sidebar {
    align-self: start;
    position: sticky;
    top: 100px;
}
.tour-booking-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}
.booking-price {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.price-label { display: block; font-size: 14px; color: var(--text-light); }
.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.price-per { font-size: 14px; color: var(--text-light); }
.booking-details { margin-bottom: 24px; }
.booking-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 14px;
}
.booking-detail i { color: var(--primary); width: 20px; }
.tour-booking-card .btn { margin-bottom: 10px; }

/* ============================================
   ABOUT PAGE
   ============================================ */

/* --- About Hero --- */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d4a 50%, var(--primary-dark) 100%);
    color: white;
    padding: 160px 0 100px;
    margin-top: var(--header-height);
    text-align: center;
    overflow: hidden;
}
.about-hero::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 80 80"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    background-size: 40px 40px;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.15);
}
.about-hero-badge i { color: var(--primary-light); }
.about-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.about-hero-subtitle {
    font-size: 20px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- About Label (reusable) --- */
.about-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
}
.about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: var(--primary);
}
.about-label-center {
    display: block;
    text-align: center;
    padding-left: 0;
}
.about-label-center::before { display: none; }

/* --- About Card (Acerca de - image left, text right) --- */
.about-card-section { background: var(--bg); }
.about-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: #e8e4e0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-card-image {
    position: relative;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-card-blob {
    position: absolute;
    border-radius: 50%;
}
.about-card-blob-1 {
    width: 280px;
    height: 280px;
    background: rgba(198, 11, 30, 0.15);
    top: 10%;
    left: 5%;
}
.about-card-blob-2 {
    width: 180px;
    height: 180px;
    background: rgba(241, 191, 0, 0.2);
    bottom: 10%;
    right: 5%;
}
.about-card-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.about-card-content {
    padding: 50px 50px 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-card-title {
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.about-card-line {
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    margin-bottom: 24px;
}
.about-card-lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}
.about-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* --- Mission / Vision / Values --- */
.about-mission-section { background: var(--bg-light); }
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.about-mission-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}
.about-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}
.about-mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-warm) 0%, #fef3cd 100%);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary);
}
.about-mission-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary);
}
.about-mission-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* --- About Stats --- */
.about-stats-section {
    background: var(--secondary);
    color: white;
    padding: 80px 0;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.about-stat-card {
    position: relative;
    padding: 20px;
}
.about-stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.about-stat-card:last-child::after { display: none; }
.about-stat-icon {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 12px;
}
.about-stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.about-stat-label {
    font-size: 15px;
    opacity: 0.75;
    margin-top: 8px;
}

/* --- About Team (photo overlay style using grid stacking) --- */
.about-team-section { background: white; }
.about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-team-card {
    display: grid;
    grid-template: 1fr / 1fr;
    border-radius: 16px;
    overflow: hidden;
    height: 340px;
    cursor: default;
}
.about-team-card > img,
.about-team-card > .about-team-overlay {
    grid-area: 1 / 1 / -1 / -1;
}
.about-team-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s ease;
}
.about-team-card:hover > img {
    transform: scale(1.05);
}
.about-team-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.3) 70%, transparent 100%);
    color: white;
    z-index: 1;
    position: relative;
}
.about-team-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.about-team-role {
    display: block;
    font-size: 11px;
    color: #f1bf00;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-team-bio {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}
.about-team-card:hover .about-team-bio {
    max-height: 200px;
    opacity: 1;
}
.about-team-social {
    display: flex;
    gap: 12px;
}
.about-team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    font-size: 14px;
    transition: all 0.3s;
}
.about-team-social a:hover {
    background: #c60b1e;
    transform: translateY(-2px);
}

/* --- About Why Section --- */
.about-why-section { background: var(--bg-light); }
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.about-why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.about-why-card:hover {
    border-left-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}
.about-why-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: rgba(198, 11, 30, 0.1);
    line-height: 1;
    flex-shrink: 0;
}
.about-why-content { flex: 1; }
.about-why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    border-radius: 12px;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}
.about-why-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--secondary);
}
.about-why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- About CTA --- */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.about-cta-content {
    position: relative;
    z-index: 2;
}
.about-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 16px;
}
.about-cta-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta-section .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
}
.about-cta-section .btn-primary:hover {
    background: var(--bg-warm);
}
.about-cta-section .btn-outline {
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    background: transparent;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.about-cta-section .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* --- Section subtitle (kept for backwards compat) --- */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-top: -10px;
    margin-bottom: 40px;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--secondary);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
    background: white;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,85,61,0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-card, .contact-whatsapp-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
}
.contact-info-card h3, .contact-whatsapp-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i {
    font-size: 20px;
    color: var(--primary);
    width: 24px;
    text-align: center;
}
.contact-info-item strong { display: block; font-size: 13px; color: var(--text-light); }
.contact-info-item a:hover { color: var(--primary); }

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}
.no-results i { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }

/* --- Footer --- */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--primary);
    color: white;
}
.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.footer-contact-list i { color: var(--primary-light); width: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* --- Custom Trip Form --- */
.custom-trip-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.custom-trip-form .form-step {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    overflow: hidden;
}
.form-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
}
.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.form-step-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--secondary);
    margin: 0;
}
.form-step-body {
    padding: 28px;
}
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.custom-trip-form .form-group {
    margin-bottom: 20px;
}
.custom-trip-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--secondary);
}
.custom-trip-form input[type="text"],
.custom-trip-form input[type="email"],
.custom-trip-form input[type="tel"],
.custom-trip-form input[type="month"],
.custom-trip-form select,
.custom-trip-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
    background: white;
}
.custom-trip-form input:focus,
.custom-trip-form select:focus,
.custom-trip-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(198,11,30,0.1);
}

/* Checkbox cards */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.interests-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.checkbox-card {
    cursor: pointer;
}
.checkbox-card input {
    display: none;
}
.checkbox-card-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: center;
    justify-content: center;
}
.checkbox-card-inner i {
    color: var(--text-light);
    font-size: 16px;
    transition: color 0.2s;
}
.checkbox-card input:checked + .checkbox-card-inner {
    border-color: var(--primary);
    background: var(--bg-warm);
    color: var(--primary);
}
.checkbox-card input:checked + .checkbox-card-inner i {
    color: var(--primary);
}
.checkbox-card:hover .checkbox-card-inner {
    border-color: var(--primary-light);
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 16px;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
}
.radio-label input[type="radio"] {
    width: auto;
    accent-color: var(--primary);
}

/* Submit */
.form-submit {
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-row-3 { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr 1fr; }
    .form-step-body { padding: 20px; }
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image {
    display: block;
    height: 220px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-date {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.blog-card-date i { color: var(--primary); margin-right: 5px; }
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card-title a { color: var(--secondary); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card-link:hover { gap: 10px; }

/* Blog Card Category Badge */
.blog-card-image { position: relative; }
.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
}

/* Blog Category Filters */
.blog-filters {
    padding: 20px 0 0;
}
.category-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.category-filter {
    padding: 8px 20px;
    border-radius: 25px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}
.category-filter:hover,
.category-filter.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.filter-info {
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
    color: #666;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.post-tags i {
    color: #999;
    font-size: 14px;
}
.post-tag {
    display: inline-block;
    padding: 5px 14px;
    background: #f0f0f0;
    color: var(--text);
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.post-tag:hover {
    background: var(--primary);
    color: #fff;
}

/* Post Meta Category Link */
.post-meta-category {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.post-meta-category:hover {
    text-decoration: underline;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}
.pagination-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.pagination-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    pointer-events: none;
}

/* Post Detail */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}
.post-featured-image img { width: 100%; }
.post-body {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
}
.post-body p { margin-bottom: 18px; }
.post-body h2, .post-body h3 {
    font-family: var(--font-heading);
    margin: 30px 0 15px;
    color: var(--secondary);
}
.post-body img {
    border-radius: var(--radius);
    margin: 20px 0;
}
.post-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 20px 0;
    background: var(--bg-warm);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.post-meta {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.85;
}
.post-meta i { margin-right: 6px; }
.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.post-share span { font-weight: 600; font-size: 14px; }
.post-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s;
}
.post-share a:hover { background: var(--primary); color: white; }

/* Post Sidebar */
.post-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--secondary);
}
.sidebar-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius);
}
.sidebar-post h4 {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 4px;
    color: var(--secondary);
}
.sidebar-post span {
    font-size: 12px;
    color: var(--text-light);
}
.sidebar-post:hover h4 { color: var(--primary); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .tour-detail-grid { grid-template-columns: 1fr; }
    .tour-detail-sidebar { position: static; }
    .tour-includes-grid { grid-template-columns: 1fr; }
    .about-card { grid-template-columns: 1fr; }
    .about-card-image { padding: 30px; }
    .about-card-content { padding: 30px; }
    .about-team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-mission-grid { grid-template-columns: 1fr; }
    .about-why-grid { grid-template-columns: 1fr; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-header { height: 60px; }
    .header-inner { height: 60px; }
    .site-header.scrolled { height: 60px; }
    .site-header.scrolled .header-inner { height: 60px; }
    .logo-img { height: 36px; }
    .logo-text { font-size: 18px; }
    .hero, .page-header, .about-hero { margin-top: 60px; }
    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(26,26,46,0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.3s;
    }
    .main-nav.open { transform: translateY(0); }
    .mobile-toggle { display: flex; }
    .hero { height: 35vh; }
    .hero-title { font-size: 32px; }
    .tours-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .about-team-grid { grid-template-columns: 1fr; }
    .about-team-card { height: 350px; }
    .about-stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-stat-number { font-size: 36px; }
    .about-hero { padding: 120px 0 70px; }
    .about-hero-title { font-size: 34px; }
    .about-hero-subtitle { font-size: 16px; }
    .about-card-title { font-size: 26px; }
    .about-why-card { flex-direction: column; }
    .about-why-number { font-size: 32px; }
    .about-cta-content h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 30px; }
    .tour-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 10px; }
    .filter-btn { white-space: nowrap; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
}
