/*
Theme Name: Başarı Turizm Pro
Version: 1.0.0
Description: Premium WordPress & Elementor Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,500&display=swap');
@import url('./variables.css');

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ========== NAVBAR - FIXED TOP ========== */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1010;
    background: linear-gradient(135deg, var(--white) 0%, #fbf9f6 100%);
    border-bottom: 2px solid var(--gold);
    padding: 2px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 90px;
}

.navbar {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.navbar-brand a:hover {
    transform: scale(1.05);
}

.logo-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    letter-spacing: 2px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-top: 2px;
}

/* Menu Wrapper */
.navbar-menu-wrapper {
    display: flex;
}

.navbar-menu {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    display: block;
    transition: color 0.3s ease;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 8px rgba(212, 165, 116, 0.4);
}

.navbar-menu a:hover {
    color: var(--gold);
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Submenu */
.navbar-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 8px;
    min-width: 200px;
    list-style: none;
    margin-top: 10px;
    padding: 12px 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1020;
}

.navbar-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.navbar-menu .sub-menu li a {
    padding: 10px 20px;
    font-size: 12px;
    transition: all 0.2s ease;
}

.navbar-menu .sub-menu li a:hover {
    background: rgba(212, 165, 116, 0.1);
    color: var(--gold);
    padding-left: 24px;
}

/* CTA Button */
.navbar-cta {
    background: linear-gradient(135deg, var(--navy), #1a2a4a);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--navy);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
    z-index: 1008;
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

.mobile-menu-overlay.open {
    display: flex;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 10px 0;
    display: block;
}

.mobile-menu a:hover {
    color: var(--gold-bright);
}

/* ========== HERO SECTION - FULL SCREEN ========== */
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #fef9f3 0%, #faf8f5 50%, #f5f2ed 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-40px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(212, 165, 116, 0.1));
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 28px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2);
}

.badge-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 9vw, 96px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--navy);
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    background: linear-gradient(135deg, var(--gold), #a67c52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 680px;
    margin-bottom: 44px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.04));
    padding: 24px 28px;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    justify-content: flex-end;
}

.hero-stats {
    display: flex;
    gap: 90px;
    margin-top: 44px;
    padding-top: 44px;
    border-top: 2px solid var(--gold);
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-weight: 700;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 8px;
    font-weight: 700;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy), #1a2a4a);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.4);
    color: var(--navy);
    background: var(--white);
}

.btn-secondary {
    border: 2px solid var(--gold);
    color: var(--navy);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), transparent);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 165, 116, 0.4);
}

/* ========== SECTIONS ========== */
.elementor-section {
    padding: 100px 56px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 68px);
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--navy);
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 540px;
    line-height: 1.85;
    margin-bottom: 60px;
    font-weight: 500;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    display: grid;

}
.hizmetler {
  grid-template-columns: repeat(4,1fr);
  gap: 26px;
}
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, var(--navy), #1a2a4a);
    padding: 48px 56px;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
}

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

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-bright);
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-button {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    z-index: 997;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.18);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 36px;
    }
    .elementor-section {
        padding: 80px 36px;
    }
    .hero-container {
        padding: 0 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        padding: 0 20px;
        height: 60px;
    }

    .navbar-wrapper {
        height: 70px;
        padding: 2px 0;
    }

    .navbar-menu-wrapper, .navbar-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-container {
        padding: 0 20px;
        margin-top: 20px;
    }

    .hero-stats {
        gap: 32px;
    }

    .elementor-section {
        padding: 64px 20px;
    }

    .logo-name {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 16px;
    }

    .logo-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .elementor-section {
        padding: 48px 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
