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

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #F4E4A6;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --thy-red: #C70A0C;
    --pegasus-yellow: #FFD100;
    --pegasus-red: #E30613;
    --ajet-blue: #0066B3;
    --sunexpress-blue: #005AA0;
    --sunexpress-orange: #FF6600;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--medium-gray);
    background-color: var(--white);
}

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

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    height: 70px;
    width: auto;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-left: 10px;
}

.brand-highlight {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-gray);
    min-width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    list-style: none;
    margin-top: 10px;
    z-index: 1000;
    pointer-events: auto;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
}

.dropdown-menu a {
    color: var(--white);
    text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: rgba(212, 175, 55, 0.1);
}

.nav-call-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Side Call Button */
.side-call-button {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 15px 10px;
    border-radius: 0 10px 10px 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    z-index: 999;
    box-shadow: 3px 0 15px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.side-call-button:hover {
    padding-left: 15px;
    box-shadow: 5px 0 20px rgba(16, 185, 129, 0.6);
}

.side-call-button svg {
    transform: rotate(-90deg);
}

/* Bottom Fixed Call Button */
.bottom-call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 18px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    z-index: 998;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.bottom-call-button:hover {
    padding: 20px 20px;
    box-shadow: 0 -8px 30px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%), 
                url('images/hero_banner.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #6B7280;
    margin-bottom: 50px;
}

/* Services Section */
.services-section {
    background: var(--light-gray);
}

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

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-large {
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.service-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #6B7280;
    margin-bottom: 20px;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

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

/* Airlines Section */
.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.airline-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-gray);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.airline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.airline-card:hover::before {
    transform: scaleX(1);
}

.airline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.airline-card img {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.airline-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.airline-card p {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 15px;
}

.card-arrow {
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
}

.thy-card:hover::before {
    background: var(--thy-red);
}

.pegasus-card:hover::before {
    background: var(--pegasus-yellow);
}

.ajet-card:hover::before {
    background: var(--ajet-blue);
}

.sunexpress-card:hover::before {
    background: var(--sunexpress-orange);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 18px 40px;
    font-size: 18px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand h3 { display: none;
    font-size: 24px;
    color: white;
}

.footer-brand span {
    color: var(--gold);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.footer-tursab {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    font-size: 14px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-company {
    margin-bottom: 20px;
}

.footer-company strong {
    display: block;
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-company p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-gray);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-call-btn {
        width: auto;
        justify-content: center;
        margin-top: 0;
        padding: 8px 12px;
        font-size: 11px;
        background: transparent;
        border: 1px solid var(--gold);
    }
    
    .nav-call-btn svg {
        display: none;
    }

    .logo {
        height: 40px;
    }

    .brand-name {
        font-size: 22px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-grid,
    .airlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .side-call-button {
        font-size: 10px;
        padding: 12px 8px;
    }

    .bottom-call-button {
        font-size: 16px;
        padding: 15px 15px;
    }

    .bottom-call-button span {
        font-size: 14px;
    }

        margin: 10px;
        max-height: 95vh;
    }

        padding: 30px 20px 20px;
    }

        font-size: 24px;
    }

        padding: 15px;
    }

        font-size: 18px;
    }

        font-size: 14px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-features {
        gap: 20px;
    }

    .feature-item {
        font-size: 14px;
    }

    section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* Smooth Scroll Reset */
html {
    scroll-padding-top: 80px;
}

/* Page Transition */
body {
    animation: pageLoad 0.5s ease;
}

    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
