html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    /* Logo her zaman üstte kalsın */
}

.navbar .logo img {
    height: 40px;
    /* Logo height adjustment */
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    z-index: 1002;
    /* Menü ikonunun en üstte olması lazım */
}

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

.navbar .nav-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.social-links a:hover {
    color: #aaa;
}

/* Mobil Menü */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        /* Logo ve Toggle'ın altında, diğer her şeyin üstünde */
        gap: 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .navbar .nav-links {
        flex-direction: column;
    }

    .navbar .nav-links a {
        font-size: 1.5rem;
        margin: 15px 0;
        color: #fff;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 150px;
    /* Space for header */
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    text-align: center;
    z-index: 10;
    max-width: 600px;
    margin-bottom: 40px;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-wrapper p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;

    /* Animated Gradient Border */
    border: 2px solid transparent;
    background-image: linear-gradient(#000, #000), linear-gradient(90deg, #24C6DC, #FF4D6D, #24C6DC);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 200% 100%;

    transition: transform 0.3s ease;
    animation: borderAnimation 3s linear infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@keyframes borderAnimation {
    to {
        background-position: 0 0, 200% center;
    }
}

.play-icon {
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Visual Container */
.visual-container {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Big Background Logo */
.big-logo-bg {
    position: absolute;
    width: 100%;
    max-width: 1400px;
    /* Adjust based on logo aspect ratio */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    /* Adjust opacity to taste */
    pointer-events: none;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    z-index: 5;
    width: 300px;
    height: 600px;
    background: #111;
    border-radius: 40px;
    border: 8px solid #333;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    /* Push it down slightly to overlap text properly */
    margin-top: 50px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Icons Container */
.icon-wrapper {
    position: absolute;
    z-index: 6;
    /* Above phone */
    width: 80px;
    height: 80px;
}

.floating-icon {
    width: 100%;
    height: 100%;
    font-size: 4rem;
    /* Large icon size */
    color: #fff;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    animation: floatIcon 4s ease-in-out infinite;

    /* Glassmorphism / 3D-ish placeholder effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.apple-wrapper {
    top: 40%;
    left: 50%;
    margin-left: -280px;
    margin-top: -40px;
    /* -50% of height */
    animation-delay: 0s;
}

.google-wrapper {
    top: 60%;
    left: 50%;
    margin-left: 200px;
    margin-top: -40px;
    animation-delay: 2s;
}

/* Note: animation-delay for floatIcon should be on the inner element */
.floating-icon.apple-inner {
    animation-delay: 0s;
}

.floating-icon.google-inner {
    animation-delay: 2s;
}

.floating-icon.mahal-inner {
    animation-delay: 1s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* If user replaces with actual images later */
.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mahal Icon specific */
.mahal-wrapper {
    top: 20%;
    left: 50%;
    margin-left: 180px;
    margin-top: -40px;
}

/* Ensure image fits well */
.mahal-icon img {
    padding: 10px;
}

/* App Showcase Section */
.app-showcase {
    background: radial-gradient(circle at top right, #d6f1ff 0%, #f9f7f1 45%, #f4f1eb 100%);
    color: #1d1d1f;
    padding: 140px 0;
}

.app-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.app-top {
    display: flex;
    align-items: center;
    gap: 60px;
}

.app-content {
    flex: 1;
}

.app-logo-shell {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}

.app-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.app-content h2 {
    font-size: 3.4rem;
    margin-bottom: 8px;
    color: #0f0f11;
}

.app-content h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #3f3f45;
    margin-bottom: 20px;
}

.app-content p {
    color: #5c5c63;
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0d0d0f;
    color: #fff;
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.app-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #2d2d30;
}

.stat-item strong {
    font-size: 1.2rem;
    color: #0b0b0f;
}

.stat-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.stat-label {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(13, 13, 15, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.app-visuals {
    flex: 1;
    position: relative;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    position: absolute;
    width: 280px;
    height: 560px;
    border-radius: 46px;
    border: 8px solid #fbfbfc;
    background: #000;
    overflow: hidden;
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.35);
}

.mockup-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-card.primary {
    transform: rotate(-14deg) translate(-55px, 40px);
    z-index: 2;
}

.mockup-card.secondary {
    transform: rotate(18deg) translate(70px, -30px);
    z-index: 1;
}

/* Grid Yapısı */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Genel Kart Stili */
.feature-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 500px;
    /* Görseldeki gibi uzun kartlar */
    transition: transform 0.3s ease;
    color: white;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 40px 30px;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Kart 1: Harita (Turkuaz/Mavi) */
.card-map {
    background: linear-gradient(135deg, #2c777e 0%, #4ca1af 100%);
    /* color: #000000; kaldırıldı, default white */
}

.visual-bottom-left img {
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 55%;
    /* Daha küçük, yarısını kaplayacak şekilde */
    transform: rotate(5deg);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

/* Kart 2: Video (Yeşil - Ortadaki) */
.card-video {
    background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
    /* Canlı yeşil/mavi geçiş */
}

.visual-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Yazıların seçilebilir kalması için */
}

.visual-left .bg-user-left {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70%;
    /* 3. kartla aynı yükseklik oranı */
    object-fit: contain;
    object-position: bottom left;
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
}

/* Eski .visual-center stilleri gerekirse silinebilir veya kalabilir */
.visual-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
}

.visual-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Ortadaki beyaz çizgi efekti */
.scan-line {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px white;
}

/* Kart 3: Bildirim (Açık Yeşil/Sarımsı) */
.card-notify {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.visual-right .bg-user {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 70%;
    object-fit: contain;
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
    /* Üste doğru soft geçiş */
}

/* Yüzen Bildirim Kartı */
.floating-notification {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.notif-icon {
    background: #ff4757;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notif-text {
    display: flex;
    flex-direction: column;
}

.notif-text strong {
    color: #333;
    font-size: 0.95rem;
}

.notif-text span {
    color: #666;
    font-size: 0.8rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .app-showcase {
        padding: 90px 0 70px;
    }

    .app-container {
        width: min(100%, 92%);
    }

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

    .app-logo-shell {
        margin: 0 auto 24px;
    }

    .app-content h2 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .app-content h3 {
        font-size: 1.35rem;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .app-stats {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 16px;
        padding-top: 20px;
    }

    .stat-item {
        justify-content: center;
    }

    .app-visuals {
        height: auto;
        min-height: 380px;
        margin-top: 30px;
    }

    .mockup-card {
        width: 210px;
        height: 440px;
    }

    .mockup-card.primary {
        transform: rotate(-6deg) translate(-12px, 22px);
    }

    .mockup-card.secondary {
        transform: rotate(9deg) translate(28px, -6px);
    }

    .modern-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        height: auto;
        min-height: 360px;
    }

    .feature-card .card-content {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .app-showcase {
        padding: 70px 0 50px;
    }

    .app-content h2 {
        font-size: 2.1rem;
    }

    .app-content h3 {
        font-size: 1.2rem;
    }

    .app-stats {
        grid-template-columns: 1fr;
    }

    .download-btn {
        font-size: 0.95rem;
    }

    .app-visuals {
        min-height: 320px;
    }

    .mockup-card {
        width: 180px;
        height: 360px;
    }

    .mockup-card.primary {
        transform: rotate(-4deg) translate(-6px, 18px);
    }

    .mockup-card.secondary {
        transform: rotate(6deg) translate(16px, -8px);
    }

    .feature-card {
        min-height: 320px;
    }
}

.partner-about-section {
    background: #000000;
    /* Dark background */
    color: #ffffff;
    /* Light text */
    padding: 140px 0 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separator */
}

.partner-container {
    width: min(1100px, 90%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}

.partner-content h2 {
    font-size: clamp(2.6rem, 7vw, 5.1rem);
    line-height: 1.1;
    margin: 18px 0;
    font-weight: 700;
    /* Ensure gradient text still works on dark */
}

.partner-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.35rem;
    color: #888888;
    /* Lighter grey for dark mode */
    text-transform: uppercase;
}

.highlighted-text {
    background: linear-gradient(90deg, #27c7d8, #12a8f6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.partner-description {
    max-width: 680px;
    margin: 0 auto 32px;
    color: #a1a1a6;
    /* Light grey text */
    font-size: 1.15rem;
    line-height: 1.7;
}

.partner-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-btn {
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.partner-btn.primary {
    background: #ffffff;
    /* White button */
    color: #000000;
    /* Black text */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    /* Glow effect */
}

.partner-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.partner-btn.secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.partner-btn:hover {
    transform: translateY(-4px);
}

.partner-trust {
    width: 100%;
}

.partner-label {
    font-size: 0.85rem;
    letter-spacing: 0.4rem;
    color: #666;
    /* Darker grey */
    margin-bottom: 26px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.logo-placeholder {
    height: 80px;
    width: 160px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: translateY(-3px);
}

.logo-placeholder img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make logos WHITE */
    opacity: 0.5;
    transition: opacity 0.3s;
}

.logo-placeholder:hover img {
    opacity: 1;
}

/* Category Section */
.category-section {
    margin-top: 80px;
    text-align: center;
}

.category-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
    font-weight: 700;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.category-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
    color: #444;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-item i {
    font-size: 1.4rem;
    color: #24C6DC;
    min-width: 30px;
    text-align: center;
}

@media (max-width: 1100px) {
    .app-top {
        flex-direction: column;
        text-align: center;
    }

    .app-stats {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .stat-item {
        justify-content: center;
    }

    .app-visuals {
        width: 100%;
        height: 520px;
    }

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

    .partner-actions {
        flex-direction: column;
    }
}

/* =========================================
   CONTACT SECTION (Modern)
   ========================================= */
.contact-section {
    background-color: #000;
    padding: 140px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Effect (Optional subtle glow) */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(36, 198, 220, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side: Contact Info */
.contact-info .eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.3rem;
    color: #24C6DC;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.contact-info .description {
    color: #a1a1a6;
    line-height: 1.7;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 500px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .icon-box {
    background: rgba(36, 198, 220, 0.1);
    border-color: #24C6DC;
    color: #24C6DC;
    transform: translateY(-3px);
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.info-text p,
.info-text a {
    color: #a1a1a6;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.2s;
}

.info-text a:hover {
    color: #24C6DC;
}

/* Right Side: Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #24C6DC;
    box-shadow: 0 0 0 4px rgba(36, 198, 220, 0.1);
}

/* Resize fix for textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    margin-top: 10px;
    padding: 18px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg, #24C6DC, #12a8f6, #24C6DC);
    background-size: 200% 100%;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Quicksand', sans-serif;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(36, 198, 220, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(36, 198, 220, 0.4);
}

.submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover i {
    transform: translateX(5px) translateY(-5px) scale(1.2);
}

/* Link Hover Animation */
.info-text a {
    position: relative;
    display: inline-block;
}

.info-text a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #24C6DC;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.info-text a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Icon Pulse Effect */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 198, 220, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(36, 198, 220, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(36, 198, 220, 0);
    }
}

.info-item:hover .icon-box {
    background: rgba(36, 198, 220, 0.1);
    border-color: #24C6DC;
    color: #24C6DC;
    transform: translateY(-3px);
    animation: pulse-border 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .info-items {
        align-items: center;
        text-align: left;
        /* İkon ve metin hizalaması için */
    }

    .info-item {
        width: 100%;
        max-width: 400px;
        /* Çok yayılmaması için */
        margin: 0 auto;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .info-item {
        flex-direction: column;
        /* Mobilde alt alta */
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .info-item .icon-box {
        margin-bottom: 5px;
    }
}

/* =========================================
   SITE FOOTER (White Theme)
   ========================================= */
.site-footer {
    background-color: #ffffff;
    color: #1d1d1f;
    padding: 100px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr 3fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Footer Logo Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 40px;
    width: auto;

}

/* Navigation Columns */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

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

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: #6e6e73;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.footer-column ul li a:hover {
    color: #000;
    text-decoration: underline;
}

/* Newsletter Section */
.footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.footer-newsletter p {
    color: #6e6e73;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 300px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: #000;
}

.newsletter-form button {
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.newsletter-form button:hover {
    background-color: #333;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #86868b;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social a {
    color: #6e6e73;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #000;
}

.footer-social .separator {
    color: #d2d2d7;
}

.footer-social i {
    font-size: 1.1rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-nav {
        justify-content: center;
        text-align: center;
    }

    .footer-newsletter {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}