/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background: rgba(7, 15, 32, 0.97);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Company name in header */

.logo {
    color: #ffffff;

    font-size: 17px;

    font-weight: 800;

    line-height: 1.15;

    max-width: 300px;
}

.logo span {
    display: block;

    color: #f59e0b;

    font-size: 11px;

    letter-spacing: 1.2px;

    margin-top: 4px;
}


.navigation {
    display: flex;

    align-items: center;

    gap: 30px;
}

.navigation a {
    color: #e5e7eb;

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s;
}

.navigation a:hover {
    color: #f59e0b;
}

.navigation .nav-button {
    background: #f59e0b;

    color: #111827;

    padding: 11px 19px;

    border-radius: 6px;
}

.navigation .nav-button:hover {
    background: #fbbf24;

    color: #111827;
}


/* =========================================
   FLOATING CONTACT
========================================= */

.floating-contact {
    position: fixed;

    right: 22px;

    bottom: 28px;

    z-index: 2000;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.floating-btn {
    min-width: 48px;
    height: 48px;

    padding: 0 15px;

    border-radius: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.20);

    transition: 0.25s;
}

.floating-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: #25D366;
}

.email-btn {
    background: #f59e0b;

    color: #111827;
}

.floating-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;
}

.floating-label {
    display: inline-block;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-block;

    padding: 14px 24px;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.2s;
}

.primary-btn {
    background: #f59e0b;

    color: #111827;
}

.primary-btn:hover {
    background: #fbbf24;

    transform: translateY(-2px);
}

.secondary-btn {
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.5);

    margin-left: 8px;
}

.secondary-btn:hover {
    background: #ffffff;

    color: #111827;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 720px;

    padding-top: 76px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            rgba(7,15,32,0.87),
            rgba(7,15,32,0.93)
        ),
        linear-gradient(
            135deg,
            #14233f,
            #060e1e
        );
}

.hero-container {
    display: flex;

    align-items: center;
}

.hero-content {
    max-width: 800px;

    padding: 90px 0;
}

.hero-small-title {
    color: #f59e0b;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hero h1 {
    color: #ffffff;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.05;

    margin-bottom: 24px;
}

.hero-description {
    color: #cbd5e1;

    font-size: 18px;

    max-width: 700px;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;

    align-items: center;
}


/* =========================================
   SECTION
========================================= */

section {
    padding: 90px 0;
}

.section-label {
    color: #d97706;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.section-heading {
    text-align: center;

    max-width: 720px;

    margin: 0 auto 50px;
}

.section-heading h2 {
    font-size: 40px;

    line-height: 1.15;

    margin-bottom: 14px;
}

.section-heading > p:last-child {
    color: #64748b;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    background: #f8fafc;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.about-image-box {
    min-height: 390px;

    border-radius: 16px;

    background:
        linear-gradient(
            rgba(11,23,48,0.75),
            rgba(11,23,48,0.92)
        ),
        linear-gradient(
            135deg,
            #263b60,
            #0b1730
        );

    display: flex;

    align-items: flex-end;
}

.about-overlay {
    padding: 42px;

    color: #ffffff;
}

.about-big-text {
    display: block;

    color: #f59e0b;

    font-size: 72px;

    font-weight: 900;

    line-height: 1;
}

.about-overlay p {
    color: #cbd5e1;

    margin-top: 12px;
}

.about-content h2 {
    font-size: 40px;

    line-height: 1.15;

    margin-bottom: 20px;
}

.about-content > p:not(.section-label) {
    color: #64748b;

    margin-bottom: 16px;
}

.about-content .btn {
    margin-top: 10px;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    background: #ffffff;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    padding: 28px;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    background: #ffffff;

    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: #f59e0b;

    box-shadow:
        0 15px 35px rgba(15,23,42,0.08);
}

.service-icon {
    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff4d6;

    border-radius: 10px;

    font-size: 22px;

    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 19px;

    margin-bottom: 8px;
}

.service-card p {
    color: #64748b;

    font-size: 14px;
}


/* =========================================
   WHY
========================================= */

.why-section {
    background: #f8fafc;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.stat-box {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 12px;

    padding: 28px;
}

.stat-box strong {
    display: block;

    color: #0b1730;

    font-size: 36px;

    line-height: 1;

    margin-bottom: 8px;
}

.stat-box span {
    color: #64748b;

    font-size: 14px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    background: #0b1730;

    text-align: center;

    color: #ffffff;
}

.cta-content {
    max-width: 750px;
}

.cta-section .section-label {
    color: #f59e0b;
}

.cta-section h2 {
    font-size: 42px;

    line-height: 1.15;

    margin-bottom: 18px;
}

.cta-section p:not(.section-label) {
    color: #cbd5e1;

    max-width: 650px;

    margin: 0 auto 28px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;

    line-height: 1.3;

    margin-bottom: 25px;
}

.contact-item {
    display: flex;

    gap: 16px;

    margin-bottom: 25px;
}

.contact-icon {
    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff4d6;

    border-radius: 8px;
}

.contact-item strong {
    display: block;

    margin-bottom: 4px;
}

.contact-item p {
    color: #64748b;
}

.contact-item a {
    transition: 0.2s;
}

.contact-item a:hover {
    color: #d97706;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
    background: #f8fafc;

    padding: 30px;

    border-radius: 12px;

    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #dbe1ea;

    border-radius: 7px;

    font-family: inherit;

    font-size: 14px;

    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f59e0b;
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

.contact-form button {
    border: none;

    cursor: pointer;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #070f20;

    color: #cbd5e1;

    padding-top: 35px;
}

.footer-container {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    align-items: center;

    padding-bottom: 30px;
}

.footer h3 {
    color: #ffffff;

    font-size: 17px;

    margin-bottom: 5px;
}

.footer p {
    font-size: 13px;
}

.footer-links {
    display: flex;

    gap: 22px;
}

.footer-links a {
    font-size: 13px;
}

.footer-links a:hover {
    color: #f59e0b;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 20px 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .navigation {
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .navigation {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        display: block;
    }

    .secondary-btn {
        margin-left: 0;

        margin-top: 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 34px;
    }

    .footer-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    /* Floating buttons on mobile */

    .floating-contact {
        right: 14px;

        bottom: 18px;
    }

    .floating-btn {
        width: 48px;

        min-width: 48px;

        height: 48px;

        padding: 0;

        border-radius: 50%;
    }

    .floating-label {
        display: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    section {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-image-box {
        min-height: 300px;
    }

    .about-big-text {
        font-size: 58px;
    }

}