/* TurboSTO - Professional Automotive Service Website */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

/* CSS Variables for Design System */
:root {
    --turbo-yellow: #FFC100;
    --jet-black: #000000;
    --pure-white: #FFFFFF;
    --overlay-85: rgba(0, 0, 0, 0.85);
    --overlay-60: rgba(0, 0, 0, 0.6);
    --nav-height: 80px;
    
    /* Typography */
    --font-primary: 'Montserrat', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-extrabold: 800;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-smooth: 400ms ease-out;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--pure-white);
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--jet-black);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0;
    transition: background-color var(--transition-fast);
}

.navbar__container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0 0; /* Remove left padding since logo has margin-left */
    position: relative;
}

/* Logo */
.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 200px;
    height: 200px;
    background: #FFC100;
    border-radius: 50%;
    margin-left: 40px;
    transform: translateY(40%);
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 1001;
}

/* Logo small state when scrolling */
.logo-link.small {
    width: 80px;
    height: 80px;
    transform: translateY(0);
    margin-left: 20px;
}

/* Hover State */
.logo-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Active State */
.logo-link:active {
    transform: translateY(40%) scale(0.98);
}

/* Focus State for Accessibility */
.logo-link:focus-visible {
    outline: 2px solid #FFC100;
    outline-offset: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* SVG Logo Styling */
.logo-svg {
    width: 80%;
    height: 80%;
    fill: #000000;
    transition: all 0.3s ease-out;
}

/* SVG scaling in small state */
.logo-link.small .logo-svg {
    width: 70%;
    height: 70%;
}

/* Remove old logo styles - replaced with new implementation above */

/* Navigation Menu */
.navbar__menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 110px;
}

.navbar__menu-item {
    position: relative;
}

.navbar__menu-link {
    /* Typeface */
    font-family: "Montserrat", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    /* Weight */
    font-weight: 600;
    /* Font-size */
    font-size: 18px;
    /* Line-height for vertical centering */
    line-height: 80px;
    /* Text colour */
    color: #FFC100;
    /* Letter-spacing */
    letter-spacing: normal;
    /* Text transform */
    text-transform: none;
    /* Decoration */
    text-decoration: none;
    /* Anti-aliasing */
    font-smooth: always;
    -webkit-font-smoothing: antialiased;
    /* Transition */
    transition: color 0.15s ease-in-out;
}

.navbar__menu-link:hover,
.navbar__menu-link:focus-visible {
    color: #FFFFFF;
    text-decoration: none;
    outline: none;
}

/* Call Button */
.navbar__cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    text-decoration: none;
    padding: 11px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    gap: 8px;
}

.navbar__cta:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    border-color: var(--turbo-yellow);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.cta-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

/* Mobile Menu Toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.navbar__toggle-line {
    width: 28px;
    height: 3px;
    background-color: var(--pure-white);
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.navbar__toggle.active .navbar__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar__toggle.active .navbar__toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active .navbar__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--overlay-85);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--turbo-yellow);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--nav-height));
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../images/optimized/hero-background-1920.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    margin-top: var(--nav-height);
    overflow: hidden;
    will-change: transform; /* GPU acceleration for better performance */
}

/* Responsive background images for different screen sizes */
@media (max-width: 1200px) {
    .hero {
        background-image: url('../images/optimized/hero-background-1200.jpg');
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        var(--overlay-85) 0%,
        var(--overlay-60) 35%,
        rgba(0, 0, 0, 0) 65%
    );
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 80px;
    padding: 40px 0;
}

.hero__content {
    opacity: 0;
    animation: fadeInUp var(--transition-smooth) ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__title {
    font-size: 4rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    color: var(--turbo-yellow);
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--pure-white);
    margin-bottom: 32px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    min-width: 280px;
    box-shadow: 0 4px 16px rgba(255, 193, 0, 0.3);
}

.hero__cta:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    border-color: var(--turbo-yellow);
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
    .navbar__container {
        padding: 0 60px;
    }
    
    .hero__container {
        margin-left: 120px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    /* Logo Responsive - Tablets */
    .logo-link {
        width: 90px;
        height: 90px;
        transform: translateY(10%);
        margin-left: 30px;
    }
    
    .logo-link.small {
        width: 70px;
        height: 70px;
        transform: translateY(0);
        margin-left: 15px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle {
        font-size: 1.25rem;
    }
    
    .navbar__cta .cta-text {
        display: none;
    }
    
    .navbar__cta {
        min-width: auto;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        position: relative;
    }
    
    .navbar__cta .cta-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Tooltip for mobile phone button */
    .navbar__cta::after {
        content: '+420 771 222 111';
        position: absolute;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--jet-black);
        color: var(--turbo-yellow);
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-fast);
        border: 1px solid var(--turbo-yellow);
    }
    
    .navbar__cta:hover::after {
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar__container {
        padding: 0 24px 0 0;
    }
    
    .navbar__menu {
        display: none;
    }
    
    .navbar__toggle {
        display: flex;
    }
    
    /* Logo small state for mobile */
    .logo-link.small {
        width: 65px;
        height: 65px;
        transform: translateY(0);
        margin-left: 15px;
    }
    
    .hero__container {
        margin-left: 0;
        padding: 40px 24px;
        text-align: center;
        max-width: 100%;
    }
    
    /* Mobile optimized hero background */
    .hero {
        background-image: url('../images/optimized/hero-background-768.jpg');
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.125rem;
    }
    
    .hero__cta {
        min-width: 260px;
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    /* Logo Responsive - Small Phones */
    .logo-link {
        width: 75px;
        height: 75px;
        transform: translateY(8%);
        margin-left: 24px;
    }
    
    .logo-link.small {
        width: 60px;
        height: 60px;
        transform: translateY(0);
        margin-left: 12px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__cta {
        min-width: 240px;
        padding: 16px 24px;
    }
    
    .navbar__cta {
        width: 45px;
        height: 45px;
    }
    
    .navbar__cta .cta-icon {
        width: 20px;
        height: 20px;
    }
}

/* Showcase Section */
.showcase {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0;
    background-color: var(--jet-black);
}

.showcase__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: transform 0.5s ease;
}

.showcase:hover .showcase__image {
    transform: scale(1.05);
}

.showcase__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.showcase__content {
    text-align: center;
    z-index: 2;
    padding: 40px;
    max-width: 800px;
    animation: fadeInUp var(--transition-smooth) ease-out;
}

.showcase__title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--turbo-yellow);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.showcase__subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

