/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #53fc10;
    --primary-dark: #3ddb00;
    --background-dark: #111;
    --background-darker: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #888888;
    --border-color: #333;
    --shadow-color: rgba(83, 252, 16, 0.1);
    --gradient-primary: linear-gradient(135deg, #53fc10 0%, #3ddb00 100%);
    --gradient-dark: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo .logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo .logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-bg {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark), url('images/hero-banner.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
    position: relative;
}

/* Subtle animated background logo */
.bg-logo {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 60vw;
    max-width: 900px;
    opacity: 0.04;
    filter: blur(1px) saturate(110%);
    pointer-events: none;
    transform: rotate(-8deg) scale(1);
    animation: bgLogoFloat 12s ease-in-out infinite;
}

@keyframes bgLogoFloat {
    0%, 100% { transform: rotate(-8deg) translateY(0) scale(1); }
    50% { transform: rotate(-6deg) translateY(-15px) scale(1.02); }
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(83, 252, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 252, 16, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(83, 252, 16, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Modern gradient accent under title */
.hero-title::after {
    content: '';
    display: block;
    width: 140px;
    height: 6px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(83,252,16,0.6), transparent);
    filter: drop-shadow(0 0 8px rgba(83,252,16,0.35));
    animation: accentPulse 2.8s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% { opacity: 0.65; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

/* Sadece Yazı Animasyonları */
.animated-text {
    color: #ffffff;
    display: block;
    opacity: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGlow {
    0% { 
        text-shadow: 0 0 10px rgba(83, 252, 16, 0.5);
        transform: scale(1);
    }
    100% { 
        text-shadow: 0 0 30px rgba(83, 252, 16, 1);
        transform: scale(1.02);
    }
}

.typewriter-text {
    overflow: hidden;
    border-right: 3px solid #53fc10;
    white-space: nowrap;
    margin: 0 auto;
    animation: typewriter 2s steps(40, end), blink-caret 0.75s step-end infinite;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #53fc10; }
}

.slide-in-button {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 0.8s ease forwards;
}

.slide-in-button:nth-child(2) {
    animation-delay: 0.3s;
    transform: translateX(50px);
    animation-name: slideInFromRight;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(83, 252, 16, 0.5);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Animated gradient text effect for subtitle */
.hero-subtitle {
    background: linear-gradient(90deg, #aaa, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: shimmer 6s linear infinite, fadeInUp 0.8s ease 0.4s forwards;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--background-dark);
    box-shadow: 0 4px 15px rgba(83, 252, 16, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 252, 16, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--background-darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(83, 252, 16, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(83, 252, 16, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(83, 252, 16, 0.1);
    border-color: var(--primary-color);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.feature p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-dark);
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    animation-delay: 2s;
}

/* Submit Section */
.submit {
    background: var(--background-dark);
}

.upload-container {
    max-width: 600px;
    margin: 0 auto;
}

.upload-form {
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-form:hover {
    border-color: var(--primary-color);
    background: rgba(83, 252, 16, 0.02);
}

.upload-area {
    margin-bottom: 2rem;
    cursor: pointer;
}

.upload-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.upload-content p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.file-types {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Honeypot field - keep visually hidden but present in DOM */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-fields {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(83, 252, 16, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--background-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 252, 16, 0.3);
}

.upload-success {
    background: rgba(83, 252, 16, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.upload-success.hidden {
    display: none;
}

.success-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.success-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.reset-button {
    padding: 12px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reset-button:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

/* Socials Section */
.socials {
    background: var(--background-darker);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(83, 252, 16, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(83, 252, 16, 0.05);
}

.social-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--background-dark);
}

.social-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.follow-pill {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 12px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: .2px;
}

/* Contact Section */
.contact {
    background: var(--background-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    background: rgba(83, 252, 16, 0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-button {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: var(--background-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 252, 16, 0.3);
}

/* Footer */
.footer {
    background: var(--background-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-brand .footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-brand .footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.company-info {
    font-size: 0.85rem !important;
    color: var(--text-gray) !important;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.company-info i {
    color: var(--text-gray);
}

.trademark-notice {
    font-size: 0.8rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
    margin-top: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trademark-notice i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.separator {
    color: var(--text-dark);
    margin: 0 0.5rem;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Enhanced Mobile Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(83, 252, 16, 0.1);
        color: var(--primary-color);
    }
    
    /* Mobile Hero Section */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    /* Mobile Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* Mobile Form */
    .upload-form {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px 18px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 12px;
    }
    
    .submit-button {
        padding: 18px;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    /* Mobile Social Grid */
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .footer-links a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background: rgba(83, 252, 16, 0.1);
    }
    
    /* Mobile Background Logo */
    .bg-logo {
        width: 80vw;
        right: -20%;
        bottom: -20%;
        opacity: 0.03;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-logo .logo-image {
        height: 50px;
    }
    
    .nav-menu {
        top: 70px;
    }
    
    .hero {
        padding-top: 70px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .cta-button {
        padding: 16px 25px;
        font-size: 1rem;
        max-width: 260px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .upload-form {
        padding: 1.5rem 1rem;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .submit-button {
        padding: 16px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 5px;
    }
    
    .social-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .social-card h3 {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-brand .footer-logo {
        height: 30px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .company-info {
        font-size: 0.75rem !important;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .trademark-notice {
        font-size: 0.7rem !important;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .separator {
        display: none;
    }
    
    /* Touch-friendly improvements */
    .nav-link {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-button,
    .submit-button {
        min-height: 48px; /* Minimum touch target size */
    }
    
    .social-card {
        min-height: 120px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .cta-button {
        max-width: 200px;
        padding: 14px 20px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* High DPI Mobile Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo .logo-image,
    .footer-brand .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Improve touch targets */
    .hamburger {
        padding: 10px;
        margin: -10px;
    }
    
    .bar {
        width: 28px;
        height: 3px;
        margin: 4px 0;
    }
    
    /* Better form focus states for mobile */
    .form-group input:focus,
    .form-group textarea:focus {
        transform: scale(1.02);
        box-shadow: 0 0 0 3px rgba(83, 252, 16, 0.2);
    }
    
    /* Mobile notification positioning */
    .notification {
        right: 10px !important;
        left: 10px !important;
        transform: translateY(-100%) !important;
        border-radius: 12px !important;
    }
    
    .notification.show {
        transform: translateY(0) !important;
    }
    
    /* Smooth transitions for mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Better scroll behavior */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Optimize animations for mobile */
    .hero-title::after,
    .animated-bg::before,
    .bg-logo {
        will-change: transform;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .hero-title::after,
        .animated-bg::before,
        .bg-logo,
        .floating-card {
            animation: none;
        }
        
        .hero-title,
        .hero-subtitle,
        .hero-buttons {
            animation: none;
            opacity: 1;
            transform: none;
        }
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
} 