/* ========================================
   MODERN KURUMSAL PSİKOLOG SİTESİ
   ======================================== */

/* Tıklama vurgusunu kaldır */
* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

/* Temel Ayarlar */
:root {
    --primary-green: #2d5016;
    --secondary-green: #3d6b20;
    --accent-gold: #c9a227;
    --light-gold: #e8d568;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.18);
    --gradient-green: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --gradient-gold: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   NAVBAR STİLLERİ
   ======================================== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-gold);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.4);
}

/* Üst Navbar */
.top-navbar {
    background: var(--primary-green);
    color: white;
    padding: 0.3em 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    margin: 0;
    line-height: 1.2;
}

.top-navbar em {
    font-style: italic;
    font-size: 0.9em;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Ana Navbar */
.main-navbar {
    background: var(--bg-white);
    padding: 0.8em 0;
    position: fixed;
    width: 100%;
    top: 35px;
    left: 0;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    margin: 0;
}

.main-navbar.scrolled {
    top: 0;
    box-shadow: var(--shadow-lg);
}

/* Navbar Container */
.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2em;
}

/* Logo & Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.logo1 {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-green);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.logo1:hover {
    transform: rotate(360deg);
    box-shadow: var(--shadow-md);
}

.navbar-brand .logo a {
    color: var(--primary-green);
    font-size: 1.4em;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.navbar-brand .logo a:hover {
    color: var(--accent-gold);
}

/* Nav Links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2em;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.nav-links li {
    margin: 0;
}

.nav-links li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.7em 1.5em;
    border-radius: 30px;
    background: transparent;
    font-weight: 600;
    font-size: 0.95em;
    transition: var(--transition-smooth);
    display: inline-block;
    white-space: nowrap;
    border: 2px solid transparent;
}

.nav-links li a:hover {
    background: var(--gradient-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

/* Hamburger Menü */
.hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-green);
    z-index: 1002;
    user-select: none;
    position: relative;
}

.hamburger-menu::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 12px;
    background: var(--primary-green);
    transition: var(--transition-smooth);
    z-index: -1;
}

.hamburger-menu:hover::before {
    width: 100%;
    height: 100%;
}

.hamburger-menu:hover {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.hamburger-menu i {
    font-size: 1.5em;
    color: var(--primary-green);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.hamburger-menu:hover i {
    color: white;
}

.hamburger-menu.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: rotate(0deg);
}

.hamburger-menu.active::before {
    width: 100%;
    height: 100%;
}

.hamburger-menu.active i {
    color: white;
    transform: rotate(90deg);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    transition: var(--transition-smooth);
}

.menu-overlay.show {
    display: block;
    opacity: 1;
}

/* Side Menu */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background: var(--bg-white);
    overflow-x: hidden;
    overflow-y: auto;
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 80px 0 30px 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(45, 80, 22, 0.1);
}

.side-menu.open {
    width: 350px;
}

.side-menu a {
    padding: 1.3em 2.5em;
    text-decoration: none;
    font-size: 1.15em;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    border-left: 5px solid transparent;
    font-weight: 600;
    margin-bottom: 3px;
    position: relative;
    overflow: hidden;
}

.side-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(45, 80, 22, 0.1), transparent);
    transition: var(--transition-smooth);
}

.side-menu a:hover {
    background: var(--bg-light);
    border-left-color: var(--primary-green);
    color: var(--primary-green);
    padding-left: 2.8em;
    transform: translateX(-5px);
}

.side-menu a:hover::before {
    width: 100%;
}

.side-menu a i {
    width: 28px;
    color: var(--primary-green);
    font-size: 1.3em;
    transition: var(--transition-smooth);
}

.side-menu a:hover i {
    transform: scale(1.15);
    color: var(--secondary-green);
}

.side-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1em;
    color: var(--text-gray);
    background: var(--bg-white);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.15);
}

.side-menu .close-btn:hover {
    background: var(--gradient-green);
    color: white;
    border-color: var(--secondary-green);
    transform: rotate(90deg) scale(1);
    box-shadow: 0 6px 20px rgba(253, 254, 253, 0.3);
}

/* ========================================
   HERO BÖLÜMÜ - PARALLAX
   ======================================== */

