/*
Theme Name: Inside Balkan Pro
Theme URI: https://insidebalkan.com
Author: Inside Balkan
Author URI: https://insidebalkan.com
Description: Professional WordPress theme for Inside Balkan travel tours. Features custom tour management, SEO optimization, multi-language support, and integration with popular plugins like Contact Form 7, WPForms, Smart Slider 3, and WooCommerce.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: insidebalkan
Tags: travel, tours, custom-post-types, featured-images, custom-menu, theme-options, translation-ready, rtl-language-support

Inside Balkan Pro - Premium Tour Operator Theme
Optimized for Albanian & Balkan Travel Business
*/

/* =============================================
   CSS VARIABLES - Easy Customization
============================================= */
:root {
    /* Primary Colors */
    --primary: #1a4a5e;
    --primary-dark: #0f3242;
    --primary-light: #2d6b85;
    
    /* Accent Colors */
    --accent: #c9785d;
    --accent-dark: #a85d45;
    --accent-light: #e8a18a;
    
    /* Neutrals */
    --dark: #1a1a1a;
    --gray-900: #2d2d2d;
    --gray-700: #4a4a4a;
    --gray-500: #6b6b6b;
    --gray-300: #a0a0a0;
    --gray-100: #e5e5e5;
    --light: #f8f6f3;
    --white: #ffffff;
    
    /* Backgrounds */
    --bg-cream: #faf8f5;
    --bg-warm: #f5f0eb;
    
    /* Typography - BIGGER FONTS */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* =============================================
   RESET & BASE STYLES
============================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.75;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - BIGGER SIZES */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1.25rem;
    font-size: var(--font-size-base);
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   TOP BAR
============================================= */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 12px 0;
    font-size: var(--font-size-sm);
}

.top-bar-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--accent-light);
}

.top-bar-left a {
    color: var(--white);
}

.top-bar-left a:hover {
    color: var(--accent-light);
}

.top-bar-right {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-right a {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
}

.top-bar-right a:hover {
    opacity: 1;
    color: var(--accent-light);
}

/* =============================================
   NAVIGATION
============================================= */
.navbar {
    background: var(--white);
    padding: 18px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-display);
}

.brand-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--accent);
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: var(--font-size-base);
    color: var(--gray-700);
    padding: 12px 20px !important;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 40px);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 15px 0;
    margin-top: 10px;
    font-size: var(--font-size-base);
}

.dropdown-item {
    padding: 12px 28px;
    font-weight: 400;
    color: var(--gray-700);
}

.dropdown-item:hover {
    background: var(--bg-cream);
    color: var(--primary);
}

.navbar-cta .btn {
    padding: 14px 32px;
    font-weight: 600;
    font-size: var(--font-size-base);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--font-size-base);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary-custom:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary-custom {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-lg {
    padding: 18px 44px;
    font-size: var(--font-size-lg);
}

.btn-sm {
    padding: 10px 20px;
    font-size: var(--font-size-sm);
}

/* WhatsApp Button - Important for Albania */
.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--white);
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,74,94,0.85) 0%, rgba(15,50,66,0.7) 50%, rgba(201,120,93,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
}

