/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #2f6690;
    --secondary-orange: #3a7ca5;
    --accent-orange: #81c3d7;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #b8b8b8;
    --gradient-orange: linear-gradient(135deg, #2f6690, #3a7ca5, #81c3d7);
    --glow-orange: 0 0 20px rgba(47, 102, 144, 0.5);
    --shadow-3d: 0 10px 30px rgba(0, 0, 0, 0.3);

    --hero-logo-size: clamp(160px, 18vw, 280px);
    --hero-logo-glow-size: calc(var(--hero-logo-size) * 1.25);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3D Canvas Background */
#threejs-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(217, 220, 214, 0.6);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-png {
    width: 50px;
    height: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo-png:hover {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-orange);
    text-shadow: var(--glow-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(217, 220, 214, 0.1) 0%, transparent 70%);
    /* beyazlaştır */
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 120px;
    right: 50px;
    z-index: 1000;
    display: flex;
    background: rgba(217, 220, 214, 0.5);
    border-radius: 25px;
    padding: 5px;
    border: 4px solid rgba(22, 66, 91,0.8);
    backdrop-filter: blur(15px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--gray-text);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.lang-btn.active {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--glow-orange);
}



.hero-logo{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;     /* dairesel amblem için */
    object-fit: contain;
    transition: transform .2s ease, filter .2s ease;
  }

.hero-logo:hover {
    transform: scale(1.1);
}


/* Glow çemberini de büyüt */
.hero-logo-glow{
    width: 115%;
    height: 115%;
    pointer-events: none;
  }

.hero-logo-container {
    position: absolute;
    top: 110px;
    /* yerinden oynamasın */
    left: 40px;
    /* yerinden oynamasın */
    width: 112px;
    /* önceki hâlden “biraz” daha büyük */
    height: 112px;
    z-index: 100;
    display: grid;
    place-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-3d {
    display: block;
    text-shadow:
        0 1px 0 #3a7ca5,
        0 2px 0 #3a7ca5,
        0 3px 0 #3a7ca5,
        0 4px 0 #3a7ca5,
        0 5px 0 #3a7ca5,
        0 6px 10px rgba(0, 0, 0, 0.4);
    transform: perspective(500px) rotateX(15deg);
    animation: pulse3d 4s ease-in-out infinite;
}



.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-3d);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 220, 214,0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow-orange);
}

/* 3D Hero Elements */
.hero-3d {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cube,
.floating-sphere,
.floating-pyramid {
    position: absolute;
    animation: float3d 6s ease-in-out infinite;
}

.floating-cube {
    width: 100px;
    height: 100px;
    background: var(--gradient-orange);
    border-radius: 10px;
    transform: perspective(500px) rotateX(25deg) rotateY(25deg);
    box-shadow: var(--glow-orange);
    animation-delay: 0s;
}

.floating-sphere {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #2f6690, #3a7ca5);
    border-radius: 50%;
    top: 100px;
    right: 50px;
    box-shadow: var(--glow-orange);
    animation-delay: 2s;
}

.floating-pyramid {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary-orange);
    bottom: 100px;
    left: 50px;
    filter: drop-shadow(var(--glow-orange));
    animation-delay: 4s;
}

.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-orange);
    border-bottom: 2px solid var(--primary-orange);
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-orange);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(217, 220, 214, 0.1) 0%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-network {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    box-shadow: var(--glow-orange);
    animation: pulse 3s ease-in-out infinite;
}

.network-node.main-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.network-node:nth-child(2) {
    top: 20px;
    left: 50px;
    animation-delay: 0.5s;
}

.network-node:nth-child(3) {
    top: 20px;
    right: 50px;
    animation-delay: 1s;
}