.full-screen {
    min-height: 100vh;
    margin-top: 110px;
    background: url('/images/home.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.full-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(205, 205, 205, 0.05);
    z-index: 0;
}

.full-screen .overlay {
    display: none;
}

.full-screen .content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3em;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.full-screen h1 {
    font-size: 4.5em;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0 0 0.8em 0;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.full-screen p {
    font-size: 1.4em;
    color: #1a1a1a;
    margin: 0 0 2em 0;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8);
}

.full-screen .buttons {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    flex-wrap: wrap;
}

.full-screen .btn {
    padding: 1em 2.5em;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.full-screen .btn-primary {
    background: var(--gradient-green);
    color: white;
}

.full-screen .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.4);
}

.full-screen .btn-secondary {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: 2px solid var(--accent-gold);
}

.full-screen .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 6em 2em;
    position: relative;
}

.section .content {
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 3em;
    color: var(--primary-green);
    text-align: center;
    margin: 0 0 1em 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 1em;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* ========================================
   HAKKIMDA BÖLÜMÜ
   ======================================== */

.about-section {
    background: var(--bg-white);
    padding: 8em 2em;
}

.about-section .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section .about-text {
    padding: 2em;
}

.about-section .about-text p {
    font-size: 1.15em;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
    margin: 0;
}

.about-section .about-image {
    position: relative;
    padding: 2em;
}

.about-section .about-image::before {
    display: none;
}

.about-section .about-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.about-section .about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   İLETİŞİM BÖLÜMÜ
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8em 2em;
}

.contact-section .contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3em;
    max-width: 1100px;
    margin: 3em auto 0;
}