.hero-tagline {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-light);
    margin-bottom: 25px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title .text-accent {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Slider Plugin Support */
.hero-slider-container {
    position: relative;
    min-height: 100vh;
}

.hero-slider-container .smart-slider,
.hero-slider-container .metaslider {
    width: 100%;
    height: 100%;
}

/* =============================================
   SECTIONS
============================================= */
.section {
    padding: var(--section-padding) 0;
}

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

.section-dark {
    background-color: var(--primary-dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-tag {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
    line-height: 1.8;
}

/* =============================================
   TOUR CARDS
============================================= */
.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.tour-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-badge-new {
    background: var(--primary);
}

.tour-wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.2rem;
}

.tour-wishlist:hover {
    background: var(--accent);
    color: var(--white);
}

.tour-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-meta i {
    color: var(--accent);
}

.tour-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-title a {
    color: var(--dark);
}

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

.tour-excerpt {
    font-size: var(--font-size-base);
    color: var(--gray-500);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.tour-highlights span {
    font-size: 14px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-highlights i {
    color: var(--accent);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

.tour-price .price-from {
    font-size: 14px;
    color: var(--gray-500);
    display: block;
}

.tour-price .price-amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.tour-price .price-per {
    font-size: 14px;
    color: var(--gray-500);
}

/* =============================================
   TOUR SINGLE PAGE
============================================= */
.tour-hero {
    position: relative;
    height: 70vh;
    min-height: 550px;
    display: flex;
    align-items: flex-end;
}

.tour-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15,50,66,0.95) 0%, rgba(15,50,66,0.5) 40%, transparent 100%);
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}

.tour-breadcrumb {
    margin-bottom: 25px;
    font-size: var(--font-size-sm);
}

.tour-breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.tour-breadcrumb a:hover {
    color: var(--white);
}

.tour-breadcrumb span {
    color: rgba(255,255,255,0.5);
    margin: 0 12px;
}

.tour-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 25px;
}

.tour-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    color: rgba(255,255,255,0.9);
    font-size: var(--font-size-base);
}

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

.tour-hero-meta i {
    color: var(--accent-light);
    font-size: 1.1rem;
}

/* Quick Facts Bar */
.tour-quick-facts {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 35px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-fact {
    text-align: center;
    padding: 15px;
}

.quick-fact i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.quick-fact-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.quick-fact-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
}

/* Tour Content Area */
.tour-content-wrapper {
    padding: 80px 0;
}

.tour-main h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.tour-main h3 {
    font-size: 1.5rem;
    margin: 35px 0 20px;
}

.tour-overview {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--gray-100);
}

.tour-overview p {
    font-size: var(--font-size-lg);
    line-height: 1.9;
}

/* Highlights Section */
.tour-highlights-section {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-bottom: 50px;
}

.tour-highlights-section h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tour-highlights-section h3 i {
    color: var(--accent);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-base);
}

.highlight-item i {
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Itinerary */
.tour-itinerary {
    margin-bottom: 50px;
}

.itinerary-day {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.itinerary-day:hover {
    box-shadow: var(--shadow-md);
}

.itinerary-header {
    display: flex;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: var(--bg-cream);
}

.day-number {
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.day-info h4 {
    margin: 0 0 5px;
    font-size: 1.25rem;
}

.day-info span {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.itinerary-toggle {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--gray-300);
    transition: var(--transition);
}

.itinerary-day.open .itinerary-toggle {
    transform: rotate(180deg);
}

.itinerary-content {
    padding: 25px;
    display: none;
    border-top: 1px solid var(--gray-100);
}

.itinerary-day.open .itinerary-content {
    display: block;
}

.itinerary-content p {
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.itinerary-meals {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 15px 20px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
}

.itinerary-meals span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    color: var(--gray-700);
}

.itinerary-meals i {
    color: var(--accent);
}

/* Booking Sidebar */
.tour-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 35px;
    margin-bottom: 30px;
}

.booking-price {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 25px;
}

.booking-price .price-from {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.booking-price .price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin: 10px 0;
}

.booking-price .price-per {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.booking-card .btn {
    width: 100%;
    margin-bottom: 15px;
}

.booking-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.booking-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: var(--font-size-base);
}

.booking-features li:last-child {
    border-bottom: none;
}

.booking-features i {
    color: #28a745;
    font-size: 1.3rem;
}

/* =============================================
   WHY CHOOSE US / FEATURES
============================================= */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.why-us-images {
    position: relative;
}

.why-img-1 {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 85%;
}

.why-img-2 {
    position: absolute;
    bottom: -30px;
    right: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.why-experience-badge {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-years {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    opacity: 0.9;
}

.why-us-content {
    padding-left: 50px;
}

.why-features {
    margin-top: 35px;
}

.why-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-text h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.feature-text p {
    margin: 0;
    color: var(--gray-500);
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.value-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.value-card h4 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--gray-500);
    margin: 0;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials {
    background: var(--primary-dark);
    padding: var(--section-padding) 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    font-size: 1.125rem;
}

.testimonial-author span {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* =============================================
   TEAM SECTION
============================================= */
.team-section {
    padding: var(--section-padding) 0;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
}

.team-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    border: 5px solid var(--white);
}

.team-card h4 {
    margin-bottom: 8px;
}

.team-card span {
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.team-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 160px 0 100px;
    color: var(--white);
}

.about-hero h1 {
    color: var(--white);
    margin-bottom: 25px;
}

.about-hero p {
    font-size: var(--font-size-xl);
    color: rgba(255,255,255,0.85);
    max-width: 700px;
}

.about-story {
    padding: var(--section-padding) 0;
}

.about-values {
    background: var(--bg-cream);
    padding: var(--section-padding) 0;
}

/* =============================================
   CONTACT PAGE
============================================= */
.category-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
}

.category-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.category-hero p {
    font-size: var(--font-size-xl);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: var(--section-padding) 0;
}

.contact-info-card {
    background: var(--primary);
    color: var(--white);
    padding: 45px;
    border-radius: var(--radius-lg);
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info-card > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    font-size: var(--font-size-base);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent-light);
    width: 30px;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: var(--font-size-base);
}

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

.contact-form-card {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    margin-bottom: 30px;
}

/* Contact Form Styling - Works with CF7 & WPForms */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: var(--font-size-base);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Contact Form 7 Compatibility */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
}

.wpcf7-form input[type="submit"] {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--accent-dark);
}