/* Parallax effect on scroll */
@supports (background-attachment: fixed) {
    .showcase__image-wrapper {
        background-image: url('../images/review.jpg');
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .showcase__image {
        display: none;
    }
}

/* Responsive Design for Showcase */
@media (max-width: 992px) {
    .showcase {
        height: 400px;
    }
    
    .showcase__title {
        font-size: 2.5rem;
    }
    
    .showcase__subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .showcase {
        height: 350px;
    }
    
    .showcase__title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .showcase__subtitle {
        font-size: 1.125rem;
    }
    
    .showcase__content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .showcase {
        height: 300px;
    }
    
    .showcase__title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .showcase__subtitle {
        font-size: 1rem;
    }
}

/* Services Section Styles */
.services {
    background-color: #f5f5f500;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/signal-2025-07-10-132644.svg');
    background-repeat: no-repeat;
    background-size: 75% auto;
    background-position: center center;
    opacity: 0.05;
    pointer-events: none;
}

.services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.services__title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    text-align: center;
    color: var(--jet-black);
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Services Grid */
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Service Card Icon */
.service-card__icon {
    width: 80px;
    height: 80px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 193, 0, 0.3);
}

.service-card__icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--jet-black);
    stroke-width: 2;
    fill: none;
}

/* Service Card Title */
.service-card__title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 40px;
}

/* Service Card List */
.service-card__list {
    list-style: none;
    text-align: left;
    width: 100%;
}

.service-card__list li {
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.service-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--turbo-yellow);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.service-card__list li:last-child {
    margin-bottom: 0;
}

/* Service Actions */
.services__actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.services__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 60px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--font-weight-bold, 700);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    min-width: 200px;
}

.services__btn--price {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border: 2px solid var(--turbo-yellow);
}

.services__btn--price:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.services__btn--book {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border: 2px solid var(--turbo-yellow);
}

.services__btn--book:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.services__btn--details {
    background-color: var(--jet-black);
    color: var(--pure-white);
    border: 2px solid var(--jet-black);
}

.services__btn--details:hover {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 193, 0, 0.3);
}

