/* ================================================
   ANKARA GAYRÄ°MENKUL GÃœNLERÄ° 2026
   Premium Design System â€” Light + Dark Hero Hybrid
   ================================================ */

/* ---- Custom Properties ---- */
:root {
    /* Colors */
    --gold: #C8A24E;
    --gold-light: #E8D5A0;
    --gold-dark: #A6832A;
    --dark: #0F1117;
    --dark-card: #181B23;
    --dark-surface: #1E2029;
    --dark-border: rgba(255, 255, 255, 0.08);
    --light-bg: #F7F8FA;
    --white: #FFFFFF;
    --text-primary: #1A1D28;
    --text-secondary: #6B7080;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted-light: rgba(255, 255, 255, 0.55);

    /* Typography */
    --font: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-py: clamp(5rem, 10vw, 8rem);

    /* Effects */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 8px 32px rgba(200, 162, 78, 0.25);
    --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ---- Utilities ---- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.text-gold {
    color: var(--gold);
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: 60px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 162, 78, 0.4);
}

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

.btn--outline:hover {
    background: var(--text-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__nav-list {
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 0.25rem 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

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

.header__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 17, 23, 0.7) 0%, rgba(15, 17, 23, 0.4) 40%, rgba(15, 17, 23, 0.8) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(200, 162, 78, 0.08) 0%, transparent 60%);
    z-index: 2;
}

/* Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    10% {
        opacity: 0.6;
        transform: scale(1);
    }

    90% {
        opacity: 0.1;
    }

    100% {
        opacity: 0;
        transform: translateY(-400px) scale(0);
    }
}

.hero__content {
    position: relative;
    z-index: 10;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: rgba(200, 162, 78, 0.12);
    border: 1px solid rgba(200, 162, 78, 0.25);
    border-radius: 60px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.hero__badge i {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted-light);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Countdown Timer */
.countdown {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--dark-border);
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 90px;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 162, 78, 0.15);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.countdown__item:hover {
    background: rgba(200, 162, 78, 0.08);
    border-color: rgba(200, 162, 78, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200, 162, 78, 0.15);
}

.countdown__number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown__separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    padding-bottom: 1.5rem;
    animation: separatorPulse 1s ease-in-out infinite;
}

@keyframes separatorPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ================================================
   SECTIONS (Light + Dark)
   ================================================ */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section--light {
    background: var(--light-bg);
}

.section--dark {
    background: var(--dark);
    color: var(--text-light);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(200, 162, 78, 0.08);
    border: 1px solid rgba(200, 162, 78, 0.15);
    border-radius: 60px;
}

.section__tag--gold {
    background: rgba(200, 162, 78, 0.15);
    border-color: rgba(200, 162, 78, 0.3);
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.section__title--light {
    color: var(--white);
}

.section__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   FEATURE CARDS (HakkÄ±nda)
   ================================================ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(200, 162, 78, 0.1), rgba(200, 162, 78, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ================================================
   SCOPE CARDS (Etkinlik KapsamÄ± - Dark Section)
   ================================================ */
.scope-slider {
    width: 100%;
    padding-bottom: 3rem !important; /* Make room for pagination */
}

.scope-slider .swiper-wrapper {
    align-items: stretch;
}

.scope-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}

.scope-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.scope-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
}

.scope-card:hover {
    border-color: rgba(200, 162, 78, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.scope-card__number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(200, 162, 78, 0.2), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.scope-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.scope-card__desc {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.scope-card__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.scope-card__list i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

/* Highlight card */
.scope-card--highlight {
    border-color: rgba(200, 162, 78, 0.3);
    background: linear-gradient(135deg, var(--dark-card), rgba(200, 162, 78, 0.05));
}

.scope-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(200, 162, 78, 0.12);
    padding: 0.35rem 1rem;
    border-radius: 60px;
    border: 1px solid rgba(200, 162, 78, 0.25);
}

.scope-card__meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--dark-border);
}

.scope-card__meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gold-light);
}

.scope-card__meta i {
    width: 14px;
    height: 14px;
}

/* ================================================
   PRICING (Sponsorluk - Light Section)
   ================================================ */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card--premium {
    background: var(--dark);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card--premium:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 20px 60px rgba(200, 162, 78, 0.35);
}

.pricing-card__ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0.45rem;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-card__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card--premium .pricing-card__header {
    border-bottom-color: var(--dark-border);
    padding-top: 1.5rem;
}

.pricing-card__header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card--premium .pricing-card__header h3 {
    color: var(--white);
}