.network-node:nth-child(4) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.network-line {
    position: absolute;
    background: linear-gradient(45deg, transparent, var(--primary-orange), transparent);
    height: 2px;
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

/* Services Section */
.services {
    background: var(--darker-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(217, 220, 214, 0.1) 0%, rgba(58, 124, 165, 0.2) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(217, 220, 214, 5);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.icon-3d {
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 15px;
    position: relative;
}

.gamepad-icon::before {
    content: '🎮';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.mobile-icon::before {
    content: '📱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.vr-icon::before {
    content: '🥽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.hci-icon::before {
    content: '🧠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
}

.projects-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.project-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.project-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-cube {
    width: 120px;
    height: 120px;
    background: var(--gradient-orange);
    border-radius: 15px;
    transform: perspective(500px) rotateX(25deg) rotateY(25deg);
    animation: rotate3d 8s linear infinite;
    box-shadow: var(--glow-orange);
}

.project-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.project-info p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(58, 124, 165, 0.2);
    color: var(--primary-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem; 
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(58, 124, 165, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-orange);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.form-3d {
    background: rgba(58, 124, 165, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(58, 124, 165,0.1);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(58, 124, 165, 0.2);
    padding: 3rem 0 1rem;
    
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--gray-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(58, 124, 165, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: var(--glow-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(58, 124, 165, 0.2);
    color: var(--gray-text);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    backdrop-filter: blur(15px);
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 0.8rem;
}

.notification-success .notification-content {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9) 0%, rgba(22, 163, 74, 0.9) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.notification-error .notification-content {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9) 0%, rgba(220, 38, 38, 0.9) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.notification-warning .notification-content {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9) 0%, rgba(217, 119, 6, 0.9) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.notification-info .notification-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    color: white;
    font-weight: 500;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Loading button state */
.btn-primary.loading {
    position: relative;
    color: transparent;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: buttonSpinner 1s linear infinite;
}

@keyframes buttonSpinner {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes heroLogoFloat {

    0%,
    100% {
        transform: translateY(0px) rotateY(0deg);
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    }

    25% {
        transform: translateY(-8px) rotateY(5deg);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.7));
    }

    50% {
        transform: translateY(-5px) rotateY(0deg);
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    }

    75% {
        transform: translateY(-8px) rotateY(-5deg);
        filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.7));
    }
}

@keyframes heroLogoGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes float3d {

    0%,
    100% {
        transform: perspective(500px) rotateX(25deg) rotateY(25deg) translateY(0px);
    }

    50% {
        transform: perspective(500px) rotateX(25deg) rotateY(25deg) translateY(-20px);
    }
}

@keyframes pulse3d {

    0%,
    100% {
        transform: perspective(500px) rotateX(15deg) scale(1);
    }

    50% {
        transform: perspective(500px) rotateX(15deg) scale(1.05);
    }
}

@keyframes rotate3d {
    0% {
        transform: perspective(500px) rotateX(25deg) rotateY(0deg);
    }

    100% {
        transform: perspective(500px) rotateX(25deg) rotateY(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */

/* Desktop Large (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .services-grid {
        max-width: 1000px;
        gap: 3rem;
    }

    .service-card {
        padding: 3rem;
    }
}

/* Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        max-width: 1000px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .services-grid {
        max-width: 900px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-logo-container {
        top: 100px;
        left: 30px;
    }

    .hero-logo {
        width: 100px;
        height: 40px;
    }

    .hero-logo-glow {
        width: 120px;
        height: 120px;
    }

    .language-switcher {
        top: 100px;
        right: 30px;
        transform: scale(0.9);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .logo-png {
        width: 45px;
        height: 18px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

/* Mobile Large (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .logo-png {
        width: 40px;
        height: 16px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-logo-container {
        top: 80px;
        left: 20px;
    }

    .hero-logo {
        width: 80px;
        height: 32px;
    }

    .hero-logo-glow {
        width: 100px;
        height: 100px;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .container {
        padding: 0 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .social-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .logo-png {
        width: 35px;
        height: 14px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-card {
        padding: 1rem;
    }

    .form-3d {
        padding: 1.5rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .hero-logo-container {
        top: 70px;
        left: 15px;
    }

    .hero-logo {
        width: 70px;
        height: 28px;
    }

    .hero-logo-glow {
        width: 90px;
        height: 90px;
    }

    .notification {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .language-switcher {
        top: 70px;
        right: 15px;
        transform: scale(0.7);
    }
}