/* Responsive Design for Services */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    
    .service-card__title {
        font-size: 15px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services__title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card__icon svg {
        width: 35px;
        height: 35px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services {
        padding: 60px 0 80px;
    }
    
    .services__container {
        padding: 0 24px;
    }
    
    .services__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services__actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .services__btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .services__title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .service-card__title {
        font-size: 14px;
        min-height: auto;
    }
    
    .service-card__list li {
        font-size: 13px;
    }
    
    .services__btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Promotions Section */
.promotions {
    background-color: #f5f5f500;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Background Pattern - Same as Services Section */
.promotions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/signal-2025-07-10-132644.svg');
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: center center;
    opacity: 0.05;
    pointer-events: none;
}

.promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.promotions__title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    text-align: center;
    color: var(--turbo-yellow);
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Promotions Grid */
.promotions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Promo Card */
.promo-card {
    background-color: var(--turbo-yellow);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-smooth);
    position: relative;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.promo-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Promo Card Image */
.promo-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.promo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.promo-card:hover .promo-card__image img {
    transform: scale(1.1);
}

/* Promo Card Content */
.promo-card__content {
    padding: 30px;
    background-color: var(--turbo-yellow);
}

.promo-card__title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.promo-card__description,
.promo-card__list {
    font-size: 16px;
    color: var(--jet-black);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-card__list {
    list-style: none;
    padding-left: 0;
}

.promo-card__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.promo-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--jet-black);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.promo-card__validity {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    text-align: center;
    margin: 25px 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

/* Promo Card Button */
.promo-card__button,
.promo-card__cta .promo-card__button {
    display: inline-block;
    width: 100%;
    padding: 18px 24px;
    background-color: var(--pure-white);
    color: var(--jet-black);
    text-align: center;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-bold, 700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.promo-card__button:hover {
    background-color: var(--jet-black);
    color: var(--pure-white);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Article link styling */
.promo-card__link:hover .promo-card__button {
    background-color: var(--jet-black);
    color: var(--pure-white);
}

/* Background decoration removed - using only the SVG pattern */

/* Empty State for Promotions */
.promotions__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background-color: rgba(255, 193, 0, 0.05);
    border-radius: 12px;
    border: 2px dashed rgba(255, 193, 0, 0.3);
}

.promotions__empty-text {
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: var(--turbo-yellow);
    margin-bottom: 16px;
}

.promotions__empty-subtitle {
    font-size: 18px;
    color: rgba(255, 193, 0, 0.8);
}

/* Responsive Design for Promotions */
@media (max-width: 992px) {
    .promotions__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promotions__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .promotions {
        padding: 60px 0 80px;
    }
    
    .promotions__container {
        padding: 0 24px;
    }
    
    .promotions__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .promo-card__image {
        height: 200px;
    }
    
    .promo-card__content {
        padding: 24px;
    }
    
    .promo-card__title {
        font-size: 18px;
    }
    
    .promo-card__description,
    .promo-card__list {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .promo-card__image {
        height: 180px;
    }
    
    .promo-card__content {
        padding: 20px;
    }
    
    .promo-card__title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .promo-card__button {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* Focus styles for accessibility */
.navbar__menu-link:focus,
.navbar__cta:focus,
.hero__cta:focus {
    outline: 2px solid var(--turbo-yellow);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --turbo-yellow: #FFD700;
        --jet-black: #000000;
        --pure-white: #FFFFFF;
    }
}

/* Article Detail Page */
.article-detail {
    min-height: calc(100vh - var(--nav-height));
    background-color: var(--pure-white);
    color: var(--jet-black);
    padding: 60px 0 100px;
}

.article-detail__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Article Header */
.article-detail__header {
    margin-bottom: 40px;
    text-align: center;
}

.article-detail__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.article-detail__date {
    display: inline-block;
}

.article-detail__category {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-radius: 4px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    font-size: 12px;
}

.article-detail__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-detail__perex {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    font-weight: var(--font-weight-regular);
}

/* Article Image */
.article-detail__image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-detail__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content */
.article-detail__content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.article-detail__content h2,
.article-detail__content h3,
.article-detail__content h4 {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    margin: 40px 0 20px;
    color: var(--jet-black);
}

.article-detail__content h2 {
    font-size: 1.8rem;
}

.article-detail__content h3 {
    font-size: 1.5rem;
}

.article-detail__content p {
    margin-bottom: 20px;
}

.article-detail__content ul,
.article-detail__content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-detail__content li {
    margin-bottom: 10px;
}

.article-detail__content strong {
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
}

.article-detail__content a {
    color: var(--turbo-yellow);
    text-decoration: underline;
}

.article-detail__content a:hover {
    color: var(--jet-black);
}

/* Article Footer */
.article-detail__footer {
    border-top: 2px solid #eee;
    padding-top: 40px;
}

.article-detail__validity {
    text-align: center;
    font-size: 18px;
    padding: 20px;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: var(--font-weight-semibold);
}

.article-detail__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.article-detail__back,
.article-detail__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.article-detail__back {
    background-color: #f5f5f5;
    color: var(--jet-black);
    border: 2px solid #f5f5f5;
}

.article-detail__back:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

.article-detail__cta {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border: 2px solid var(--turbo-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-detail__cta:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    border-color: var(--jet-black);
    transform: scale(1.02);
}

/* Related Articles */
.related-articles {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #eee;
}

.related-articles__title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-article {
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.related-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.related-article__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-article__image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.related-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.related-article:hover .related-article__image img {
    transform: scale(1.1);
}

.related-article__title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    padding: 20px 20px 10px;
    line-height: 1.3;
}

.related-article__excerpt {
    font-size: 14px;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.5;
}

/* Responsive Design for Article Detail */
@media (max-width: 992px) {
    .article-detail__container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .article-detail__title {
        font-size: 2rem;
    }
    
    .related-articles__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-detail {
        padding: 40px 0 80px;
    }
    
    .article-detail__container {
        padding: 0 20px;
    }
    
    .article-detail__title {
        font-size: 1.75rem;
    }
    
    .article-detail__perex {
        font-size: 1.125rem;
    }
    
    .article-detail__content {
        font-size: 16px;
    }
    
    .article-detail__actions {
        flex-direction: column;
    }
    
    .article-detail__back,
    .article-detail__cta {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .article-detail__title {
        font-size: 1.5rem;
    }
    
    .article-detail__meta {
        flex-direction: column;
        gap: 10px;
    }
} 

/* Map Section */
.map-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Location Badge - Anchored to map */
.location-badge {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--turbo-yellow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 500;
    font-family: var(--font-primary);
}

.location-badge__title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-badge__address {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin: 0;
    line-height: 1.4;
}

/* Custom drop-shaped marker */
.map-drop-marker {
    width: 60px;
    height: 80px;
    position: relative;
}

.map-drop-marker .marker-content {
    width: 60px;
    height: 60px;
    background-color: var(--turbo-yellow);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;  /* Ensure content stays inside */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-fast);
}

/* Enhanced Map Scroll Control Overlay */
.map-scroll-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 193, 0, 0.3);
}

.map-scroll-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.map-scroll-overlay.ctrl-active {
    background: rgba(255, 193, 0, 0.9);
    color: var(--jet-black);
    border-color: rgba(255, 193, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.05);
}

.map-scroll-overlay.brief-show {
    animation: briefShow 1.5s ease;
}

.scroll-instruction {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.scroll-icon {
    font-size: 1.2em;
    opacity: 0.9;
}

.scroll-text strong {
    color: var(--turbo-yellow);
    font-weight: var(--font-weight-extrabold);
}

.map-scroll-overlay.ctrl-active .scroll-text strong {
    color: var(--jet-black);
}

@keyframes briefShow {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.map-drop-marker:hover .marker-content {
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.map-drop-marker .marker-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-drop-marker .marker-logo {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%);  /* Makes the logo black */
}

/* Visually hidden but accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive Design for Map */
@media (max-width: 992px) {
    .map-section {
        height: 500px;
    }
    
    .location-badge {
        width: 180px;
        height: 180px;
        left: 30px;
        bottom: 30px;
    }
    
    .location-badge__title {
        font-size: 1.3rem;
    }
    
    .location-badge__address {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .map-section {
        height: 450px;
    }
    
    .location-badge {
        width: 160px;
        height: 160px;
        left: 20px;
        bottom: 20px;
    }
    
    .location-badge__title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .location-badge__address {
        font-size: 0.85rem;
    }
    
    /* Mobile Map Scroll Overlay */
    .map-scroll-overlay {
        padding: 16px 24px;
        font-size: 0.9rem;
        border-radius: 10px;
        max-width: calc(100% - 40px);
    }
    
    .scroll-instruction {
        gap: 10px;
    }
    
    .scroll-icon {
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .map-section {
        height: 400px;
    }
    
    .location-badge {
        width: 140px;
        height: 140px;
        left: 15px;
        bottom: 15px;
    }
    
    .location-badge__title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .location-badge__address {
        font-size: 0.75rem;
    }
} 

/* Footer Section */
.footer {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../images/optimized/footer-1920.jpg');
    background-size: cover;
    background-position: center center;  /* Changed to center center for better visibility */
    background-repeat: no-repeat;
    background-attachment: scroll;  /* Better performance and positioning */
    overflow: hidden;
    
    /* Alternative background settings for better image display */
    /* Uncomment the preferred option below and comment out the above background-size */
    
    /* Option 1: Show full image with potential letterboxing */
    /* background-size: contain; */
    
    /* Option 2: Smart positioning for automotive images */
    /* background-position: 40% center; */
    
    /* Option 3: For wide images, use custom sizing */
    /* background-size: 100% auto; */
    /* background-position: center top; */
}

.footer__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    width: 100%;
}

.footer__content {
    text-align: center;
    color: var(--pure-white);
}

.footer__title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer__contact {
    margin-bottom: 60px;
}

.footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--turbo-yellow);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 40px;
    transition: all var(--transition-fast);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer__phone:hover {
    transform: scale(1.05);
    color: var(--pure-white);
}

.footer__phone-icon {
    width: 42px;
    height: 42px;
}

.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-size: 1.25rem;
}

.footer__hours-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer__hours-label {
    font-weight: var(--font-weight-semibold);
    min-width: 60px;
    text-align: right;
    color: var(--turbo-yellow);
}

.footer__hours-time {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer__social {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.footer__social-link:hover {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    transform: scale(1.1);
    border-color: var(--turbo-yellow);
}

.footer__social-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer {
        min-height: 500px;
        background-attachment: scroll; /* Better performance on mobile */
        /* Adjust background for tablet view */
        background-position: center center;
        background-size: cover;
        background-image: url('../images/optimized/footer-1200.jpg');
    }
    
    .footer__container {
        padding: 80px 30px;
    }
    
    .footer__title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .footer__phone {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .footer__phone-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer__contact {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        min-height: 450px;
        /* Mobile optimized background settings */
        background-position: center center;
        background-size: cover;
        /* Alternative for mobile: show more of the image */
        /* background-size: 100% auto; */
        /* background-position: center 30%; */
    }
    
    .footer__container {
        padding: 60px 20px;
    }
    
    .footer__title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .footer__phone {
        font-size: 1.75rem;
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .footer__phone-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer__hours {
        font-size: 1.125rem;
        gap: 12px;
    }
    
    .footer__hours-row {
        gap: 15px;
    }
    
    .footer__social-link {
        width: 45px;
        height: 45px;
    }
    
    .footer__social-icon {
        width: 20px;
        height: 20px;
    }
    
    .footer__social {
        margin-top: 40px;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .footer {
        min-height: 400px;
        /* Small mobile optimized background */
        background-position: center center;
        /* For very small screens, you might want to show more of the image */
        /* background-size: auto 100%; */
        /* background-position: 30% center; */
    }
    
    .footer__container {
        padding: 50px 20px;
    }
    
    .footer__title {
        font-size: 1.75rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }
    
    .footer__phone {
        font-size: 1.5rem;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .footer__phone-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer__hours {
        font-size: 1rem;
        gap: 10px;
    }
    
    .footer__hours-row {
        gap: 12px;
    }
    
    .footer__hours-label {
        min-width: 45px;
    }
    
    .footer__contact {
        margin-bottom: 40px;
    }
    
    .footer__social {
        gap: 15px;
        margin-top: 35px;
    }
} 

/* Services Template Styles */

/* Services Detail Hero */
.services-detail-hero {
    background-color: var(--pure-white);
    padding: 120px 0 60px;
    margin-top: var(--nav-height);
    text-align: center;
}

.services-detail-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-detail-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-hero__title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-detail-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.services-detail-hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Button Styles */
.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
}

.services-btn--primary {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

.services-btn--primary:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    transform: scale(1.03);
}

.services-btn--secondary {
    background-color: var(--jet-black);
    color: var(--pure-white);
    border-color: var(--jet-black);
}

.services-btn--secondary:hover {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

.services-btn--outline {
    background-color: transparent;
    color: var(--jet-black);
    border-color: var(--jet-black);
}

.services-btn--outline:hover {
    background-color: var(--jet-black);
    color: var(--pure-white);
}

.services-btn--large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Services Detailed Section */
.services-detailed {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.services-detailed__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Service Detail Card */
.service-detail-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    overflow: hidden;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--turbo-yellow);
}

.service-detail-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.service-detail-card__icon {
    width: 60px;
    height: 60px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--jet-black);
}

.service-detail-card__title-section {
    flex: 1;
}

.service-detail-card__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-detail-card__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-detail-card__meta span {
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: var(--font-weight-medium);
}

.service-detail-card__meta .price {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
}

.service-detail-card__meta .duration {
    background-color: #e9ecef;
    color: #666;
}

.service-detail-card__meta .warranty {
    background-color: #d4edda;
    color: #155724;
}

.service-detail-card__content {
    padding: 30px;
}

.service-detail-card__description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.service-detail-card__services h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.service-detail-card__services ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-detail-card__services li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #f1f3f4;
}

.service-detail-card__services li:last-child,
.service-detail-card__services li:nth-last-child(2) {
    border-bottom: none;
}

.service-detail-card__services li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--turbo-yellow);
    font-weight: bold;
    font-size: 12px;
}

/* Services Features Section */
.services-features {
    background-color: var(--pure-white);
    padding: 80px 0;
}

.services-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-features__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-item__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item__icon svg {
    width: 28px;
    height: 28px;
    color: var(--jet-black);
}

.feature-item__title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item__description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Services CTA Section */
.services-cta {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.services-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-cta__content {
    text-align: center;
}

.services-cta__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-cta__text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Services Template */
@media (max-width: 1024px) {
    .services-detailed__container {
        padding: 0 30px;
    }
    
    .service-detail-card__services ul {
        grid-template-columns: 1fr;
    }
    
    .services-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-detail-hero {
        padding: 80px 0 50px;
    }
    
    .services-detail-hero__container {
        padding: 0 20px;
    }
    
    .services-detail-hero__title {
        font-size: 2.5rem;
    }
    
    .services-detail-hero__description {
        font-size: 1.125rem;
    }
    
    .services-detail-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-detailed__container {
        padding: 0 20px;
    }
    
    .service-detail-card__header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .service-detail-card__meta {
        justify-content: center;
    }
    
    .service-detail-card__content {
        padding: 20px;
    }
    
    .services-features__container {
        padding: 0 20px;
    }
    
    .services-features__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-cta__container {
        padding: 0 20px;
    }
    
    .services-cta__title {
        font-size: 2rem;
    }
    
    .services-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .services-detail-hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .service-detail-card__title {
        font-size: 1.25rem;
    }
    
    .services-features__title {
        font-size: 2rem;
    }
    
    .services-cta__title {
        font-size: 1.75rem;
    }
    
    .services-btn {
        width: 100%;
        max-width: 280px;
    }
} 

/* Pricing Template Styles */

/* Pricing Hero */
.pricing-hero {
    background-color: var(--pure-white);
    padding: 120px 0 60px;
    margin-top: var(--nav-height);
    text-align: center;
}

.pricing-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero__title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.pricing-hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Button Styles */
.pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
}

.pricing-btn--primary {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

.pricing-btn--primary:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    transform: scale(1.03);
}

.pricing-btn--secondary {
    background-color: var(--jet-black);
    color: var(--pure-white);
    border-color: var(--jet-black);
}

.pricing-btn--secondary:hover {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

.pricing-btn--outline {
    background-color: transparent;
    color: var(--jet-black);
    border-color: var(--jet-black);
}

.pricing-btn--outline:hover {
    background-color: var(--jet-black);
    color: var(--pure-white);
}

.pricing-btn--large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Pricing Tables */
.pricing-tables {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.pricing-tables__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    gap: 40px;
}

.pricing-category {
    background-color: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.pricing-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pricing-category__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--turbo-yellow) 0%, #ffcf33 100%);
    border-bottom: 2px solid #e6b800;
}

.pricing-category__icon {
    width: 50px;
    height: 50px;
    background-color: var(--jet-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-category__icon svg {
    width: 24px;
    height: 24px;
    color: var(--turbo-yellow);
}

.pricing-category__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.pricing-table {
    padding: 0;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table thead {
    background-color: #f8f9fa;
}

.price-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    border-bottom: 2px solid #e9ecef;
}

.price-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f3f4;
    color: #666;
    line-height: 1.4;
}

.price-table tbody tr:hover {
    background-color: #f8f9fa;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table td:first-child {
    font-weight: var(--font-weight-medium);
    color: var(--jet-black);
}

.price-table td:nth-child(2),
.price-table td:nth-child(3) {
    font-weight: var(--font-weight-semibold);
    color: var(--turbo-yellow);
    text-align: center;
}

.price-table td:last-child {
    text-align: center;
    font-size: 12px;
    color: #28a745;
    font-weight: var(--font-weight-medium);
}

/* Pricing Notes */
.pricing-notes {
    background-color: var(--pure-white);
    padding: 80px 0;
}

.pricing-notes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-notes__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-notes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pricing-note {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.pricing-note:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--turbo-yellow);
}

.pricing-note__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-note__icon svg {
    width: 28px;
    height: 28px;
    color: var(--jet-black);
}

.pricing-note__title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-note__description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Pricing CTA */
.pricing-cta {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.pricing-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.pricing-cta__content {
    text-align: center;
}

.pricing-cta__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pricing-cta__text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
    .pricing-tables__container {
        padding: 0 30px;
    }
    
    .pricing-notes__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .price-table {
        font-size: 12px;
    }
    
    .price-table th,
    .price-table td {
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 80px 0 50px;
    }
    
    .pricing-hero__container {
        padding: 0 20px;
    }
    
    .pricing-hero__title {
        font-size: 2.5rem;
    }
    
    .pricing-hero__description {
        font-size: 1.125rem;
    }
    
    .pricing-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-tables__container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .pricing-category__header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 25px 20px;
    }
    
    .pricing-category__title {
        font-size: 1.25rem;
    }
    
    .pricing-table {
        overflow-x: scroll;
    }
    
    .price-table {
        min-width: 600px;
        font-size: 11px;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }
    
    .pricing-notes__container {
        padding: 0 20px;
    }
    
    .pricing-notes__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-cta__container {
        padding: 0 20px;
    }
    
    .pricing-cta__title {
        font-size: 2rem;
    }
    
    .pricing-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .pricing-hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .pricing-category__icon {
        width: 40px;
        height: 40px;
    }
    
    .pricing-category__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .pricing-notes__title {
        font-size: 2rem;
    }
    
    .pricing-cta__title {
        font-size: 1.75rem;
    }
    
    .pricing-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .price-table {
        min-width: 500px;
        font-size: 10px;
    }
    
    .price-table th,
    .price-table td {
        padding: 8px 6px;
    }
} 

/* Contact Template Styles */

/* Contact Hero */
.contact-hero {
    background-color: var(--pure-white);
    padding: 120px 0 60px;
    margin-top: var(--nav-height);
    text-align: center;
}

.contact-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero__title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.contact-hero__quick-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Buttons */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.contact-btn svg {
    width: 20px;
    height: 20px;
}

.contact-btn--phone {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

.contact-btn--phone:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    transform: scale(1.03);
}

.contact-btn--form {
    background-color: var(--jet-black);
    color: var(--pure-white);
    border-color: var(--jet-black);
}

.contact-btn--form:hover {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

/* Contact Info Section */
.contact-info-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-info-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-info-section__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--turbo-yellow);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--jet-black);
}

.contact-card__title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card__main {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--turbo-yellow);
    margin-bottom: 8px;
}

.contact-card__subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-card__action {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--jet-black);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.contact-card__action:hover {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
}

.contact-card__hours {
    text-align: left;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.hours-day {
    font-weight: var(--font-weight-medium);
    color: var(--jet-black);
}

.hours-time {
    color: #666;
}

.hours-item.weekend .hours-time {
    color: #dc3545;
    font-weight: var(--font-weight-medium);
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--pure-white);
    padding: 80px 0;
}

.contact-form-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-section__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-form-section__title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-form-section__description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.contact-feature svg {
    width: 16px;
    height: 16px;
    color: var(--turbo-yellow);
}

/* Contact Form */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color var(--transition-fast);
}

.contact-form:focus-within {
    border-color: var(--turbo-yellow);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
}

.contact-form__label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--jet-black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background-color: var(--pure-white);
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    border-color: var(--turbo-yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 0, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    margin-bottom: 20px;
}

.contact-form__checkbox input[type="checkbox"] {
    display: none;
}

.contact-form__checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    background-color: var(--pure-white);
    transition: all var(--transition-fast);
}

