/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header ve Navigasyon */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    margin: 4rem 0 2rem 0;
    font-weight: 300;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title .highlight {
    color: #007bff;
    position: relative;
    display: inline-block;
    font-weight: 800;
    animation: glowText 2s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 123, 255, 0);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
        transform: scale(1.05);
    }
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #007bff;
    transform: scaleX(0);
    transform-origin: right;
    animation: underline 1s ease forwards 0.5s;
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-service-item:hover::before {
    transform: translateX(100%);
}

.hero-service-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-service-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
    transition: transform 0.3s ease;
}

.hero-service-item:hover i {
    transform: scale(1.2);
}

.hero-service-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-service-item:hover h3 {
    color: #007bff;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
    position: relative;
    overflow: hidden;
}

.cta-button::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: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #0056b3;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

@keyframes underline {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes whatsappBounce {
    0%, 50%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(-3px); }
}

@keyframes phoneShake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* Services Section */
/* About Section */
.about {
    padding: 5rem 5%;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #007bff;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.about-text .about-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: #007bff;
    margin: 2rem 0 1rem;
    text-align: center;
}

.about-text .about-slogan {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-info p {
    margin: 1rem 0;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #007bff;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.submit-button {
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 5% 1rem;
    position: relative;
}

.footer-logo {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    padding: 20px;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 4rem;
}

.social-links a {
    color: white;
    margin-left: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

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

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-button {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    transform: translateX(100px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.floating-button:nth-child(2) {
    animation-delay: 0.2s;
}

.floating-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.floating-button span {
    display: none;
    margin-left: 5px;
}

.floating-button:hover {
    transform: translateX(0);
    padding-right: 25px;
}

.floating-button:hover span {
    display: inline;
}

.floating-button.whatsapp {
    background: #25D366;
}

.floating-button.phone {
    background: #007bff;
}

.floating-button:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-button.phone i {
    animation: phoneShake 3s infinite;
}

.floating-button.whatsapp i {
    animation: none;
    font-size: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin: 3rem 0 2rem 0;
    }
    
    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-service-item {
        padding: 1rem;
    }
    
    .hero-service-item i {
        font-size: 1.5rem;
    }
    
    .hero-service-item h3 {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 1rem;
    }

    .service-card {
        margin: 0 1rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-button {
        padding: 10px 15px;
    }

    .floating-button i {
        font-size: 1.3rem;
    }

    .floating-button.whatsapp i {
        font-size: 1.7rem;
    }

    .about-text .about-highlight {
        font-size: 1.2rem;
    }

    .about-text .about-slogan {
        font-size: 1.1rem;
    }

    .partner-item img {
        max-width: 150px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin: 2.5rem 0 2rem 0;
    }
    
    .hero-services {
        grid-template-columns: 1fr;
    }

    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.6rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .floating-button {
        padding: 8px 12px;
    }

    .floating-button i {
        font-size: 1.2rem;
    }

    .floating-button.whatsapp i {
        font-size: 1.6rem;
    }

    .partner-item img {
        max-width: 120px;
        height: 40px;
    }
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: white;
}

.partners-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-item img {
    max-width: 180px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: #0056b3;
}

.popup-body {
    text-align: center;
}

.popup-image {
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: #f8f9fa;
    padding: 2rem;
}

.popup-image img {
    max-width: 200px;
    height: auto;
}

.popup-body h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup-body p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.popup-steps {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    gap: 1rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.step i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.5rem;
    display: block;
}

.step span {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.popup-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.popup-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 1.5rem;
    }

    .popup-steps {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step {
        padding: 0.5rem;
    }

    .popup-image img {
        max-width: 150px;
    }
} 