/* ─── Kapadokya Danışman - Bileşen Stilleri ─── */

/* ─── Hero Slider ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8%;
    padding-right: 40%;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 80px);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-controls {
    position: absolute;
    bottom: 120px;
    right: 8%;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-arrow {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.hero-dots {
    position: absolute;
    bottom: 120px;
    left: 8%;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    width: 60px;
}

/* Hero Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.hero-stats-inner {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    letter-spacing: 1px;
}

/* ─── Quick Search Form ─── */
.quick-search {
    background: var(--dark-2);
    padding: 48px 0;
}

.quick-search h3 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
    font-size: 24px;
}

.quick-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0;
    border: 1px solid rgba(200, 150, 12, 0.3);
}

.quick-search-form .form-select,
.quick-search-form .form-input {
    background: var(--dark);
    border: none;
    border-right: 1px solid rgba(200, 150, 12, 0.3);
    color: var(--white);
    padding: 18px 20px;
    font-size: 14px;
}

.quick-search-form .form-select option {
    background: var(--dark);
}

.quick-search-form .btn {
    padding: 18px 40px;
}

/* ─── Service Cards ─── */
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.service-card:hover {
    border-top: 3px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card-number {
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 700;
    color: rgba(200, 150, 12, 0.1);
    line-height: 1;
    z-index: 1;
}

.service-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 24px;
}

.service-card-body h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.service-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-card-link {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card-link:hover {
    gap: 10px;
}

/* ─── Tour Cards ─── */
.tour-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    transition: background var(--transition);
}

.tour-card:hover .tour-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.tour-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 1;
}

.tour-card-content h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.tour-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.tour-card-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1;
}

.tour-card-cta {
    display: block;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.tour-card:hover .tour-card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Hotel Cards ─── */
.hotel-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.hotel-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.hotel-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.05);
}

.hotel-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
}

.hotel-card-body {
    padding: 24px;
}

.hotel-card-body h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.hotel-card-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.hotel-card-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-card-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.hotel-card-price span {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ─── Blog Cards ─── */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

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

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

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

.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-body h4 {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ─── Category Cards ─── */
.category-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all var(--transition);
}

.category-card:hover .category-card-overlay {
    background: rgba(0, 0, 0, 0.7);
    border-top: 3px solid var(--gold);
}

.category-card-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.category-card-overlay h4 {
    color: var(--white);
    font-size: 22px;
}

/* ─── Testimonials ─── */
.testimonial {
    display: none;
}

.testimonial.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: -40px;
    opacity: 0.3;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text);
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.testimonial-origin {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.testimonial-stars {
    margin-top: 12px;
}

.testimonial-image {
    aspect-ratio: 1;
    overflow: hidden;
}

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

.testimonial-controls {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.testimonial-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── Stats ─── */
.stats-section {
    background: #1a3a2a;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1641128324972-af3212f0f6bd?w=1920') center/cover;
    opacity: 0.15;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    letter-spacing: 1px;
}

/* ─── Why Us ─── */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    height: 600px;
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-feature {
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.why-us-feature h5 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-us-feature h5 .feature-icon {
    color: var(--gold);
}

.why-us-feature p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    padding-left: 26px;
}

/* ─── Newsletter / CTA ─── */
.newsletter {
    text-align: center;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 32px;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border: 1px solid rgba(200, 150, 12, 0.4);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

/* ─── Search Modal ─── */
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.open {
    opacity: 1;
    visibility: visible;
}

.search-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: color var(--transition);
}

.search-modal-close:hover {
    color: var(--gold);
}

.search-modal-input {
    width: 100%;
    max-width: 600px;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    transition: border-color var(--transition);
}

.search-modal-input:focus {
    border-color: var(--gold);
}

.search-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    justify-content: center;
}

.search-chip {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    cursor: pointer;
    transition: all var(--transition);
}

.search-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.search-results {
    width: 100%;
    max-width: 600px;
    margin-top: 32px;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    color: var(--white);
    transition: background var(--transition);
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.search-result-item .result-type {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 60px;
}

.search-result-item .result-title {
    font-size: 15px;
}

/* ─── WhatsApp Button ─── */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text);
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ─── Gallery ─── */
.gallery-grid {
    columns: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    font-size: 24px;
}

/* ─── Filter Bar ─── */
.filter-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border);
    font-size: 14px;
    transition: all var(--transition);
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

/* ─── Sticky Sidebar ─── */
.sticky-sidebar {
    position: sticky;
    top: 96px;
}

.price-box {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
}

.price-box-price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.price-box-original {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.price-box-per {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ─── Blog Sidebar ─── */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sidebar-widget ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-widget ul li a:hover {
    color: var(--gold);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    border: 1px solid var(--border);
    font-size: 12px;
    transition: all var(--transition);
}

.tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── Author Box ─── */
.author-box {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--light);
    border-left: 3px solid var(--gold);
    margin: 40px 0;
}

.author-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.author-box h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.author-box p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ─── Post Navigation ─── */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.post-nav-link {
    padding: 16px;
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}

.post-nav-link:hover {
    border-color: var(--gold);
}

.post-nav-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.post-nav-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-top: 4px;
}

/* ─── Tour Detail ─── */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.tour-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 8px;
    margin-bottom: 40px;
}

.tour-gallery-main {
    grid-row: 1 / -1;
    overflow: hidden;
}

.tour-gallery-main img,
.tour-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-gallery-thumb {
    overflow: hidden;
}

.program-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.program-time {
    min-width: 70px;
    font-weight: 600;
    color: var(--gold);
    font-size: 14px;
}

.program-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.program-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.include-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.include-item.included svg {
    color: #22c55e;
}

.include-item.excluded svg {
    color: #ef4444;
}

/* ─── Team Cards ─── */
.team-card {
    text-align: center;
}

.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 16px;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ─── Value Cards ─── */
.value-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    border-top: 3px solid var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-card svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Contact Info Card ─── */
.contact-card {
    background: var(--light);
    padding: 32px;
    border-left: 3px solid var(--gold);
}

.contact-card-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

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

.contact-card-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card-item h5 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ─── Services Detail (Zigzag) ─── */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-image {
    height: 400px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h3 {
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-features {
    margin-bottom: 24px;
}

.service-detail-features li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-features li svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.service-detail-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

/* ─── Map ─── */
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ─── Blog Detail ─── */
.blog-cover {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
}

.blog-content {
    max-width: 760px;
    margin: 0 auto;
}

.blog-content h2 {
    font-size: 28px;
    margin: 32px 0 16px;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.blog-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.blog-content ul li {
    list-style: disc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text);
}

.blog-content strong {
    font-weight: 600;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.blog-meta .badge {
    margin-right: 8px;
}

/* Responsive components */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 24px;
    }

    .hero-controls {
        display: none;
    }

    .hero-stat-value {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .quick-search-form {
        grid-template-columns: 1fr;
    }

    .why-us {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .testimonial.active {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        max-height: 300px;
    }

    .gallery-grid {
        columns: 2;
    }

    .tour-detail-grid {
        grid-template-columns: 1fr;
    }

    .tour-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 250px;
    }

    .tour-gallery-main {
        grid-row: auto;
    }

    .tour-gallery-thumb {
        display: none;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-detail:nth-child(even) .service-detail-image {
        order: 0;
    }

    .service-detail-image {
        height: 250px;
    }

    .include-list {
        grid-template-columns: 1fr;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .blog-cover {
        height: 250px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        columns: 1;
    }

    .hero-stats-inner {
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 0 0 50%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}