/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Renk paleti - Logo renklerine uygun */
:root {
    --primary-color: #ff6b35;     /* Turuncu */
    --secondary-color: #ffd23f;   /* Sarı */
    --dark-color: #2c3e50;        /* Lacivert */
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
}

/* Header ve Navigation */
.header {
    background: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}



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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.75) 0%,
        rgba(44, 62, 80, 0.4) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 70%
    );
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 2s ease-in-out;
    z-index: 0;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide:nth-child(1) {
    background-image: url('images/hero/image.png');
}

.hero-slide:nth-child(2) {
    background-image: url('images/hero/image3.png');
}

.hero-slide:nth-child(3) {
    background-image: url('images/hero/image2.png');
}

.hero-content {
    max-width: 1000px;
    z-index: 3;
    margin: 0;
    text-align: left;
    position: relative;
    animation: heroContentFadeIn 1.5s ease-out;
    padding-left: 60px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 0.9;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.05em;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: underlineExpand 1.5s ease-out 0.5s both;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.5;
    font-weight: 400;
    max-width: 550px;
    opacity: 0;
    animation: heroTextSlideUp 1.5s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
    animation: heroButtonsSlideUp 1.5s ease-out 0.6s both;
}

/* Hero Animations */
@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 120px;
    }
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55d00 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55d00 0%, var(--primary-color) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    border-color: #e55d00;
}

.btn-secondary {
    background: transparent;
    border-color: var(--dark-color);
    color: var(--dark-color);
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.3);
}

.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-color);
    border-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.hero-image {
    display: none;
}

.hero-shape {
    display: none;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 70px;
}

.services-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.service-card {
    flex: 0 0 320px;
    min-width: 320px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Projects Slider Styles */
.projects-slider-container .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.projects-slider-container .slider-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.projects-slider-container .slider-btn.prev {
    left: 15px;
}

.projects-slider-container .slider-btn.next {
    right: 15px;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.stat p {
    color: var(--dark-gray);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--white);
}

.projects-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 70px;
}

.projects-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.project-card {
    flex: 0 0 350px;
    min-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-content {
    padding: 1.5rem;
    background: var(--white);
    text-align: center;
}

.project-content h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.project-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Harita */
.contact-map {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.contact-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-map h4 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-map h4::before {
    content: '📍';
    font-size: 1.2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.map-container:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    transition: all 0.3s ease;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.03), rgba(255, 210, 63, 0.03));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover::after {
    opacity: 1;
}

/* Form */
.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-right .contact-map {
    margin-bottom: 2rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select {
    cursor: pointer;
    background: var(--white);
}

.contact-form .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-company-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.footer-brand p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.social-link {
    width: 36px;
    height: 36px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #333;
    color: #ffffff;
    border-color: #444;
}

.footer-services h4,
.footer-info h4,
.footer-contact h4 {
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.footer-services ul,
.footer-info ul {
    list-style: none;
}

.footer-services li,
.footer-info li {
    margin-bottom: 0.8rem;
}

.footer-services a,
.footer-info a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.footer-services a:hover,
.footer-info a:hover {
    color: #ffffff;
}

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

.contact-info-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white !important;
    padding: 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    width: 64px;
    height: 64px;
    justify-content: center;
}

.whatsapp-float a:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    font-size: 28px;
    line-height: 1;
}

.whatsapp-icon i {
    color: white !important;
    font-size: 28px !important;
    display: block;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}



/* Floating button animasyonu */
.whatsapp-float {
    animation: float-whatsapp 3s ease-in-out infinite;
}

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

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

/* Pulse efekti */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-whatsapp 2s infinite;
    z-index: -1;
}

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

/* Responsive tasarım */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 58px;
        height: 58px;
        padding: 14px;
        justify-content: center;
    }
    
    .whatsapp-icon {
        font-size: 24px;
    }
    
    .whatsapp-icon i {
        font-size: 24px !important;
        display: block;
    }
    
    .whatsapp-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: scrollIndicatorFadeIn 2s ease-out 2s both;
}

.scroll-indicator .scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator .scroll-arrow:hover {
    border-color: var(--white);
    transform: scale(1.1);
}

.scroll-indicator .scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollIndicatorFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Hero Statistics */
.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: heroStatsSlideIn 1.5s ease-out 1.5s both;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 125px;
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-stat h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

@keyframes heroStatsSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        width: 25px;
        height: 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        min-height: 100vh;
        text-align: left;
        padding: 80px 20px 60px;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding-left: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
        line-height: 0.9;
        margin-bottom: 1.5rem;
        letter-spacing: -0.03em;
    }
    
    .hero h1::after {
        width: 80px;
        height: 4px;
        bottom: -10px;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        position: static;
        justify-content: flex-start;
        margin-top: 2rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-stat {
        min-width: 100px;
        padding: 1rem 1.2rem;
        flex: 1;
        max-width: 140px;
    }
    
    .hero-stat h3 {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-stat p {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator .scroll-arrow {
        width: 24px;
        height: 40px;
    }
    
    .hero-image {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-left {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 70px 15px 50px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 0.9;
        margin-bottom: 1.2rem;
    }
    
    .hero h1::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        text-align: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 0.6rem;
        justify-content: space-between;
    }
    
    .hero-stat {
        min-width: 85px;
        flex: 1;
        max-width: calc(33.333% - 0.4rem);
        padding: 0.8rem 0.5rem;
    }
    
    .hero-stat h3 {
        font-size: 1.2rem;
    }
    
    .hero-stat p {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-indicator .scroll-arrow {
        width: 20px;
        height: 35px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-slider-container {
        padding: 0 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .projects-slider-container {
        padding: 0 50px;
    }
    
    .projects-slider-container .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .project-card {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero {
        padding: 60px 10px 40px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .hero h1::after {
        width: 50px;
        height: 3px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 0.4rem;
    }
    
    .hero-stat {
        min-width: 75px;
        padding: 0.6rem 0.3rem;
        max-width: calc(33.333% - 0.27rem);
    }
    
    .hero-stat h3 {
        font-size: 1.1rem;
    }
    
    .hero-stat p {
        font-size: 0.65rem;
        line-height: 1.1;
    }
} 