:root {
    --primary: #1a1a1a;
    /* Dark background from logo style */
    --primary-dark: #000000;
    --secondary: #ff9d00;
    /* HÜPPE Orange/Gold */
    --secondary-hover: #e68e00;
    --accent: #2ecc71;
    --dark: #121d2c;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8fbff;
    --border-color: #e1e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 126, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Badge */
.badge {
    background-color: rgba(255, 126, 0, 0.15);
    color: var(--secondary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

/* Sub-title */
.sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

/* Header & Nav */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-info span {
    margin-right: 25px;
}

.top-info i {
    color: var(--secondary);
    margin-right: 8px;
}

.top-info a {
    color: var(--white);
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
}

.navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    height: 90px;
    /* Increased size */
    width: auto;
    transition: var(--transition);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.brand-item {
    text-align: center;
    flex: 1 1 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brand-item img {
    max-width: 100%;
    height: 60px;
    /* Sightly larger */
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 85vh;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18, 29, 44, 0.9) 0%, rgba(18, 29, 44, 0.4) 100%);
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-btns .btn {
    margin-right: 20px;
}

/* Features */
.features {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

@media (max-width: 768px) {
    .features {
        margin-top: -30px;
    }
}

.feature-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--light-bg);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--white);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-img {
    flex: 1;
    position: relative;
    padding-right: 50px;
}

.about-img img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 126, 0, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-content h2 span {
    color: var(--primary);
}

.about-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.check-list li {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark);
}

.section-header h2 span {
    color: var(--primary);
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    transition: var(--transition);
}

.read-more {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.read-more i {
    margin-left: 10px;
    font-size: 0.8rem;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon,
.service-card:hover .read-more {
    color: var(--white);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2.5rem;
}

.cta-banner h2 span {
    color: var(--secondary);
}

.cta-actions {
    text-align: right;
}

.cta-actions .btn {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

footer h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p i {
    color: var(--secondary);
    margin-right: 12px;
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.brand-item {
    text-align: center;
    flex: 1 1 150px;
    max-width: 200px;
}

.brand-item h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.brand-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.brand-item.authorized h4 {
    color: var(--secondary);
    font-size: 1.8rem;
}

/* Footer bottom fix */
.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 157, 0, 0.3);
}

.policy-content h2 {
    margin: 30px 0 15px;
    color: var(--dark);
}

.policy-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(18, 29, 44, 0.8), rgba(18, 29, 44, 0.8)), url('assets/hero-bg.png') center/cover;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb i {
    font-size: 0.8rem;
    opacity: 0.5;
}

.padding-100 {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* About Page Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-item h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 5px;
}

.choice-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.choice-card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.service-detail-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-detail-card .content {
    padding: 30px;
}

.service-detail-card h3 {
    margin-bottom: 15px;
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Page */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-top: 30px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 15px;
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

.w-100 {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {

    .hero h1,
    .page-header h1 {
        font-size: 2.8rem;
    }

    .navbar .container {
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 40px 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        color: var(--primary);
    }

    .about .flex-row,
    .cta-banner .flex-row,
    .about-page-content .flex-row {
        flex-direction: column;
        text-align: center;
    }

    .about-img {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .cta-actions {
        text-align: center;
        margin-top: 30px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero {
        min-height: 85vh;
        height: auto;
        padding: 100px 0 140px;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero .badge {
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns .btn {
        margin: 0;
        width: 100%;
        max-width: 280px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: zoom-out;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 50px;
    right: 50px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-size: 1.2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: zoom-in;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}