.pricing-card__amount {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-card--premium .pricing-card__amount {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card__currency {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 4px;
    color: var(--text-secondary);
}

.pricing-card--premium .pricing-card__currency {
    color: var(--text-muted-light);
}

.pricing-card__currency small {
    font-weight: 400;
    font-size: 0.8rem;
}

.pricing-card__features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    line-height: 1.35;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

.pricing-card--premium .pricing-card__features li {
    color: var(--text-light);
}

.list-dot {
    width: 8px !important;
    height: 8px !important;
    fill: var(--gold);
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.35rem !important;
}

.pricing-card__features i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pricing-card__feature--disabled {
    opacity: 0.4;
}

.pricing-card__feature--disabled i {
    color: var(--text-secondary) !important;
}

.pricing__note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2.5rem;
    font-style: italic;
}

/* ================================================
   CTA Section
   ================================================ */
.section--cta {
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.section--cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 162, 78, 0.1), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-block {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-block__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.cta-block__desc {
    font-size: 1.1rem;
    color: var(--text-muted-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-block__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 4rem 0 2rem;
    color: var(--text-muted-light);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__tagline {
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer__col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer__col ul li {
    margin-bottom: 0.6rem;
}

.footer__col ul li a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer__col p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer__col strong {
    color: var(--text-light);
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__contact i {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.footer__contact a {
    color: var(--gold-light);
}

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

.footer__bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ================================================
   ANIMATIONS
   ================================================ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Counter animation on stat numbers */
.hero__stat-number {
    transition: var(--transition);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .pricing {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .pricing-card--premium {
        transform: none;
    }

    .pricing-card--premium:hover {
        transform: translateY(-6px);
    }

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

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .header__nav.active {
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header__nav-link {
        font-size: 1.2rem;
    }

    .header__hamburger {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown__item {
        min-width: 70px;
        padding: 1rem 0.75rem;
    }

    .countdown__number {
        font-size: 2rem;
    }

    .countdown__separator {
        font-size: 1.8rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__scroll {
        display: none;
    }

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

    .pricing {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-block__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================================
   FORM STYLES (katilimci-kayit.php)
   ================================================ */
.page-header {
    padding-top: 150px;
    padding-bottom: 50px;
    background: var(--dark);
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    color: var(--text-muted-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 800px;
    margin: -30px auto 5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(200, 162, 78, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 162, 78, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted-light);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.checkbox-label:hover {
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.checkbox-label input[type="radio"] {
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked,
.checkbox-label input[type="radio"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
}

.form-submit {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 2rem 1.5rem;
        margin: -20px 1rem 3rem;
    }

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

/* ================================================
   MODAL STYLES
   ================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.98);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.is-active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    margin-right: -0.5rem;
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.modal-body h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.95rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* ================================================
   Ýletiþim (Contact) Sayfasý
   ================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 1rem;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-info__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.contact-info__content h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.contact-info__content p, .contact-info__content a {
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info__company h4 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.contact-info__company p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    margin: 0;
    padding: 3rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info {
        padding-right: 0;
    }
    .contact-form-wrapper {
        padding: 2rem;
    }
}
.footer__grid {
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr !important;
}

.footer__socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted-light);
    transition: var(--transition-fast);
}
.footer__socials a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}
.footer__socials i {
    width: 18px;
    height: 18px;
}

.footer__newsletter {
    display: flex;
    margin-top: 1rem;
    position: relative;
}
.footer__newsletter input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    color: var(--white);
    outline: none;
    transition: var(--transition-fast);
}
.footer__newsletter input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}
.footer__newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--gold);
    border: none;
    width: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition-fast);
}
.footer__newsletter button:hover {
    background: var(--gold-light);
}

@media (max-width: 992px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 576px) {
    .footer__grid {
        grid-template-columns: 1fr !important;
    }
}
.footer__socials svg, .footer__socials i {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}

/* ==========================================================================
   Sponsorship Logo Arrangement (Logo Dizilimi)
   ========================================================================== */
.logo-arrange {
    background: #0B0C10; /* Very dark background */
    position: relative;
    padding: 6rem 0;
}
.logo-arrange-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
}
.logo-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.logo-col-header {
    text-align: center;
    color: var(--gold);
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 1.2rem 0;
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(200, 162, 78, 0.4);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.logo-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(200, 162, 78, 0.3);
    border-radius: 12px;
    width: 100%;
    height: 85px;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.logo-box:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(200, 162, 78, 0.1), inset 0 0 20px rgba(0,0,0,0.5);
}
.logo-box--large {
    height: 220px;
}
.logo-box--medium {
    height: 150px;
}
