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

:root {
    --background: #E9E3DF;
    --accent: #FF7A30;
    --text: #465C88;
    --bold: #000000;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #e65a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 48, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(233, 227, 223, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-brand h2 {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

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

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: block;
}

.nav-menu a:hover {
    color: var(--accent);
    background-color: rgba(255, 122, 48, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 28px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(233, 227, 223, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 999;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin: 0;
        border-radius: 0;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-menu a:hover {
        background-color: rgba(255, 122, 48, 0.15);
        color: var(--accent);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .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);
    }
    
    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .nav-toggle {
        width: 35px;
        height: 35px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2px;
    }
}

@media (max-width: 360px) {
    .navbar .container {
        padding: 0 0.8rem;
    }
    
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background) 0%, #f8f9fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--bold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.lottie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Lottie animasyonu için responsive ayarlar */
dotlottie-wc {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 900px !important;
    max-height: 900px !important;
}

.lottie-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9a5a 100%);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

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

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

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--bold);
}

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

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.value-card h3 {
    margin-bottom: 1rem;
    color: var(--bold);
}

/* Services Section */
.services {
    padding: 6rem 0;
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--bold);
}

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

.service-cta {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-cta:hover {
    color: #e65a1a;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.portfolio-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.portfolio-image {
    height: 250px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

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

.feature-icon {
    background-color: var(--accent);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--bold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text);
    line-height: 1.6;
}

.lottie-container-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* İkinci Lottie animasyonu için responsive ayarlar */
.lottie-container-secondary dotlottie-wc {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 700px !important;
    max-height: 700px !important;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text);
}

.testimonial-author h4 {
    color: var(--bold);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
}

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

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: var(--accent);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--bold);
}

.contact-item p {
    color: var(--text);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--bold);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 122, 48, 0.3);
    border-color: var(--accent);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray);
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

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

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .lottie-container {
        min-height: 500px;
        order: -1; /* Mobilde animasyon üstte */
    }
    
    dotlottie-wc {
        max-width: 600px !important;
        max-height: 600px !important;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .lottie-container-secondary {
        min-height: 450px;
        order: -1; /* Mobilde animasyon üstte */
    }
    
    .lottie-container-secondary dotlottie-wc {
        max-width: 500px !important;
        max-height: 500px !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid,
    .portfolio-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .lottie-container {
        min-height: 450px;
    }
    
    dotlottie-wc {
        max-width: 500px !important;
        max-height: 500px !important;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .service-card,
    .value-card,
    .feature-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .lottie-container-secondary {
        min-height: 400px;
    }
    
    .lottie-container-secondary dotlottie-wc {
        max-width: 450px !important;
        max-height: 450px !important;
    }
}

@media (max-width: 360px) {
    .lottie-container {
        min-height: 400px;
    }
    
    dotlottie-wc {
        max-width: 450px !important;
        max-height: 450px !important;
    }
    
    .lottie-container-secondary {
        min-height: 350px;
    }
    
    .lottie-container-secondary dotlottie-wc {
        max-width: 400px !important;
        max-height: 400px !important;
    }
} 

/* Referanslarımız Slider */
.references-section {
    padding: 5rem 0 4rem 0;
    background: var(--white);
}

.references-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 1100px;
}

.references-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    animation: none !important;
}

.reference-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    opacity: 0.85;
    transition: filter 0.2s, opacity 0.2s, transform 0.2s;
    padding: 0.5rem 0;
}

.reference-logo:hover {
    filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
    opacity: 1;
    transform: scale(1.07);
}

@media (max-width: 900px) {
    .references-slider {
        gap: 2rem;
    }
    .reference-logo {
        height: 48px;
    }
}

@media (max-width: 600px) {
    .references-section {
        padding: 2.5rem 0 2rem 0;
    }
    .references-slider {
        gap: 1.2rem;
    }
    .reference-logo {
        height: 36px;
    }
} 