A/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Logo Size */
:root {
    /* Logo boyutları artık PHP tarafından dinamik olarak ayarlanıyor */
    --primary-color: #dd6e08;
    --primary-color-light: #ff8c00;
    --primary-color-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Custom Animations */
[data-aos="fade-up-scale"] {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition-property: transform, opacity, scale;
}

[data-aos="fade-up-scale"].aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

[data-aos="slide-in-left"] {
    opacity: 0;
    transform: translateX(-100px);
    transition-property: transform, opacity;
}

[data-aos="slide-in-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="slide-in-right"] {
    opacity: 0;
    transform: translateX(100px);
    transition-property: transform, opacity;
}

[data-aos="slide-in-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="bounce-in"] {
    opacity: 0;
    transform: scale(0.3) translateY(30px);
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos="bounce-in"].aos-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* AOS Element Enhancement */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Smooth Scroll Enhancement */
@media (prefers-reduced-motion: no-preference) {
    [data-aos] {
        transition-duration: 0.8s;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* AOS Custom Durations */
[data-aos][data-aos-duration="1200"] {
    transition-duration: 1200ms;
}

[data-aos][data-aos-duration="1500"] {
    transition-duration: 1500ms;
}

/* Service Cards AOS Enhancement */
.service-card[data-aos] {
    transform: translateY(30px);
    opacity: 0;
}

.service-card[data-aos].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Team Member Cards AOS Enhancement */
.team-member[data-aos] {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
}

.team-member[data-aos].aos-animate {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Portfolio Items AOS Enhancement */
.portfolio-item[data-aos], .reference-logo-item[data-aos] {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
}

.portfolio-item[data-aos].aos-animate, .reference-logo-item[data-aos].aos-animate {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Responsive AOS Settings */
@media (max-width: 768px) {
    /* Disable complex animations on mobile for performance */
    [data-aos] {
        transition-duration: 0.4s !important;
        transition-delay: 0s !important;
    }
    
    [data-aos="fade-up-scale"] {
        transform: translateY(20px) scale(0.98);
    }
    
    [data-aos="slide-in-left"], 
    [data-aos="slide-in-right"] {
        transform: translateY(20px);
    }
    
    [data-aos="bounce-in"] {
        transform: scale(0.95) translateY(20px);
        transition-timing-function: ease-out;
    }
}

@media (max-width: 480px) {
    /* Further simplify animations on very small screens */
    [data-aos] {
        transition-duration: 0.3s !important;
    }
    
    [data-aos="fade-left"], 
    [data-aos="fade-right"] {
        transform: translateY(15px);
    }
}

/* Accessibility - Respect user preferences */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* High Performance Mode */
@media (max-width: 768px) and (max-height: 600px) {
    [data-aos] {
        transition-duration: 0.2s !important;
        transition-delay: 0s !important;
    }
}

/* Enhanced Stagger Effects */
.services-grid .service-card:nth-child(1) { --aos-delay: 0ms; }
.services-grid .service-card:nth-child(2) { --aos-delay: 100ms; }
.services-grid .service-card:nth-child(3) { --aos-delay: 200ms; }
.services-grid .service-card:nth-child(4) { --aos-delay: 300ms; }
.services-grid .service-card:nth-child(5) { --aos-delay: 400ms; }
.services-grid .service-card:nth-child(6) { --aos-delay: 500ms; }

.team-grid .team-member:nth-child(1) { --aos-delay: 0ms; }
.team-grid .team-member:nth-child(2) { --aos-delay: 150ms; }
.team-grid .team-member:nth-child(3) { --aos-delay: 300ms; }
.team-grid .team-member:nth-child(4) { --aos-delay: 450ms; }

.portfolio-grid .reference-logo-item:nth-child(1) { --aos-delay: 0ms; }
.portfolio-grid .reference-logo-item:nth-child(2) { --aos-delay: 100ms; }
.portfolio-grid .reference-logo-item:nth-child(3) { --aos-delay: 200ms; }
.portfolio-grid .reference-logo-item:nth-child(4) { --aos-delay: 300ms; }
.portfolio-grid .reference-logo-item:nth-child(5) { --aos-delay: 400ms; }
.portfolio-grid .reference-logo-item:nth-child(6) { --aos-delay: 500ms; }

/* Custom Loading States */
.aos-loading {
    opacity: 0;
    pointer-events: none;
}

.aos-loaded {
    opacity: 1;
    pointer-events: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: var(--logo-size);
    height: var(--logo-size);
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 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%;
}

.admin-link {
    background: var(--primary-color-gradient);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 110, 8, 0.3);
}

.admin-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--hero-bg-gradient);
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

/* Particles Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--hero-text-color);
    overflow-wrap: break-word;
    word-break: keep-all;
}

.hero-static-text {
    font-size: 2.5rem;
    color: var(--hero-text-color);
    opacity: 0.8;
}

.hero-dynamic-text {
    display: flex;
    align-items: flex-start;
    height: 70px;
    color: var(--primary-color);
    min-width: 100%;
    overflow: visible;
    line-height: 1.2;
}

#typed-text {
    font-size: 3.5rem;
    white-space: nowrap;
    min-width: max-content;
    display: inline-flex;
    align-items: flex-start;
    line-height: 1.2;
    vertical-align: top;
}

.typed-cursor {
    color: var(--primary-color);
    animation: blink 1s infinite;
    position: relative;
    top: 0;
    vertical-align: top;
    line-height: inherit;
    display: inline;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.highlight {
    background: var(--primary-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--primary-color-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(221, 110, 8, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Image and Animations */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    position: relative;
    width: 500px;
    height: 500px;
}

.rotating-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating-circle svg {
    width: 100%;
    height: 100%;
}

.rotating-circle text {
    fill: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: var(--primary-color-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(221, 110, 8, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.center-icon i {
    font-size: 4rem;
    color: white;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.float-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 15%; right: 15%; animation-delay: 0.5s; }
.icon-3 { bottom: 20%; left: 5%; animation-delay: 1s; }
.icon-4 { bottom: 10%; right: 10%; animation-delay: 1.5s; }
.icon-5 { top: 50%; left: -5%; animation-delay: 2s; }
.icon-6 { top: 40%; right: -5%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f7fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

.about-graphic {
    position: relative;
    height: 400px;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    height: 100%;
}

.tech-item {
    background: var(--primary-color-gradient);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: scale(1.05);
}

.tech-item:nth-child(odd) {
    animation: slideUp 0.8s ease forwards;
}

.tech-item:nth-child(even) {
    animation: slideDown 0.8s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f7fafc;
}

.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reference-logo-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 150px;
    max-width: 200px;
    height: 100px;
}

.reference-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.reference-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.reference-logo-item:hover img {
    transform: scale(1.05);
}

.reference-link-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(221, 110, 8, 0.9);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    font-size: 0.8rem;
}

.reference-logo-item:hover .reference-link-overlay {
    opacity: 1;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 50%;
    background: #f8fafc;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

/* Kırpılmış fotoğraflar için özel stil - tam daire görünüm */
.member-image img[src*="uploads/team/"] {
    object-fit: cover;
    object-position: center;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: var(--footer-logo-size);
    height: var(--footer-logo-size);
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: #a0aec0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
        border-left: 1px solid #e2e8f0;
        visibility: hidden;
        opacity: 0;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-graphic {
        height: 300px;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .portfolio-grid {
        gap: 1rem;
    }

    .reference-logo-item {
        min-width: 120px;
        max-width: 150px;
        height: 80px;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 250px;
        right: -100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

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

    .floating-card {
        padding: 1rem;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

    .portfolio-grid {
        gap: 0.5rem;
    }

    .reference-logo-item {
        min-width: 100px;
        max-width: 120px;
        height: 60px;
        padding: 0.3rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.team-member,
.reference-logo-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Service Loading Animation */
.service-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #64748b;
}

.service-loading i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

.service-loading p {
    font-size: 1.1rem;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Service Price Display */
.service-price {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    background: var(--primary-color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    right: auto;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c3e;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        right: auto;
        font-size: 25px;
    }
} 

/* Reference Modal Styles */
.reference-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reference-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.3s ease;
}

.reference-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.reference-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.reference-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

.reference-modal-image {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.reference-modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.reference-modal-info {
    padding: 3rem;
    overflow-y: auto;
    max-height: 90vh;
}

.reference-modal-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.reference-modal-client {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.reference-modal-client i {
    color: var(--primary-color);
}

.reference-modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.reference-modal-description {
    margin-bottom: 2rem;
}

.reference-modal-description h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.reference-modal-description p {
    color: #4a5568;
    line-height: 1.8;
}

.reference-modal-technologies {
    margin-bottom: 2rem;
}

.reference-modal-technologies h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.technologies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--primary-color-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.reference-modal-actions {
    display: flex;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .reference-modal-body {
        grid-template-columns: 1fr;
    }
    
    .reference-modal-image {
        padding: 1.5rem;
        max-height: 300px;
    }
    
    .reference-modal-info {
        padding: 1.5rem;
    }
    
    .reference-modal-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reference-modal-close {
        top: 10px;
        right: 10px;
    }
} 

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.5rem;
        overflow-wrap: break-word;
        word-break: keep-all;
        text-align: left;
    }
    
    .hero-static-text {
        font-size: 1.8rem;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    #typed-text {
        font-size: 2.5rem;
        white-space: nowrap;
        min-width: max-content;
        display: inline-flex;
        align-items: flex-start;
        line-height: 1.2;
        vertical-align: top;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-graphic {
        width: 350px;
        height: 350px;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .center-icon {
        width: 100px;
        height: 100px;
    }
    
    .center-icon i {
        font-size: 2.5rem;
    }
    
    .float-icon {
        width: 50px;
        height: 50px;
    }
} 