.contact-form__checkbox input[type="checkbox"]:checked + .contact-form__checkmark {
    background-color: var(--turbo-yellow);
    border-color: var(--turbo-yellow);
}

.contact-form__checkbox input[type="checkbox"]:checked + .contact-form__checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--jet-black);
    font-weight: bold;
    font-size: 12px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border: 2px solid var(--turbo-yellow);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    justify-content: center;
}

.contact-form__submit:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    transform: scale(1.03);
}

.contact-form__submit svg {
    width: 20px;
    height: 20px;
}

/* Flash Messages */
.flash-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flash-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-message--info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Form Error Messages */
.contact-form__field .error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.contact-form__input.error,
.contact-form__select.error,
.contact-form__textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

/* Contact Location */
.contact-location {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-location__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-location__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--pure-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-item__icon {
    width: 50px;
    height: 50px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--jet-black);
}

.location-item__content h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.location-item__content p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.location-directions {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.location-directions h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.directions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.directions-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.directions-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--turbo-yellow);
    font-weight: bold;
}

.transport-options h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--jet-black);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.transport-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.transport-tag {
    padding: 4px 12px;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-radius: 12px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
}

/* Contact FAQ */
.contact-faq {
    background-color: var(--pure-white);
    padding: 80px 0;
}

.contact-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-faq__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--turbo-yellow);
    transform: translateY(-2px);
}

