/* ============================================
   Master Glass & Pneu - Styles V2 (Professional Icons)
   Theme: Yellow, Black, Red (Belgian colors)
   ============================================ */

/* CSS Variables */
:root {
    --yellow: #FFD700;
    --yellow-dark: #E6C200;
    --yellow-light: #FFF3B0;
    --red: #E31B23;
    --red-dark: #B81620;
    --black: #1A1A1A;
    --black-light: #2D2D2D;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --gray-dark: #888888;
    --text: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.highlight {
    color: var(--yellow-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--red);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--black);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-master {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
}

.logo-glass {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/IMG_9692.png') center/cover no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding-top: 80px;
}

.hero-logo {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-logo .logo-master {
    color: var(--yellow);
}

.hero-logo .logo-glass {
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--yellow);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--yellow);
    font-weight: 600;
}

.badge-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--yellow);
}

.service-card:hover .service-icon-wrapper {
    background: var(--yellow);
}

.service-card:hover .service-icon {
    color: var(--black);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-icon {
    width: 36px;
    height: 36px;
    color: var(--yellow);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.service-card strong {
    color: var(--red);
    font-size: 1.1rem;
}

/* ============================================
   Promo Section
   ============================================ */
.promo {
    padding: 100px 0;
    background: var(--black);
}

.promo-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.promo-content {
    padding: 50px;
}

.promo-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.promo-label-icon {
    width: 16px;
    height: 16px;
}

.promo-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.highlight-amount {
    color: var(--yellow);
    font-size: 3rem;
}

.promo-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.promo-benefits {
    margin-bottom: 30px;
}

.promo-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.95rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--yellow);
    flex-shrink: 0;
}

.promo-image {
    height: 100%;
    min-height: 400px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
}

.why-us .section-title {
    color: var(--black);
}

.why-us .highlight {
    color: var(--red);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-item:hover .why-icon-wrapper {
    transform: scale(1.1);
    background: var(--red);
}

.why-icon {
    width: 32px;
    height: 32px;
    color: var(--yellow);
}

.why-item:hover .why-icon {
    color: var(--white);
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--black);
}

.why-item p {
    color: rgba(0, 0, 0, 0.7);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--black);
    padding: 40px;
    border-radius: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    width: 22px;
    height: 22px;
    color: var(--yellow);
}

.contact-item h4 {
    color: var(--yellow);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    color: var(--white);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--yellow);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.map-container iframe {
    display: block;
}

.map-btn {
    display: flex;
    text-align: center;
    margin: 20px;
    width: calc(100% - 40px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--black);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--yellow);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   Mobile Call Button
   ============================================ */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(227, 27, 35, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.call-icon {
    width: 26px;
    height: 26px;
}

.mobile-call-btn:hover {
    transform: scale(1.1);
    background: var(--red-dark);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 27, 35, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(227, 27, 35, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 27, 35, 0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .promo-card {
        grid-template-columns: 1fr;
    }

    .promo-image {
        min-height: 300px;
        order: -1;
    }

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

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-logo {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
    }

    .badge {
        justify-content: center;
    }

    .promo-content {
        padding: 30px;
    }

    .promo-content h2 {
        font-size: 1.8rem;
    }

    .highlight-amount {
        font-size: 2.2rem;
    }

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

    .gallery-item-large {
        grid-column: span 1;
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Show mobile call button */
    .mobile-call-btn {
        display: flex;
    }

    /* Add padding at bottom for mobile call button */
    .footer {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 25px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .service-icon {
        width: 30px;
        height: 30px;
    }
}
