/* Base Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f0a500;
    --primary-dark: #cc8c00;
    --dark: #1f2022;
    --darker: #151618;
    --light: #ffffff;
    --gray-bg: #f9f9fb;
    --text: #4a4a4a;
    --text-light: #888;
    --gradient: linear-gradient(135deg, #f0a500 0%, #d35400 100%);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
}

body,
html {
    font-family: 'Outfit', sans-serif;
    background-color: var(--gray-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Background Patterns */
.bg-pattern {
    background-color: var(--gray-bg);
    background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px), radial-gradient(var(--primary) 0.5px, var(--gray-bg) 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: var(--glass-border);
    transition: 0.3s;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 35px;
    font-weight: 500;
    font-size: 1.05rem;
}

.menu-items a:hover {
    color: var(--primary);
}

.btn-call {
    background: var(--gradient);
    color: var(--light) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(240, 165, 0, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(240, 165, 0, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger div {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--light);
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(21, 22, 24, 0.7), rgba(21, 22, 24, 0.85)), url('../img/ispartahavalimanitaksi%20(1).jpg') center/cover;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ddd;
    font-weight: 300;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.4);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(240, 165, 0, 0.5);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--dark);
    color: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--dark);
    position: relative;
}

.section-dark .section-title {
    color: var(--light);
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

/* Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

/* Glassmorphism Cards (Services) */
.glass-card {
    background: var(--light);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    transition: 0.5s ease;
    z-index: -1;
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.glass-card:hover::before {
    height: 100%;
}

.glass-card:hover h3,
.glass-card:hover p,
.glass-card:hover .card-icon i {
    color: var(--light);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.card-icon i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: 0.3s;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    transition: 0.3s;
}

.glass-card p {
    color: var(--text-light);
    transition: 0.3s;
}

/* Pricing Cards */
.price-card {
    background: var(--light);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(240, 165, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient);
    color: white;
    padding: 8px 45px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.price-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.price-header h3 {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 600;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 15px 0;
}

.price-amount span {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text);
    font-size: 1.05rem;
}

.price-features li i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 15px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 1.1rem;
    margin-top: 30px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

/* Tour Cards (Image focus) */
.tour-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transition: 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tour-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}

.tour-card:hover .tour-img {
    transform: scale(1.1);
}

.tour-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    color: var(--light);
}

.tour-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/* Modern Image Blocks */
.image-block {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-block img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.image-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Inner Page Header */
.inner-header {
    height: 45vh;
    background: linear-gradient(rgba(31, 32, 34, 0.8), rgba(31, 32, 34, 0.9)), url('../img/egirdir.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.inner-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Blog */
.blog-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    flex: 1;
}

/* WhatsApp Float */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 100;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.float-wa:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* Footer */
.footer {
    background: var(--darker);
    color: #ecf0f1;
    padding: 80px 0 20px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #a0a0a0;
    transition: 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777;
    font-size: 0.95rem;
}

/* Campaign Section */
.campaign-section {
    background: linear-gradient(135deg, var(--light), #fff8e1);
    position: relative;
    border-radius: 30px;
    margin: 50px auto;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.2);
    overflow: hidden;
}

.campaign-section::before {
    content: '\f0fb';
    font-family: 'FontAwesome';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    color: rgba(240, 165, 0, 0.05);
    z-index: 0;
    transform: rotate(-15deg);
}

.campaign-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 50px;
}

.campaign-text {
    flex: 1;
}

.campaign-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.3);
}

.campaign-title {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.campaign-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
    margin: 25px 0;
    padding: 20px;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 15px;
    display: inline-block;
}

.campaign-features {
    margin: 30px 0;
}

.campaign-features li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.campaign-features li i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.campaign-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Campaign Popup */
.campaign-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.campaign-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.campaign-popup-content {
    background: linear-gradient(135deg, #fff, #fff8e1);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary);
}

.campaign-popup-overlay.active .campaign-popup-content {
    transform: translateY(0) scale(1);
}

.campaign-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    z-index: 10;
}

.campaign-popup-close:hover {
    background: #c0392b;
    transform: rotate(90deg) scale(1.1);
}

/* Testimonials */
.testimonial-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(240, 165, 0, 0.2);
    position: absolute;
    top: 25px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stars {
    color: #f1c40f;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Security Banner */
.security-banner {
    background: linear-gradient(135deg, #111, #222);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
}

.security-banner i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.security-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.security-banner p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1250px) {
    .menu-items {
        gap: 15px;
        font-size: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 850px) {
    .hamburger {
        display: flex;
    }

    .menu-items {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: var(--shadow);
        gap: 30px;
        font-size: 1.2rem;
    }

    .menu-items.active {
        left: 0;
    }

    .logo {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4,
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .price-card {
        padding: 40px 25px;
    }

    .inner-header h1 {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .quote-icon {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .security-banner {
        padding: 40px 0;
    }

    .security-banner h3 {
        font-size: 1.5rem;
    }

    .campaign-content {
        flex-direction: column;
        text-align: center;
    }

    .campaign-section {
        padding: 40px 20px;
        margin: 30px 15px;
    }

    .campaign-features li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 0.95rem;
        gap: 6px;
    }

    .nav-wrapper {
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}