.faq-question {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.faq-answer {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Emergency Contact */
.emergency-contact {
    background-color: #1a1a1a;
    color: var(--pure-white);
    padding: 60px 0;
}

.emergency-contact__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.emergency-contact__content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.emergency-contact__icon {
    width: 80px;
    height: 80px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-contact__icon svg {
    width: 40px;
    height: 40px;
    color: var(--jet-black);
}

.emergency-contact__title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--turbo-yellow);
}

.emergency-contact__description {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.emergency-contact__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    text-decoration: none;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.emergency-btn:hover {
    background-color: var(--pure-white);
    transform: scale(1.05);
}

.emergency-btn svg {
    width: 20px;
    height: 20px;
}

.emergency-note {
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-form-section__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 50px;
    }
    
    .contact-hero__container {
        padding: 0 20px;
    }
    
    .contact-hero__title {
        font-size: 2.5rem;
    }
    
    .contact-hero__description {
        font-size: 1.125rem;
    }
    
    .contact-hero__quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-section__container {
        padding: 0 20px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-section__container {
        padding: 0 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-location__container {
        padding: 0 20px;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .contact-faq__container {
        padding: 0 20px;
    }
    
    .emergency-contact__container {
        padding: 0 20px;
    }
    
    .emergency-contact__content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .contact-info-section__title,
    .contact-location__title,
    .contact-faq__title {
        font-size: 2rem;
    }
    
    .contact-form-section__title {
        font-size: 1.5rem;
    }
    
    .emergency-contact__title {
        font-size: 1.5rem;
    }
    
    .contact-btn,
    .emergency-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Akce Template Styles */

/* Akce Hero */
.akce-hero {
    background-color: var(--pure-white);
    padding: 120px 0 60px;
    margin-top: var(--nav-height);
    text-align: center;
}

.akce-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.akce-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.akce-hero__title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.akce-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.akce-hero__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.akce-stat {
    text-align: center;
}

.akce-stat__number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--turbo-yellow);
    line-height: 1;
}

.akce-stat__label {
    display: block;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.akce-hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Akce Buttons */
.akce-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.akce-btn--primary {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

.akce-btn--primary:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
    transform: scale(1.03);
}

.akce-btn--secondary {
    background-color: var(--jet-black);
    color: var(--pure-white);
    border-color: var(--jet-black);
}

.akce-btn--secondary:hover {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border-color: var(--turbo-yellow);
}

.akce-btn--outline {
    background-color: transparent;
    color: var(--jet-black);
    border-color: var(--jet-black);
}

.akce-btn--outline:hover {
    background-color: var(--jet-black);
    color: var(--pure-white);
}

.akce-btn--large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Akce Articles */
.akce-articles {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.akce-articles__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.akce-articles__header {
    text-align: center;
    margin-bottom: 60px;
}

.akce-articles__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.akce-articles__subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Article Card */
.article-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--turbo-yellow);
}

.article-card__header {
    position: relative;
}

.article-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.article-card:hover .article-card__image img {
    transform: scale(1.05);
}

.article-card__image--placeholder {
    background: linear-gradient(135deg, var(--turbo-yellow) 0%, #ffcf33 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card__placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--jet-black);
}

.article-card__placeholder-content svg {
    width: 40px;
    height: 40px;
}

.article-card__placeholder-content span {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-extrabold);
    font-size: 1.125rem;
    text-transform: uppercase;
}

.article-card__overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.article-card__badge {
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card__content {
    padding: 24px;
}

.article-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card__date {
    color: #999;
}

.article-card__category {
    color: var(--turbo-yellow);
    font-weight: var(--font-weight-medium);
}

.article-card__title {
    margin-bottom: 12px;
}

.article-card__title-link {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    text-decoration: none;
    line-height: 1.3;
    display: block;
    transition: color var(--transition-fast);
}

.article-card__title-link:hover {
    color: var(--turbo-yellow);
}

.article-card__excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.article-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.article-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--jet-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.article-card__read-more:hover {
    color: var(--turbo-yellow);
}

.article-card__read-more svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.article-card__read-more:hover svg {
    transform: translateX(4px);
}

.article-card__action {
    padding: 8px 16px;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.article-card__action:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
}

.akce-articles__footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
}

.akce-articles__count {
    color: #666;
    font-size: 14px;
}

/* Empty State */
.akce-articles__empty {
    text-align: center;
    padding: 80px 20px;
}

.empty-state__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state__icon svg {
    width: 40px;
    height: 40px;
    color: #ccc;
}

.empty-state__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 12px;
}

.empty-state__description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Newsletter */
.akce-newsletter {
    background-color: var(--pure-white);
    padding: 80px 0;
}

.akce-newsletter__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.akce-newsletter__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.akce-newsletter__title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.akce-newsletter__description {
    color: #666;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.akce-newsletter__benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.newsletter-benefit svg {
    width: 16px;
    height: 16px;
    color: var(--turbo-yellow);
}

.newsletter-form__field {
    margin-bottom: 16px;
}

.newsletter-form__label {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--jet-black);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.newsletter-form__input-group {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.newsletter-form__input-group:focus-within {
    border-color: var(--turbo-yellow);
}

.newsletter-form__input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: var(--pure-white);
}

.newsletter-form__submit {
    padding: 12px 20px;
    background-color: var(--turbo-yellow);
    color: var(--jet-black);
    border: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form__submit:hover {
    background-color: var(--jet-black);
    color: var(--turbo-yellow);
}

.newsletter-form__submit svg {
    width: 16px;
    height: 16px;
}

.newsletter-form__privacy {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
}

.newsletter-form__privacy a {
    color: var(--turbo-yellow);
    text-decoration: none;
}

/* Features Grid */
.akce-features {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.akce-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.akce-features__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--pure-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--turbo-yellow);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--turbo-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--jet-black);
}

.feature-card__title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--jet-black);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card__description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Akce CTA */
.akce-cta {
    background-color: var(--pure-white);
    padding: 80px 0;
}

