/* 
 * Semay Premium Agency - Ana Stil Dosyası (Design System & Core Base)
 * Lüks, Koyu Tema, Glassmorphism ve Fütüristik Tasarım Dili
 */

/* ==========================================================================
   1. Reset & Base Variables
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color, #050508);
    color: #E0E0E6;
    font-family: var(--font-primary, 'Outfit', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

ul, ol {
    list-style: none;
}

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

/* ==========================================================================
   2. Typography & Core Colors
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary, #00F0FF) 0%, var(--primary, #7000FF) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==========================================================================
   3. Buttons & UI Elements
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary, #7000FF), var(--secondary, #00F0FF));
    color: #FFFFFF;
    box-shadow: 0 8px 25px var(--glow-color, rgba(112, 0, 255, 0.3));
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--secondary, #00F0FF), var(--primary, #7000FF));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--glow-color, rgba(112, 0, 255, 0.5));
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #050508;
}

.btn-full {
    width: 100%;
}

/* Glassmorphic Containers */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.premium-border::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary, #00F0FF), transparent);
    opacity: 0.5;
}

/* Section Shared Utilities */
.section-padding {
    padding: 120px 0;
}

.section-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary, #00F0FF);
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-desc {
    color: #A0A0AB;
    max-width: 600px;
    margin: 0 auto 50px;
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(5, 5, 8, 0.2);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-img {
    height: 38px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #A0A0AB;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: #FFFFFF;
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    background: rgba(12, 12, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 24px;
    color: #A0A0AB;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; max-width: 400px;
    height: 100vh;
    background: #08080C;
    z-index: 1001;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-inner {
    padding: 100px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    padding: 15px 0;
    color: #A0A0AB;
}

.mobile-nav-link:hover {
    color: #FFFFFF;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-glow-sphere {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--glow-color, rgba(112, 0, 255, 0.2)) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px; height: 8px;
    background-color: var(--secondary, #00F0FF);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary, #00F0FF);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #A0A0AB;
    max-width: 750px;
    margin: 0 auto 40px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #A0A0AB;
}

.scroll-line {
    width: 2px; height: 40px;
    background: linear-gradient(to bottom, var(--secondary, #00F0FF), transparent);
    animation: scrollLine 2s infinite ease-in-out;
}

/* ==========================================================================
   6. Sections Shared Grids
   ========================================================================== */
/* Stats Grid */
.stats-section {
    position: relative;
    margin-top: -60px;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
}

.stat-label {
    color: #A0A0AB;
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px; height: 60px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon-wrapper {
    width: 70px; height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary, #00F0FF);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-glow {
    position: absolute;
    width: 100%; height: 100%;
    background: var(--secondary, #00F0FF);
    opacity: 0.2;
    filter: blur(15px);
    border-radius: inherit;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-desc {
    color: #A0A0AB;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #FFFFFF;
}

.service-link i {
    transition: transform 0.3s ease;
    color: var(--secondary, #00F0FF);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.card-bg-accent {
    position: absolute;
    top: 0; right: 0; width: 150px; height: 150px;
    background: radial-gradient(circle, var(--glow-color, rgba(112, 0, 255, 0.15)) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    group: portfolio;
}

.project-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(5,5,8,0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-btn-circular {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #050508;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-btn-circular {
    transform: translateY(0);
}

.project-btn-circular:hover {
    background: var(--secondary, #00F0FF);
    color: #050508;
}

.project-category {
    font-size: 0.85rem;
    color: var(--secondary, #00F0FF);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.project-title {
    font-size: 1.8rem;
}

/* Stepper / Process Section */
.stepper-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

.stepper-line {
    position: absolute;
    top: 0; bottom: 0; left: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary, #00F0FF), var(--primary, #7000FF));
    opacity: 0.3;
}

.stepper-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stepper-item {
    display: flex;
    gap: 40px;
    position: relative;
}

.step-number-node {
    position: relative;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #050508;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.stepper-item.active .step-number-node,
.stepper-item:hover .step-number-node {
    border-color: var(--secondary, #00F0FF);
    color: var(--secondary, #00F0FF);
    box-shadow: 0 0 20px var(--secondary, #00F0FF);
}

.step-content {
    flex-grow: 1;
    padding: 35px;
}

.step-icon {
    font-size: 1.5rem;
    color: var(--secondary, #00F0FF);
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step-desc {
    color: #A0A0AB;
    margin: 0;
}

/* Showcase Section */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-label {
    color: var(--secondary, #00F0FF);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 16px;
}

.showcase-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.showcase-desc {
    color: #A0A0AB;
    margin-bottom: 40px;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary, #00F0FF);
}

.interactive-card {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.floating-model-img {
    width: 60%;
    animation: floatModel 6s infinite ease-in-out;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.card-inner-info {
    position: absolute;
    bottom: 30px;
    text-align: center;
}

.card-inner-info h4 {
    font-size: 1.2rem;
}

.card-inner-info span {
    font-size: 0.85rem;
    color: #A0A0AB;
}

/* Testimonials & Brands */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.testimonial-message {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary, #00F0FF);
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.85rem;
    color: #A0A0AB;
}

.brands-marquee {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.brands-title-small {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #A0A0AB;
    margin-bottom: 30px;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.brand-logo-img {
    height: 40px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(200%);
}

.brand-logo-item:hover .brand-logo-img {
    opacity: 1;
    filter: none;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: #A0A0AB;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.blog-excerpt {
    color: #A0A0AB;
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary, #00F0FF);
}

/* Contact CTA Section */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cta-info {
    padding-right: 20px;
}

.cta-subtitle {
    color: var(--secondary, #00F0FF);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.cta-desc {
    color: #A0A0AB;
    margin-bottom: 40px;
}

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

.method-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-box i {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary, #00F0FF);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.method-box span {
    display: block;
    font-size: 0.85rem;
    color: #A0A0AB;
    margin-bottom: 4px;
}

.method-box strong {
    font-size: 1.1rem;
    color: #FFFFFF;
}

/* Forms */
.glass-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #E0E0E6;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary, #00F0FF);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

/* ==========================================================================
   7. Footer
   ========================================================================== */
.site-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 0 40px;
    background: #030305;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 300px;
    background: radial-gradient(ellipse, var(--glow-color, rgba(112, 0, 255, 0.15)) 0%, transparent 70%);
    filter: blur(50px);
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 34px;
}

.footer-desc {
    color: #A0A0AB;
    margin-bottom: 30px;
}

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

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #A0A0AB;
    font-size: 0.95rem;
}

.contact-line i {
    color: var(--secondary, #00F0FF);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #A0A0AB;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.newsletter-desc {
    color: #A0A0AB;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    margin-bottom: 30px;
}

.newsletter-input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #FFFFFF;
    width: 100%;
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--secondary, #00F0FF);
    color: #050508;
}

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

.socials-label {
    font-size: 0.9rem;
    color: #A0A0AB;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon-link:hover {
    background: var(--secondary, #00F0FF);
    color: #050508;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: #A0A0AB;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.glass-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0A0AB;
}

/* ==========================================================================
   8. Sub-Pages Specific Layouts
   ========================================================================== */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(5,5,8,0.5), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.page-content-area {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #C0C0C8;
}

.page-content-area p {
    margin-bottom: 24px;
}
/* ===============================
   GLOBAL RESPONSIVE FIX
================================ */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

section,
.site-header,
.site-footer,
.hero-section,
.section-container,
.header-container,
.footer-container {
    max-width: 100%;
}

/* Büyük gridleri tablet/mobilde kır */
@media (max-width: 1024px) {
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid,
    .showcase-grid,
    .cta-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hero-title {
        font-size: 3.4rem;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-actions {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding: 150px 0 90px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .stats-section {
        margin-top: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .stat-divider {
        display: none;
    }

    .services-grid,
    .blog-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .glass-card,
    .service-card,
    .glass-form {
        padding: 28px 22px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .flex-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

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

@media (max-width: 480px) {
    .header-container,
    .section-container,
    .footer-container,
    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .section-title,
    .page-title {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
        padding: 13px 22px;
    }

    .mobile-drawer {
        max-width: 100%;
    }
}