/* Form Container */
.form-container {
    background: var(--bg-white);
    padding: 2em;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-container h3 {
    font-size: 1.6em;
    color: var(--primary-green);
    margin: 0 0 1.5em 0;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.form-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.2em;
}

.form-group label {
    display: block;
    font-size: 0.95em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4em;
    transition: var(--transition-smooth);
}

.form-group label:hover {
    color: var(--primary-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8em 1.1em;
    font-size: 0.95em;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: var(--transition-smooth);
    font-family: inherit;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(45, 80, 22, 0.1);
    background: var(--bg-white);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-green);
    background: var(--bg-white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

form button {
    width: 100%;
    padding: 1em;
    font-size: 1em;
    font-weight: 700;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

form button:hover::before {
    width: 300px;
    height: 300px;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 80, 22, 0.4);
}

form button:active {
    transform: translateY(0);
}

#formMessage {
    text-align: center;
    margin-top: 1em;
    font-size: 1em;
    font-weight: 600;
    padding: 1em;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

#formMessage.success {
    background: rgba(45, 80, 22, 0.1);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

#formMessage.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* İletişim Linkleri - Modern Tasarım */
.contact-info-container a {
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2em 1.8em;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    margin-bottom: 1em;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.contact-info-container a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.contact-info-container a:hover:not(.phone-link):not(.email-link):not(.whatsapp-link) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info-container a i {
    font-size: 1.5em;
    transition: var(--transition-smooth);
}

.contact-info-container a:hover i {
    transform: scale(1.1);
}

/* WhatsApp özel stilleri */
.contact-info-container a.whatsapp-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
}

.contact-info-container a.whatsapp-link::before {
    background: white;
    opacity: 0.3;
}

.contact-info-container a.whatsapp-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white !important;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.contact-info-container a.whatsapp-link:hover::before {
    width: 100%;
    opacity: 0.2;
}

.contact-info-container a.whatsapp-link i {
    color: white;
}

/* Telefon özel stilleri */
.contact-info-container a.phone-link {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    border: none;
}

.contact-info-container a.phone-link::before {
    background: white;
    opacity: 0.3;
}

.contact-info-container a.phone-link:hover {
    background: linear-gradient(135deg, #1e3d0e 0%, var(--primary-green) 100%);
    color: white !important;
    box-shadow: 0 8px 28px rgba(45, 80, 22, 0.4);
}

.contact-info-container a.phone-link:hover::before {
    width: 100%;
    opacity: 0.2;
}

.contact-info-container a.phone-link i {
    color: white;
}

.contact-info-container a.phone-link:hover i {
    color: white !important;
}

/* Email özel stilleri */
.contact-info-container a.email-link {
    background: var(--bg-white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.contact-info-container a.email-link::before {
    background: var(--primary-green);
}

.contact-info-container a.email-link:hover {
    background: var(--primary-green);
    color: white !important;
    box-shadow: 0 8px 28px rgba(45, 80, 22, 0.3);
}

.contact-info-container a.email-link:hover::before {
    width: 100%;
    opacity: 0.3;
}

.contact-info-container a.email-link i {
    color: var(--primary-green);
}

.contact-info-container a.email-link:hover i {
    color: white !important;
}

/* Social Container içindeki WhatsApp butonu */
.social-container a.whatsapp-link {
    background: var(--gradient-green) !important;
    color: white !important;
    border: none !important;
}

.social-container a.whatsapp-link::before {
    background: white;
    opacity: 0.3;
}

.social-container a.whatsapp-link:hover {
    background: var(--secondary-green) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(45, 80, 22, 0.5);
}

.social-container a.whatsapp-link:hover::before {
    width: 100%;
    opacity: 0.2;
}

.social-container a.whatsapp-link i {
    color: white !important;
}

.social-container a.whatsapp-link:hover i {
    color: white !important;
}

/* İletişim Bölümü Stilleri */
.contact-info-container h3,
.social-container h3 {
    font-size: 1.2em;
    color: var(--text-dark);
    margin: 0 0 1.2em 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--bg-light);
    position: relative;
}

.contact-info-container h3::after,
.social-container h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.contact-info-container h3 i,
.social-container h3 i {
    color: var(--primary-green);
    font-size: 1.1em;
}

/* Sosyal Medya Bölümü */
.social-contact-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.social-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.social-container a {
    padding: 1.2em 1.8em;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.social-container a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: white;
    opacity: 0.3;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.social-container a:hover:not(.whatsapp-link) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-container a:hover::before {
    width: 100%;
    opacity: 0.2;
}

.social-container a i {
    font-size: 1.5em;
    color: white;
    transition: var(--transition-smooth);
}

.social-container a:hover i {
    transform: scale(1.1);
}

.social-container a.whatsapp {
    background: var(--gradient-green);
    color: white;
}

.social-container a.whatsapp:hover {
    background: var(--secondary-green);
    box-shadow: 0 8px 28px rgba(45, 80, 22, 0.5);
}

/* Info Container */
.info-container {
    background: var(--bg-white);
    padding: 3em;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.info-container h3 {
    font-size: 1.8em;
    color: var(--primary-green);
    margin: 0 0 1.5em 0;
    font-weight: 700;
}

.info-container h3 i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.info-container h3 {
    font-size: 1.8em;
    color: var(--primary-green);
    margin: 0 0 1em 0;
    font-weight: 700;
}

.info-container h3 i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.info-container h3 {
    font-size: 1.8em;
    color: var(--primary-green);
    margin: 0 0 1.5em 0;
    font-weight: 700;
}

.social-contact-container {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.contact-info-container h3,
.social-container h3 {
    font-size: 1.3em;
    color: var(--text-dark);
    margin: 0 0 1em 0;
    font-weight: 600;
}

.contact-info-container p {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    color: var(--text-gray);
    margin: 0.8em 0;
    text-decoration: none;
}

.contact-info-container a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.contact-info-container a:hover {
    color: var(--primary-green);
}

.contact-info-container i {
    font-size: 1.4em;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.contact-info-container a:hover i {
    transform: scale(1.2);
}

.social-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.social-container a {
    padding: 1em 1.5em;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.social-container a.whatsapp {
    background: #25D366;
}

.social-container a:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   DESTEK BUTONU
   ======================================== */

#support {
    position: fixed;
    bottom: 2.5em;
    right: 2.5em;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#support button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-green);
    color: white;
    border: none;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 8px 24px rgba(45, 80, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#support button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(45, 80, 22, 0.5);
}

#support button i {
    font-size: 1.5em;
    transition: var(--transition-smooth);
}

#support button span {
    display: none;
}

#support button.rotate {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

#support button.rotate i {
    transform: rotate(0deg);
}

#support-links {
    position: absolute;
    bottom: 90px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-bounce);
}

#support-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#support-links a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

#support-links a i {
    font-size: 1.8em;
}

#support-links a:nth-child(1) {
    background: #25D366;
}

#support-links a:nth-child(2) {
    background: var(--primary-green);
}

#support-links a:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
}

#support-links a:hover:nth-child(1) {
    background: #20bd5a;
}

#support-links a:hover:nth-child(2) {
    background: var(--secondary-green);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2em;
    font-size: 0.95em;
    margin-top: 4em;
}

/* ========================================
   ANIMASYONLAR
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-down {
    opacity: 0;
    animation: slideDown 1s ease-out forwards;
}

.slide-up {
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE TİZARIM
   ======================================== */