/* WPForms Compatibility */
.wpforms-container .wpforms-field input,
.wpforms-container .wpforms-field select,
.wpforms-container .wpforms-field textarea {
    padding: 16px 20px !important;
    font-size: var(--font-size-base) !important;
}

/* =============================================
   BLOG
============================================= */
.blog-hero {
    background: var(--primary-dark);
    padding: 160px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: var(--font-size-lg);
    color: rgba(255,255,255,0.8);
}

.blog-grid {
    padding: var(--section-padding) 0;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--accent);
}

.blog-content h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--dark);
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,74,94,0.92) 0%, rgba(201,120,93,0.85) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 25px;
}

.cta-content p {
    font-size: var(--font-size-xl);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding-top: 100px;
}

.footer-main {
    padding-bottom: 60px;
}

.footer-brand .brand-text {
    color: var(--white);
    font-size: 2.25rem;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-base);
    max-width: 320px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-base);
}

.footer-contact li i {
    color: var(--accent-light);
    font-size: 1.25rem;
    width: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-newsletter {
    margin-top: 30px;
}

.footer-newsletter p {
    font-size: var(--font-size-sm);
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: var(--font-size-base);
}

.newsletter-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 15px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: var(--font-size-sm);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    margin-left: 30px;
    font-size: var(--font-size-sm);
}

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

/* =============================================
   BACK TO TOP & WHATSAPP FLOATING
============================================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* WhatsApp Floating Button - Critical for Albania */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =============================================
   RESPONSIVE DESIGN
============================================= */
@media (max-width: 1199.98px) {
    :root {
        --font-size-base: 17px;
    }
    
    .why-us-content {
        padding-left: 30px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .navbar-nav {
        padding: 25px 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-cta {
        padding: 20px 0;
    }
    
    .why-us-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .tour-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --font-size-base: 16px;
        --section-padding: 60px;
    }
    
    .top-bar {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .stat-item {
        width: calc(50% - 15px);
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .tour-hero {
        height: 60vh;
    }
    
    .tour-hero-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .booking-card {
        margin-top: 40px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .footer {
        text-align: center;
        padding-top: 60px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom a {
        display: block;
        margin: 15px 0 0;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

/* =============================================
   WORDPRESS SPECIFIC STYLES
============================================= */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: 0.75rem;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Admin Bar Fix */
.admin-bar .navbar.sticky-top {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar.sticky-top {
        top: 46px;
    }
}

/* Gutenberg Block Support */
.wp-block-columns {
    margin-bottom: 2rem;
}

.wp-block-button__link {
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--font-size-base);
}

.wp-block-button__link:hover {
    background: var(--accent-dark);
    color: var(--white);
}

/* =============================================
   PRINT STYLES
============================================= */
@media print {
    .top-bar,
    .navbar,
    .footer,
    .back-to-top,
    .whatsapp-float,
    .booking-card {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
    }
}
