* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: #ffffff;
    color: #2d3436;
    line-height: 1.6;
}

header {
    background: rgba(11, 53, 44, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    height: 45px;
    max-width: 200px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.contact-buttons a {
    color: #fff;
    text-decoration: none;
    margin-left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: #124a3e;
    transition: background 0.3s;
}

.contact-buttons a:hover {
    background: #1a6356;
}

main {
    margin-top: 0;
}

.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(11, 53, 44, 0.95), rgba(11, 53, 44, 0.85)), url('https://i.ibb.co/bjBzR2P2/forduce-arkaplan.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(11, 53, 44, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    width: 100%;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b352c;
    position: relative;
    padding-bottom: 1.5rem;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0b352c;
    border-radius: 2px;
}

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

.service-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(11, 53, 44, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(11, 53, 44, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 53, 44, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(11, 53, 44, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 2.8rem;
    color: #0b352c;
    margin-bottom: 1.8rem;
    transition: all 0.4s ease;
    background: rgba(11, 53, 44, 0.08);
    padding: 1rem;
    border-radius: 12px;
}

.service-card:hover i {
    transform: scale(1.1) rotate(-5deg);
    background: #0b352c;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0b352c;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

footer {
    padding: 2rem;
    background: #0b352c;
    color: #fff;
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    margin-top: 3rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
    width: auto;
    min-width: 200px;
    background: transparent;
    border: 2px solid #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffffff;
    color: #0b352c;
    border-color: #ffffff;
}

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 6rem 1.5rem 4rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .services {
        padding: 6rem 1.5rem;
    }
    
    .services h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-section {
        padding: 6rem 1.5rem;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-buttons {
        display: none;
    }
    
    .services {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .services h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card i {
        font-size: 2.4rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
}

.typing-text {
    min-height: 30px;
    margin: 1rem 0;
    color: #8fe3cd;
    font-size: 1.2rem;
}

.typing-text span {
    display: none;
    position: relative;
}

.typing-text span.active {
    display: inline-block;
    animation: typing 3s steps(30, end);
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

.contact-section {
    padding: 8rem 2rem;
    background: #ffffff;
    text-align: center;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.contact-section p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-buttons-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #ffffff;
    color: #0b352c;
    border: 2px solid #0b352c;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    min-width: 250px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #0b352c;
    color: #ffffff;
    transform: translateY(-5px);
}

.contact-btn i {
    font-size: 1.8rem;
}

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