:root {
    --primary: #004aad;
    --secondary: #ff3131;
    --dark: #1a1a1a;
    --light: #f4f7f6;
    --white: #ffffff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background: var(--white);
    color: var(--dark);
}

nav {
    background: rgba(255, 255, 255, 0.95);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    text-transform: uppercase;
}

.logo span { color: var(--secondary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--primary); }

.nav-call-btn {
    background: var(--secondary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
}

.nav-small-note { font-size: 0.7rem; opacity: 0.8; }


.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger div {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.contact-flex { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.contact-text, .contact-img { flex: 1; min-width: 300px; }
.contact-img img { width: 100%; border-radius: 30px; }

.contact-box { background: var(--light); padding: 30px; border-radius: 20px; margin-top: 30px; }
.tel-big {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    display: block;
    margin-top: 15px;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('gepek.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3rem; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; margin-bottom: 35px; }

.btn-main {
    background: var(--secondary);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
}


section { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; color: var(--primary); }

.intro-card{
    max-width: 1050px;
    margin: 0 auto 55px;
    background: var(--light);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.intro-title{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.25;
}

.intro-card h3{
    margin-top: 22px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 800;
}

.intro-card p{
    margin: 10px 0;
    line-height: 1.7;
    color: rgba(0,0,0,0.78);
}

.intro-sep{
    border: none;
    height: 1px;
    background: rgba(0,0,0,0.10);
    margin: 26px 0;
}

.intro-list{
    margin: 12px 0 0 18px;
    padding: 0;
    line-height: 1.75;
    color: rgba(0,0,0,0.80);
}

.intro-list li{ margin: 6px 0; }
.intro-list li strong{ color: var(--dark); }

.intro-list.cols{
    columns: 2;
    column-gap: 45px;
}

.intro-list.compact li{ margin: 3px 0; }

.intro-places{
    background: rgba(255,255,255,0.75);
    border-radius: 16px;
    padding: 14px 16px;
}

.intro-strong{
    font-weight: 800;
    color: var(--dark);
    margin-top: 14px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card img { width: 100%; height: 230px; object-fit: cover; }
.card-body { padding: 30px; }
.card-body h3 { color: var(--primary); margin-bottom: 10px; }


.pricing-section { background: var(--light); }
.price-card {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 35px;
    border-bottom: 1px solid #eee;
}

.price-val { color: var(--secondary); font-weight: 800; }



@media (max-width: 968px) {
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 80px);
        padding: 50px 0;
        transition: 0.4s;
    }

    .nav-links.active { left: 0; }
    .hero h1 { font-size: 2.2rem; }

    .intro-card{ padding: 26px; margin-bottom: 40px; }
    .intro-title{ font-size: 1.35rem; }
    .intro-list.cols{ columns: 1; }
}


.open div:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.open div:nth-child(2) { opacity: 0; }
.open div:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }


.tel-big {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    display: inline-block; 
    margin-top: 15px;
    transition: 0.3s ease; 
}

.tel-big:hover {
    color: var(--secondary); 
    transform: scale(1.05); 
}


.nav-call-btn {
    background: var(--secondary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-call-btn:hover {
    background: #ff5252; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
}