.akce-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.akce-cta__content {
    text-align: center;
}

.akce-cta__title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--jet-black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.akce-cta__text {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.akce-cta__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Akce */
@media (max-width: 1024px) {
    .akce-hero__stats {
        gap: 30px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .akce-newsletter__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .akce-hero {
        padding: 80px 0 50px;
    }
    
    .akce-hero__container {
        padding: 0 20px;
    }
    
    .akce-hero__title {
        font-size: 2.5rem;
    }
    
    .akce-hero__description {
        font-size: 1.125rem;
    }
    
    .akce-hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .akce-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .akce-articles__container {
        padding: 0 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card__footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .article-card__action {
        text-align: center;
    }
    
    .akce-newsletter__container {
        padding: 0 20px;
    }
    
    .newsletter-form__input-group {
        flex-direction: column;
    }
    
    .newsletter-form__submit {
        justify-content: center;
    }
    
    .akce-features__container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .akce-cta__container {
        padding: 0 20px;
    }
    
    .akce-cta__title {
        font-size: 2rem;
    }
    
    .akce-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .akce-hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .akce-stat__number {
        font-size: 2rem;
    }
    
    .akce-articles__title,
    .akce-features__title {
        font-size: 2rem;
    }
    
    .akce-newsletter__title {
        font-size: 1.5rem;
    }
    
    .akce-cta__title {
        font-size: 1.75rem;
    }
    
    .akce-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =================================
   ARTICLE GALLERY STYLES
   ================================= */

/* Gallery Section */
.article-gallery {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 2px solid var(--turbo-yellow);
    background: linear-gradient(135deg, rgba(255, 193, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
}

.article-gallery__header {
    text-align: center;
    margin-bottom: 40px;
}

.article-gallery__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 28px;
    font-weight: var(--font-weight-extrabold);
    color: var(--turbo-yellow);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-gallery__icon {
    width: 32px;
    height: 32px;
    color: var(--turbo-yellow);
}

.article-gallery__count {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-weight-semibold);
}

/* Gallery Grid */
.article-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 193, 0, 0.2);
}

.gallery-item__link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.05);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__icon {
    width: 48px;
    height: 48px;
    color: var(--pure-white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* =================================
   LIGHTBOX STYLES
   ================================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: lightboxFadeIn 0.3s ease-out;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox__container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Lightbox Controls */
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 193, 0, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10001;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--turbo-yellow);
    transform: scale(1.1);
}

.lightbox__close {
    top: 20px;
    right: 20px;
}

.lightbox__prev {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__close svg,
.lightbox__prev svg,
.lightbox__next svg {
    width: 24px;
    height: 24px;
    color: var(--jet-black);
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 193, 0, 0.9);
    color: var(--jet-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */

/* Tablet Styles */
@media (max-width: 768px) {
    .article-gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    
    .article-gallery__title {
        font-size: 24px;
    }
    
    .article-gallery__icon {
        width: 28px;
        height: 28px;
    }
    
    .lightbox__prev,
    .lightbox__next {
        width: 45px;
        height: 45px;
        left: 10px;
        right: 10px;
        transform: none;
        top: auto;
        bottom: 80px;
    }
    
    .lightbox__next {
        right: 10px;
        left: auto;
    }
    
    .lightbox__close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .article-gallery {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .article-gallery__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .article-gallery__title {
        font-size: 20px;
        gap: 8px;
    }
    
    .article-gallery__icon {
        width: 24px;
        height: 24px;
    }
    
    .gallery-item__icon {
        width: 40px;
        height: 40px;
    }
    
    .lightbox__container {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox__prev,
    .lightbox__next {
        bottom: 60px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox__close {
        width: 40px;
        height: 40px;
    }
    
    .lightbox__counter {
        bottom: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}