/* =========================
   GLOBAL
========================= */

:root{
    --primary:#2563EB;
    --primary-dark:#1D4ED8;
    --dark:#0F172A;
    --text:#334155;
    --light:#F8FAFC;
    --white:#ffffff;
    --border:#E2E8F0;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:100px 0;
}

h1,h2,h3,h4{
    font-family:'Playfair Display',serif;
    color:var(--dark);
}

.container{
    max-width:1200px;
}

/* =========================
   HEADER
========================= */

.site-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 1px 20px rgba(0,0,0,.05);
}

.navbar{
    min-height:80px;
}

.navbar-brand img{
    height:130px;
    width:auto;
}

.nav-link{
    color:var(--dark);
    font-weight:500;
    margin:0 10px;
}

.nav-link:hover{
    color:var(--primary);
}

.header-btn{
    padding:12px 24px;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    background:var(--primary);
    border:none;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.btn-outline-primary{
    border:2px solid var(--primary);
    color:var(--primary);
    border-radius:10px;
    padding:12px 28px;
}

.btn-outline-primary:hover{
    background:var(--primary);
    color:white;
}

/* =========================
   HERO
========================= */

.hero-section{
    padding-top:120px;
    padding-bottom:120px;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #f6f9ff 100%
    );
}

.hero-badge{
    display:inline-block;

    background:#EAF1FF;

    color:var(--primary);

    padding:8px 18px;

    border-radius:100px;

    font-weight:600;

    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:var(--primary);
}

.hero-content p{
    font-size:20px;
    max-width:550px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-image{
    border-radius:24px;

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);
}

/* =========================
   USP
========================= */

.usp-section{
    background:white;
}

.usp-card{
    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);

    height:100%;

    transition:.3s;
}

.usp-card:hover{
    transform:translateY(-8px);
}

.usp-icon{
    font-size:42px;
    margin-bottom:20px;
}

.usp-card h3{
    margin-bottom:10px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:48px;
    margin-top:15px;
}

/* =========================
   SERVICES
========================= */

.services-section{
    background:var(--light);
}

.service-card{
    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    height:100%;

    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.service-card h4{
    margin-bottom:15px;
}

/* =========================
   BRANCHEN
========================= */

.branchen-section{
    background:var(--dark);
}

.branchen-section .section-title h2{
    color:white;
}

.branchen-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.branchen-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.branchen-card::after{
    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.15)
    );
}

.branchen-card span{
    position:absolute;

    left:20px;
    bottom:20px;

    color:white;

    font-size:22px;

    font-weight:600;

    z-index:2;
}

/* =========================
   ABOUT
========================= */

.about-image{
    border-radius:20px;
}

.about-content h2{
    font-size:52px;
    margin-bottom:25px;
}

.stats{
    margin-top:40px;
}

.stat-item{
    text-align:center;
}

.stat-item h3{
    font-size:42px;
    color:var(--primary);
}

/* =========================
   CONTACT
========================= */

.contact-section{
    background:#f8fafc;
}

.contact-box{
    background:white;

    padding:50px;

    border-radius:24px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);
}

.contact-info h4{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
}

.form-control{
    border-radius:12px;
    padding:14px;
}

textarea.form-control{
    min-height:180px;
}

/* =========================
   CTA
========================= */

.cta-section{
    background:
    linear-gradient(
    135deg,
    #0F172A,
    #1D4ED8
    );

    color:white;

    text-align:center;
}

.cta-section h2{
    color:white;
    font-size:52px;
}

.cta-section p{
    font-size:20px;
    margin-top:15px;
    margin-bottom:30px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#0F172A;
    color:white;
    padding:50px 0;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
}

.footer-links a{
    color:white;
    margin-right:20px;
}

.footer-links a:hover{
    color:#60A5FA;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.hero-content{
    text-align:center;
}

.hero-content h1{
    font-size:52px;
}

.hero-image{
    margin-top:50px;
}

.section-title h2{
    font-size:36px;
}

.about-content{
    margin-top:40px;
    text-align:center;
}

}

@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:18px;
}

.hero-buttons{
    justify-content:center;
}

section{
    padding:70px 0;
}

.cta-section h2{
    font-size:36px;
}

}