/* =====================
   ROOT & RESET
===================== */

:root {
    --orange: #F97316;
    --dark-blue: #0F2D52;
    --light-blue: #E6F0FA;
    --white: #FFFFFF;
    --gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray);
    line-height: 1.6;
   
    padding-top: 0px;

}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* =====================
   HEADER
===================== */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}


header.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 24px;
    width: auto;
    transition: 0.3s;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    transition: 0.3s;
}

header.scrolled .logo img {
    height: 20px;
}

header.scrolled .logo span {
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--orange);
}

/* =====================
   BUTTONS
===================== */

.btn-primary {
    background: var(--orange);
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ea580c;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-blue);
}

/* =====================
   HERO
===================== */

.hero {
    min-height: 90vh;
    background-image: linear-gradient(rgba(15,45,82,0.7), rgba(15,45,82,0.7)),
                      url('https://i.hizliresim.com/nc2ftmr.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* =====================
   ABOUT
===================== */

.about {
    background: var(--light-blue);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stats h3 {
    color: var(--dark-blue);
    font-size: 28px;
}

/* =====================
   SERVICES
===================== */

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-size: 32px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =====================
   CTA
===================== */

.cta {
    background: var(--orange);
    text-align: center;
    padding: 60px 20px;
    color: white;
}

/* =====================
   FOOTER
===================== */

footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 0 0;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #0a1f38;
}

/* =====================
   HAMBURGER
===================== */

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-blue);
}

/* =====================
   MOBILE
===================== */

@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .section {
        padding: 50px 0;
    }

    .hero {
        min-height: 70vh;
    }
}
html {
    scroll-behavior: smooth;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-grid p {
    font-size: 18px;
    color: var(--dark-blue);
}

.about-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid img {
        margin-top: 20px;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.contact-form button {
    padding: 12px 22px;
    border: none;
    border-radius: 5px;
    background: var(--orange);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.btn-maps {
    display: inline-block;
    margin-top: 15px;
    background: var(--dark-blue);
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-maps:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15,45,82,0.3);
}
.btn-instagram {
    display: inline-block;
    margin-top: 15px;
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(221, 42, 123, 0.4);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-video iframe {
    width: 100%;
    max-width: 600px;
    height: 360px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: block;
    margin: auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px){
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-video iframe {
        height: 240px;
    }
}