/* CSS Variables for Premium Design */
:root {
    --color-primary: #C95C3F; /* Terracotta / Burnt Orange */
    --color-primary-dark: #A6472D;
    --color-secondary: #D4AF37; /* Gold Accent */
    --color-dark: #1F1916; /* Deep Charcoal/Brown for text */
    --color-darker: #130D0B;
    --color-light: #FAF6F1; /* Soft cream background */
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(31, 25, 22, 0.08);
    --shadow-medium: 0 15px 40px rgba(31, 25, 22, 0.12);
    --shadow-strong: 0 20px 50px rgba(0,0,0,0.3);
    
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(201, 92, 63, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 92, 63, 0.4);
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Separator */
.separator {
    height: 3px;
    width: 60px;
    background-color: var(--color-secondary);
    margin: 20px 0 30px 0;
}
.separator.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-darker);
    line-height: 1.1;
}

.brand-text small {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.brand-tag {
    color: var(--color-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 4px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('assets/turkey_hero_bg.png'); /* Dynamic Generated Image */
    background-size: cover;
    background-position: center bottom;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
}

.badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.hero h1 {
    font-size: 5rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--color-secondary);
    font-style: italic;
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #554C47;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-darker);
}

.highlights-box {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
    margin-top: 30px;
}

.highlights-box p {
    margin-bottom: 15px;
    font-size: 1rem;
}
.highlights-box p:last-child {
    margin-bottom: 0;
}
.highlights-box i {
    color: var(--color-secondary);
    margin-right: 8px;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
}

.image-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-white);
    padding: 20px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 3px solid var(--color-secondary);
}

/* Inclusions Grid */
.bg-light {
    background-color: white;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.inclusion-card {
    background: var(--color-light);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.inclusion-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary);
}

.inclusion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: var(--transition);
}

.inclusion-card:hover::before {
    height: 100%;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.inclusion-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-darker);
}

.inclusion-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inclusion-card li {
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
    color: #554C47;
}

.inclusion-card li::before {
    content: "•";
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    background-color: var(--color-darker);
    color: var(--color-white);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(19, 13, 11, 0.4), rgba(19, 13, 11, 0.8)), url('assets/turkey_hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}

.pricing-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-strong);
    max-width: 500px;
    width: 100%;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.pricing-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-body {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 30px 0;
    color: var(--color-white);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 5px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.price-value .asterisk {
    font-size: 2rem;
    vertical-align: super;
}

.pricing-footer .operated-by {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.pricing-card .btn-primary {
    background: var(--color-white);
    color: var(--color-primary-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pricing-card .btn-primary:hover {
    background: var(--color-light);
    transform: translateY(-2px);
}

.fine-print {
    max-width: 800px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.fine-print p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: var(--color-darker);
    padding: 60px 0 20px 0;
    color: var(--color-light);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h4 {
    color: var(--color-secondary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links i {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Animations CSS */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Itinerary Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: var(--color-primary);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

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

.timeline-dot {
    position: absolute;
    left: 14px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(201, 92, 63, 0.2);
}

.timeline-content {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.timeline-content:hover {
    border-left: 3px solid var(--color-primary);
    box-shadow: var(--shadow-medium);
    transform: translateX(5px);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--color-darker);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.date-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: var(--color-light);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.hotel-tag {
    color: var(--color-secondary) !important;
    font-weight: 600;
    font-size: 0.95rem !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-content p {
    color: #554C47;
    margin-bottom: 10px;
}

.timeline-content ul {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-content li {
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
    color: #554C47;
}

.timeline-content li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.timeline-content em {
    color: var(--color-primary-dark);
    font-style: italic;
}

/* Inclusions & Exclusions Split */
.inclusions-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.includes-box, .excludes-box {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.includes-box h2, .excludes-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.text-primary { color: var(--color-primary); }
.text-dark { color: var(--color-darker); }

.includes-box ul, .excludes-box ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.includes-box li, .excludes-box li {
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
    color: #554C47;
}

.includes-box li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 2px;
}

.excludes-box li::before {
    content: "\f00d"; /* FontAwesome times */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #999;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Info Grid (Observations) */
.important-info {
    margin-bottom: 30px;
    max-width: 900px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Agency Profile */
.agency-profile {
    background-color: var(--color-white);
}

.agency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.agency-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4A4A4A;
    line-height: 1.7;
}

.agency-image {
    text-align: center;
}

.agency-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    max-width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-grid, .agency-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1; /* image on top on mobile */
    }
    .image-card {
        bottom: 20px;
        left: 20px;
    }
    .hero h1 {
        font-size: 4rem;
    }
    .inclusions-split {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .badge-group {
        justify-content: center;
    }
    .hero h1 {
        font-size: 3.2rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    .nav-container .btn-outline {
        display: none; /* hide secondary button on small mobile header */
    }
    .section-title {
        font-size: 2rem;
    }
    .price-value {
        font-size: 3.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links p {
        justify-content: center;
    }
    .timeline::before {
        left: 10px;
    }
    .timeline-dot {
        left: 4px;
    }
    .timeline-item {
        padding-left: 40px;
    }
    .timeline-content {
        padding: 20px;
    }
}
