/* =======================================================
   GLOBAL RESET + BASE STYLE
   ======================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #fafafa;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px;
    color: #111;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.25s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, select {
    font-family: inherit;
}

ul, ol {
    list-style: none;
}


/* =======================================================
   VARIJABLE – #111111 PALETA
   ======================================================= */

:root {
    --primary: #111111;
    --primary-dark: #000000;
    --light: #ffffff;
    --light-muted: #f5f5f5;
    --text-main: #111111;
    --text-muted: #666666;
    --nav-bg: rgba(0, 0, 0, 0.75);
    --radius: 10px;
    --transition: 0.25s ease;
    --max-width: 1200px;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}


/* =======================================================
   NAVBAR – FIXED + RESPONSIVE
   ======================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1000;
    background: var(--nav-bg);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.nav-logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}


/* MOBILE BURGER */

.nav-mobile-icon {
    display: none;
    color: #ffffff;
    font-size: 34px;
    cursor: pointer;
    position: relative;
    z-index: 2000;
}

.nav-mobile-icon i {
    transition: 0.2s linear;
}

/* MOBILE DROPDOWN */

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #111111;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    transition: 0.35s ease;
    z-index: 1500;
}

.nav-mobile a {
    color: #ffffff;
    padding: 14px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 18px;
}

.nav-mobile.open {
    right: 0;
}

/* Language Switcher */
.nav-lang {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-right: 10px;
}

/* stil linkova */
.nav-lang a {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 3px;
    opacity: 0.8;
    transition: 0.25s ease;
}

/* underline efekat kao nav links */
.nav-lang a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

.nav-lang a:hover {
    opacity: 1;
}

.nav-lang a:hover::after {
    width: 100%;
}

/* aktivni jezik */
.nav-lang .active {
    opacity: 1;
}

.nav-lang .active::after {
    width: 100%;
}

/* sakriti na mobilu (po tvojoj želji) */
@media(max-width: 900px) {
    .nav-lang {
        display: none;
    }
}


.mobile-lang {
    margin-top: 15px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
.mobile-lang a {
    color: #fff;
    font-weight: 600;
}

/* MOBILE SHOW/HIDE */

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .nav-mobile-icon {
        display: block;
    }
}

/* WhatsApp dugme */
.nav-whatsapp {
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    color: white;
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: 0.25s ease;
    z-index: 2000; 
}

.nav-whatsapp:hover {
    background: #1ebe5a;
    transform: scale(1.05);
}

/* Burger i WhatsApp raspored */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* PRIKAZ SAMO NA MOBILU */
@media (max-width: 900px) {
    .nav-whatsapp {
        display: flex;
    }
}
/* =======================================================
   HERO
   ======================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: url("../images/hero-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 110px; /* nav height */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-card {
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 22px;
    color: #eaeaea;
}


/* HERO BOXES */

.hero-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: var(--max-width);
    margin: 35px auto 0 auto;
}

.hero-box {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 18px 12px;
    text-align: center;
    border: 1px solid #e2e2e2;
}

.hero-box i {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--primary);
}

.hero-box h3 {
    font-size: 15px;
}


/* =======================================================
   SEARCH CARD
   ======================================================= */

.search-card {
    margin: 35px auto 0 auto;
    max-width: var(--max-width);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 22px 24px 26px 24px;
}

.search-tabs {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 0;
    cursor: pointer;
    color: var(--text-muted);
}

.tab-btn.active {
    color: var(--primary);
    position: relative;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    display: none !important;
}

.tab-content.active {
    display: grid !important;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-field label {
    font-size: 12px;
    color: var(--text-muted);
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #dcdcdc;
    background: var(--light-muted);
    font-size: 15px;
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--primary);
    background: #ffffff;
}

.search-submit {
    align-self: flex-end;
}

.search-btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.search-btn:hover {
    background: var(--primary-dark);
}


/* =======================================================
   RESPONSIVE FIX – MOBILE WITHOUT SCROLL
   ======================================================= */

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 44px; }
    .hero-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-form {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 18px; }
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    html, body {
        overflow-x: hidden !important;
        max-width: 100%;
    }

    .hero-content h1 { font-size: 30px; }
    .hero-content p { font-size: 16px; }

    .hero-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-submit {
        grid-column: span 1;
    }

    .search-btn {
        margin-top: 5px;
    }
}


