/* -------------------------------------------------------------------------- */
/* TeZet Camperowy Redesign Mockup Style Sheet                                */
/* Theme: Adventure Premium / Modern Caravan                                  */
/* -------------------------------------------------------------------------- */

/* CSS Variables & Tokens */
:root {
    --primary: #0B1B3D;           /* Deep dark blue (Night Sky) */
    --primary-light: #162a55;
    --secondary: #1E293B;         /* Slate gray for alternate headers */
    --accent: #F97316;            /* Warm sunset orange */
    --accent-hover: #EA580C;      /* Darker sunset orange */
    --bg-light: #F8FAFC;          /* Clean off-white background */
    --bg-white: #FFFFFF;          /* Pure white for elements/cards */
    --text-dark: #0F172A;         /* Dark text */
    --text-muted: #64748B;        /* Muted gray text */
    --border-color: #E2E8F0;      /* Light border lines */
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(11, 27, 61, 0.08), 0 2px 4px -1px rgba(11, 27, 61, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(11, 27, 61, 0.1), 0 10px 10px -5px rgba(11, 27, 61, 0.04);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Grids and Helpers */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: #white;
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Section Header Style */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header-row h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header-row p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* -------------------------------------------------------------------------- */
/* Header & Navigation                                                        */
/* -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.main-header.sticky {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-tz {
    color: var(--primary);
}

.logo-camp {
    color: var(--accent);
}

/* Search Box */
.search-wrapper {
    flex-grow: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 2px 6px;
    transition: var(--transition);
}

.search-form:focus-within {
    background-color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 27, 61, 0.15);
}

.search-form input {
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.search-form button {
    background-color: var(--primary);
    border: none;
    color: var(--bg-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background-color: var(--accent);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    background-color: rgba(11, 27, 61, 0.05);
}

.phone-link-header:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.action-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--primary);
    position: relative;
}

.action-icon:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

/* Cart Counter Bubble */
.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--accent);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count.bump {
    animation: bump 0.3s ease-out;
}

@keyframes bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

/* Bottom Navigation Bar */
.desktop-navigation {
    background-color: var(--primary);
    color: var(--bg-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    display: block;
    padding: 14px 18px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Megamenu / Dropdown */
.dropdown-li {
    position: relative;
}

.dropdown-li .nav-link i {
    font-size: 0.75rem;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    width: 800px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.dropdown-li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.dropdown-col h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 6px;
    font-size: 0.9rem;
}

.dropdown-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dropdown-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

/* -------------------------------------------------------------------------- */
/* Mobile Navigation Drawer                                                   */
/* -------------------------------------------------------------------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background-color: var(--bg-white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transform: translateX(100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-header .logo-tz {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
}

.mobile-nav-list {
    padding: 20px 0;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-nav-list li a {
    display: block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.mobile-nav-list li a:hover {
    background-color: var(--bg-light);
    color: var(--accent);
}

.mobile-nav-footer {
    padding: 20px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mobile-nav-footer p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 27, 61, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Adjust main element padding for sticky header spacing */
main {
    margin-top: 125px;
}

/* -------------------------------------------------------------------------- */
/* Hero Section                                                               */
/* -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--bg-white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 27, 61, 0.9) 0%, rgba(30, 41, 59, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(249, 115, 22, 0.25);
    border: 1px solid rgba(249, 115, 22, 0.5);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-actions-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 40px;
}

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

/* -------------------------------------------------------------------------- */
/* Value Props                                                                */
/* -------------------------------------------------------------------------- */
.value-props {
    position: relative;
    z-index: 5;
    margin-top: -30px;
    margin-bottom: 60px;
}

.prop-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.prop-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.prop-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.prop-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* Category Grid Section                                                      */
/* -------------------------------------------------------------------------- */
.categories-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.category-card:hover .cat-bg {
    transform: scale(1.08);
}

.cat-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.cat-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.category-card:hover .cat-link {
    color: var(--bg-white);
    gap: 12px;
}

/* Card sizes */
.card-large {
    grid-column: span 2;
}

.card-wide {
    grid-column: span 2;
}

/* -------------------------------------------------------------------------- */
/* Products Section & Cards                                                   */
/* -------------------------------------------------------------------------- */
.products-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 5;
    text-transform: uppercase;
}

.product-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.product-image img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-brand {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.35;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.product-title a:hover {
    color: var(--accent);
}

.product-price {
    margin-top: auto;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.price-brutto {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.price-netto {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.add-to-cart-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 18px;
    background-color: var(--primary);
    color: var(--bg-white);
}

.add-to-cart-btn:hover {
    background-color: var(--accent);
}

/* -------------------------------------------------------------------------- */
/* Service Section (Split Screen)                                             */
/* -------------------------------------------------------------------------- */
.service-section {
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-container {
    display: flex;
    min-height: 500px;
}

.service-image {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: flex-end;
    padding: 50px;
    overflow: hidden;
}

/* Decorative grid pattern in CSS representing modern blueprint */
.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 27, 61, 0.9) 0%, rgba(11, 27, 61, 0.2) 100%);
    z-index: 2;
}

.service-img-text {
    position: relative;
    z-index: 3;
    color: var(--bg-white);
}

.serwis-badge {
    background-color: var(--accent);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    display: inline-block;
    text-transform: uppercase;
}

.service-image h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.service-image p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.service-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.service-content .subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.service-content > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.service-list {
    margin-bottom: 35px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--primary);
}

.service-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

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

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

.contact-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.advisor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-card .role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.contact-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    background-color: var(--accent);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.contact-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.contact-card .availability {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* General Column */
.contact-general {
    padding: 20px 10px;
}

.contact-general h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.general-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.info-list .info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-list .info-item i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-top: 4px;
}

.info-list .info-item strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 0.9rem;
}

.info-list .info-item a, .info-list .info-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.info-list .info-item a:hover {
    color: var(--accent);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    font-size: 0.9rem;
}

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

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-tz {
    color: var(--bg-white);
}

.footer-brand p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-links-col h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--bg-white);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #061127;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-badges {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--bg-white);
}

/* -------------------------------------------------------------------------- */
/* Responsive Design (Media Queries)                                          */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
    .dropdown-menu {
        width: 600px;
    }
}

@media (max-width: 1024px) {
    /* Responsive grids */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-general {
        grid-column: span 2;
        margin-top: 20px;
        text-align: center;
    }
    
    .info-list {
        display: inline-flex;
        flex-direction: column;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Header toggle */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .desktop-navigation {
        display: none;
    }
    
    .search-wrapper {
        display: none; /* Hide on mobile to simplify header, search is in sidebar/menu */
    }
    
    .phone-link-header .phone-text {
        display: none; /* Keep just icon */
    }
    
    main {
        margin-top: 75px;
    }

    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .hero-actions-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions-btns .btn {
        width: 100%;
        max-width: 320px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .prop-card {
        padding: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .card-large, .card-wide {
        grid-column: span 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-container {
        flex-direction: column;
    }
    
    .service-image {
        min-height: 250px;
    }
    
    .service-content {
        padding: 40px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card, .contact-general {
        grid-column: span 1;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .section-header h2, .section-header-row h2, .service-content h2 {
        font-size: 1.75rem;
    }
}