@media only screen and (max-width: 1024px) {
    .full-screen h1 {
        font-size: 3.5em;
    }

    .full-screen p {
        font-size: 1.2em;
    }

    .about-section .about-container {
        grid-template-columns: 1fr;
        gap: 3em;
    }

    .contact-section .contact-container {
        grid-template-columns: 1fr;
        gap: 2em;
    }
}

@media only screen and (max-width: 768px) {
    .top-navbar {
        padding: 0.4em 0;
    }

    .top-navbar em {
        font-size: 0.8em;
    }

    .navbar-container {
        padding: 0 1.5em;
    }

    .main-navbar {
        top: 30px;
        padding: 0.8em 0;
    }

    .logo1 {
        width: 45px;
        height: 45px;
    }

    .navbar-brand .logo a {
        font-size: 1.1em;
    }

    .nav-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .full-screen {
        min-height: 100vh;
        margin-top: 100px;
        background-attachment: scroll;
    }

    .full-screen::before {
        background: rgba(255, 255, 255, 0.92);
    }

    .full-screen h1 {
        font-size: 2.5em;
        margin-bottom: 0.5em;
        color: var(--primary-green);
        text-shadow: 2px 2px 12px rgba(255, 255, 255, 1);
    }

    .full-screen p {
        font-size: 1em;
        margin-bottom: 1.5em;
        color: #1a1a1a;
        font-weight: 600;
        text-shadow: 1px 1px 8px rgba(255, 255, 255, 1);
    }

    .full-screen .content {
        padding: 2em 1.5em;
    }

    .full-screen .btn {
        padding: 0.8em 1.8em;
        font-size: 1em;
    }

    .section {
        padding: 4em 1.5em;
    }

    .section h2 {
        font-size: 2.2em;
    }

    .about-section,
    .contact-section {
        padding: 5em 1.5em;
    }

    .form-container,
    .info-container {
        padding: 1.8em 1.5em;
    }

    .info-container h3 {
        font-size: 1.4em;
        margin-bottom: 1.2em;
    }

    .contact-info-container h3,
    .social-container h3 {
        font-size: 1.15em;
    }

    .contact-info-container a,
    .social-container a {
        padding: 1em 1.4em;
        font-size: 0.95em;
    }

    .contact-info-container a i,
    .social-container a i {
        font-size: 1.3em;
    }

    .social-contact-container {
        gap: 1.5em;
    }

    #support {
        bottom: 1.5em;
        right: 1.5em;
    }

    #support button {
        width: 55px;
        height: 55px;
    }

    #support button i {
        font-size: 1.3em;
    }

    #support-links a {
        width: 50px;
        height: 50px;
    }

    #support-links a i {
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 480px) {
    .top-navbar em {
        font-size: 0.7em;
    }

    .navbar-brand .logo a {
        font-size: 1em;
    }

    .logo1 {
        width: 40px;
        height: 40px;
    }

    .hamburger-menu {
        width: 45px;
        height: 45px;
    }

    .full-screen h1 {
        font-size: 2em;
    }

    .full-screen p {
        font-size: 0.95em;
    }

    .full-screen {
        min-height: 100vh;
        margin-top: 95px;
    }

    .full-screen::before {
        background: rgba(48, 48, 48, 0.18);
    }

    .full-screen h1 {
        color: var(--primary-green);
        text-shadow: 2px 2px 12px rgba(255, 255, 255, 1);
    }

    .full-screen p {
        color: #1a1a1a;
        font-weight: 600;
        text-shadow: 1px 1px 8px rgba(255, 255, 255, 1);
    }

    .section h2 {
        font-size: 1.8em;
    }

    .section h2::after {
        width: 70px;
        height: 3px;
    }

    .about-section .about-container {
        gap: 2em;
    }

    .form-container h3 {
        font-size: 1.3em;
    }

    .form-group label {
        font-size: 0.9em;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75em 0.9em;
        font-size: 0.9em;
    }

    form button {
        padding: 0.9em;
        font-size: 0.95em;
    }

    .info-container h3 {
        font-size: 1.2em;
        margin-bottom: 1em;
    }

    .contact-info-container h3,
    .social-container h3 {
        font-size: 1.05em;
        margin-bottom: 0.8em;
    }

    .contact-info-container a,
    .social-container a {
        padding: 0.9em 1.2em;
        font-size: 0.9em;
        gap: 10px;
    }

    .contact-info-container a i,
    .social-container a i {
        font-size: 1.2em;
    }

    .social-contact-container {
        gap: 1.2em;
    }

    #support button {
        width: 50px;
        height: 50px;
    }
}