.marquee-section {
    overflow: hidden;
    white-space: nowrap;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.marquee-track {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

.marquee-track span {
    color: white;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.marquee-section {
    margin-top: 0;
}


/* =======================================================
   CARS GRID
   ======================================================= */
/* ========== CAR LIST ========== */

.cars-section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 30px;
}

.car-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.car-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-info {
    padding: 20px;
}

.car-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.car-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    margin-bottom: 16px;
}

.car-details p {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.car-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.car-btn {
    display: block;
    background: #111;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.car-btn:hover {
    background: #000;
}


/* Responsive */
@media (max-width: 1100px) {
    .cars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .cars-grid {
        grid-template-columns: 1fr;
    }
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pg-btn {
    padding: 8px 14px;
    background: #ebebeb;
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.pg-btn:hover {
    background: #b3b4b4;
}

.pg-btn.active {
    background: #1d1d1d;
    color: white;
}

.pg-dots {
    padding: 8px 14px;
    color: #666;
}

/* SECTION WRAPPER */
.steps-section {
    padding: 60px 0 120px;
    background: #e6e6e6;
    text-align: center;
}

.steps-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* FLEX WRAPPER */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

/* INDIVIDUAL BOX */
.step-box {
    position: relative;
    background: #141414;
    padding: 50px 20px 40px;
    width: 32%;
    min-height: 230px;
    border-radius: 8px;
    color: white;
    text-align: center;
}

.step-first {
    background: #141414;
    transition: 0.2s ease;
}

.step-first:hover {
    background: #1678e9;
}


/* Step 2 color */
.step-blue {
    background: #141414;
    transition: 0.2s ease;
}

.step-blue:hover {
    background: #e22d2d;
}

/* Step 3 color */
.step-green {
    background: #141414;
}

.step-green:hover {
    background: #35ca5f;
}

/* Number circle */
.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #0F2B44;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Title */
.step-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* Icons */
.step-box i {
    font-size: 40px;
    margin-top: 10px;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

.shine-btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    background: #111;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s ease;
}

.shine-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Shine element (na početku skriven van dugmeta) */
.shine-btn .shine {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transform: skewX(-20deg);
    opacity: 0;
    transition: 0s;
}

/* Shine animacija se pokreće SAMO na hover */
.shine-btn:hover .shine {
    animation: shine-move 0.85s ease-out forwards;
    opacity: 1;
}

@keyframes shine-move {
    0%   { left: -100%; }
    100% { left: 140%; }
}

/* MOBILE */
@media (max-width: 768px) {
    .step-box {
        width: 100%;
    }
}

/* BANNER VIDEO/IMAGE */
.footer-banner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* FOOTER MAIN */
.footer {
    background: #0f0f0f;
    color: #fff;
    padding: 60px 0 35px;
    margin-top: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* COLUMNS */
.footer-col {
    width: 30%;
    min-width: 260px;
}

/* LOGO */
.footer-logo {
    width: 130px;
    margin-bottom: 20px;
}

/* TEXT */
.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #ebebeb;
}

/* HEADINGS */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

/* CONTACT LINKS */
.footer-col p {
    font-size: 15px;
    margin: 7px 0;
    color: #ebebeb;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* ICON IN CONTACT */
.footer-col p i {
    font-size: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* SOCIAL ICONS */
.socials {
    margin-top: 15px;
}

.socials a {
    font-size: 28px;
    margin-right: 15px;
    color: #ffffff;
    transition: 0.3s;
}

.socials a:hover {
    color: #cccccc;
    text-decoration: none;
}

/* IMPRESSUM LINK */
.impresum-link {
    color: #A7C7FF;
    font-weight: 600;
}

.impresum-link:hover {
    text-decoration: underline;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(206, 206, 206, 0.37);
    font-size: 14px;
    color: #d0d8e2;
}

.footer-bottom a {
    color: #c2c2c2;
}

.footer-bottom a:hover {
    text-decoration: none;
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-col {
        width: 100%;
    }
    .footer-banner img {
        height: 180px;
    }
}


.hero-cta {
    text-align: center;
    margin-top: 40px;
}

.white-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #ffffff;
    color: #000000;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.25s ease;
    text-decoration: none;
}

.white-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    border-color: #000;
}

.typewriter {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.25);
    min-height: 60px; /* da ne skace dok se kuca */
}

.hero-subtext {
    max-width: 700px;
    font-size: 18px;
    color: #f0f0f0;
    margin-top: 20px;
    line-height: 1.6;
}

/* =======================================================
   ABOUT INTRO SECTION
   ======================================================= */

.about-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 0;
}

.about-left {
    width: 50%;
}

.about-welcome {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-title span {
    color: var(--primary);
}

.about-text {
    font-size: 18px;
    color: #444;
    max-width: 500px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.about-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    border: 2px solid #000;
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.25s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* RIGHT SIDE */
.about-right {
    width: 50%;
}

.about-right img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* MOBILE */
@media (max-width: 900px) {
    .about-intro {
        flex-direction: column;
        text-align: center;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-right img {
        max-height: 350px;
        object-fit: cover;
    }
}

/* ===============================
   STATS SECTION – CLEAN VERSION
   =============================== */

.stats-section {
    margin-top: 70px;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 84px;
    font-weight: 900;
    color: #111;
}

.stat-label {
    font-size: 20px;
    color: #555;
    margin-top: 10px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 800px) {
    .stats-section {
        flex-direction: column;
        gap: 35px;
    }

    .stat-number {
        font-size: 52px;
    }
}

.why-us-section {
    padding: 80px 0;
}

.why-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.why-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.25s ease;
    text-align: center;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.why-item i {
    font-size: 46px;       /* VEĆA IKONICA */
    color: #111;
    font-weight: 900;
    margin-bottom: 15px;
    display: block;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.marquee-logos {
    background: #fff;
    padding: 45px 0;
    overflow: hidden;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.logos-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-logos 20s linear infinite;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 130px; /* POVECAN RAZMAK IZMEDJU LOGOTIPA */
}

.logos-track img {
    height: 80px;
    opacity: 0.55;       /* MANJE UPADLJIVO */
    filter: grayscale(100%); /* PROFESIONALAN AUTOHAUS LOOK */
    transition: 0.3s ease;
}

.logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.12);
}

/* Smooth infinite scroll */
@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logos-separator {
    width: 100px;   /* OVDE POVECAVAS ILI SMANJUJES RAZMAK */
    height: 100px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 120px 0 0;
  background: #0d0d0d url("../images/contact.jpg"); /* Ubaci svoj pattern */
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

/* CONTAINER */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 60px;
}


.contact-section {
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* tamni overlay */
    z-index: 1;
    pointer-events: none; /* da ništa ne blokira */
}


/* Kontakt sekcija - pozadina + overlay */
.contact-section {
    position: relative;
    padding: 120px 0 0;
    background: #0d0d0d url("../images/contact.jpg");
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}


.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%; 
    background: rgba(0,0,0,0.55);
    z-index: 1;
    pointer-events: none;
}

.contact-map {
    position: relative;
    z-index: 3; 
    display: flex;
    justify-content: center;
    padding-bottom: 60px; 
}

.contact-map iframe {
    width: 90%;              
    max-width: 1100px;      
    height: 420px;
    border: none;
    border-radius: 12px;     
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.contact-container,
.contact-top,
.contact-left,
.contact-right {
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */
.contact-left {
  width: 50%;
}

#typewriter {
  font-size: 37px;
  font-weight: 900;
  color: #ffffff;     
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #ddd;
}

/* INFO ITEMS */
.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.37);
}

.info-item i {
  font-size: 32px;
  color: #ffffff;
}

.info-item span {
  font-size: 16px;
  opacity: 0.8;
}

.info-item p {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

/* FORM RIGHT SIDE */
.contact-right {
  width: 50%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  backdrop-filter: blur(4px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 0 12px rgba(255,255,255,0.35);
    transition: 0.25s ease;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  background: #f5f5f5;
  color: #000;
  padding: 16px;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: .3s;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-form button:hover {
  background: #e0e0e0;
  transform: scale(1.02);
}

/* MOBILE */
@media(max-width: 900px) {

  .contact-container {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    width: 100%;
  }

  #typewriter {
    font-size: 36px;
    text-align: center;
  }

  .contact-desc {
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }
}

@media(max-width: 768px) {
    .contact-map iframe {
        height: 300px;
        border-radius: 10px;
    }
}

/* ===============================
   FINANZIERUNGSBEDINGUNGEN
=============================== */

.finance-section {
    padding: 80px 0;
}

.finance-title {
    text-align: center;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

@media(max-width: 768px) {
    .finance-title {
        font-size: 28px;
    }
}


.finance-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

/* TOP BOXES */
.finance-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.finance-box {
    background: #fff;
    padding: 35px 28px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.finance-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.finance-box i {
    font-size: 48px;
    color: #111;
    margin-bottom: 15px;
}

.finance-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.finance-box p {
    font-size: 15px;
    color: #666;
}

/* ELIGIBILITY BAR */
.finance-eligibility {
    display: flex;
    margin: 50px 0 40px;
    font-weight: 600;
    border-radius: 12px;
    overflow: hidden;
}

.elig-yes {
    flex: 1;
    background: #14b85a;
    color: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.elig-no {
    flex: 1;
    background: #e44d4d;
    color: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.elig-yes i, .elig-no i {
    font-size: 22px;
}

/* REQUIREMENTS GRID */
.req-title {
    margin-bottom: 30px;
    font-size: 46px;
    font-weight: 700;
}

@media(max-width: 768px) {
    .req-title {
        font-size: 32px;
    }
}


.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.req-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.req-item:hover {
    transform: translateY(-4px);
}

.req-item i {
    font-size: 42px;
    margin-bottom: 12px;
    color: #111;
}

.req-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.req-item p {
    font-size: 14px;
    color: #666;
}

/* NOTE */
.finance-note {
    margin-top: 35px;
    font-size: 15px;
    color: #666;
    text-align: center;
}