/* ============================================================
   STYLE.CSS - SURA RAAMBEKLEDING - VERSION OPTIMISÉE
   ============================================================ */

:root {
    --primary: #2c3e50;
    --primary-dark: #1a252f;
    --secondary: #3498db;
    --secondary-dark: #2980b9;
    --dark: #222;
    --gray: #666;
    --gray-light: #999;
    --light-gray: #e9ecef;
    --light: #f8f9fa;
    --white: #fff;
    --border: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius: 12px;
    --transition: 0.3s ease;
    --container-max: 1200px;
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px;
    white-space: nowrap;
}

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

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary { background: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); }

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 56px;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 40px;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    z-index: 1001;
    border-radius: var(--radius-sm);
}

.menu-toggle:hover {
    background: var(--light);
    color: var(--primary);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

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

.mobile-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.mobile-link:hover,
.mobile-link.active {
    background: var(--light);
    color: var(--primary);
    padding-left: 2rem;
}

.mobile-btn {
    display: block;
    margin: 1.5rem;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.mobile-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    color: var(--white);
    padding: clamp(4rem, 12vw, 8rem) 1.25rem;
    text-align: center;
    min-height: clamp(350px, 55vh, 550px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(26, 37, 47, 0.9));
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s;
}

.hero-overlay { width: 100%; }

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p,
.hero-subtitle {
    color: var(--white);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
    padding: clamp(3rem, 8vw, 5rem) 1.25rem;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    text-align: center;
    max-width: 700px;
    margin: -0.5rem auto 2rem;
}

/* ============================================================
   CATEGORIES GRID (Home page)
   ============================================================ */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 3rem;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.category-card:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.category-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--light-gray);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.category-content p {
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

.category-link {
    color: var(--secondary);
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
}

.category-card:hover .category-link {
    color: var(--primary);
    transform: translateX(5px);
}

/* ============================================================
   CATEGORY PAGE SECTIONS
   ============================================================ */

.category-intro {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.category-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    align-items: center;
}

.section-content {
    padding: 1rem 0;
}

.section-content h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.section-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--light-gray);
    aspect-ratio: 4/3;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    margin: 2rem 0;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-item p {
    margin: 0;
    font-weight: 500;
    color: var(--dark);
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 4/3;
    background: var(--light-gray);
    margin: 0;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   HELP BOX & STOCK MESSAGE  (responsive fix)
   ============================================================ */

.help-box {
    background: var(--light);
    border-left: 4px solid var(--secondary);
    padding: clamp(1rem, 3vw, 1.5rem);
    margin: 2rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.help-box p {
    flex: 1 1 0%;
    min-width: 0;
    margin: 0;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;
    color: var(--gray);
}

.help-box p strong {
    color: var(--dark);
}

.help-box h2,
.help-box h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.help-box .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* On smaller screens, stack text and button vertically */
@media (max-width: 600px) {
    .help-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .help-box p {
        flex: none;
    }

    .help-box .btn {
        width: 100%;
        justify-content: center;
    }
}

.stock-message {
    background: #e3f2fd;
    border-left: 4px solid var(--secondary);
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.stock-message strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */

.rendezvous-section,
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--light), #e8f4f8);
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
}

.rendezvous-section h2,
.rendezvous-section h3,
.cta-section h2 {
    margin-bottom: 1rem;
}

.rendezvous-section p,
.cta-section p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
    margin: 3rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
}

.testimonial-card blockquote {
    margin: 0;
    flex-grow: 1;
}

.testimonial-card blockquote p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonial-author strong {
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-icon {
    font-size: 1rem;
    color: #fbbc04;
}

.testimonial-author span {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.testimonial-cta {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-choose-section {
    margin: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.why-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.why-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.about-card h2 {
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.values-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
    color: var(--gray);
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
}

.value-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* ============================================================
   TEAM
   ============================================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
}

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

.team-member h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-text {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary);
}

.contact-link:hover {
    color: var(--secondary);
}

/* ============================================================
   FORM MESSAGES
   ============================================================ */

.success-message,
.form-message-popup.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.error-message,
.form-message-popup.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.success-message strong,
.error-message strong {
    display: block;
    margin-bottom: 0.5rem;
}

.form-message-popup {
    transition: opacity 0.5s;
}

/* ============================================================
   MAP
   ============================================================ */

.map-section {
    margin-top: 3rem;
}

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

.map-container iframe {
    display: block;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-section {
    margin-top: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-dark), #222);
    color: var(--white);
    padding: 3rem 0 1.25rem;
    margin-top: auto;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer p {
    color: #ccc;
    margin-bottom: 0.75rem;
}

.footer a {
    color: #ccc;
    display: block;
    padding: 0.25rem 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================================
   LOADING & ANIMATIONS
   ============================================================ */

.loading-text {
    text-align: center;
    color: var(--gray);
    padding: 2rem;
}

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

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

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

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .nav-menu { display: flex; }
    .menu-toggle { display: none; }
    .mobile-menu,
    .mobile-overlay { display: none !important; }

    .category-section { grid-template-columns: 1fr 1fr; }
    .category-section.reverse .section-content { order: 2; }
    .category-section.reverse .section-image  { order: 1; }

    .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
}

@media (max-width: 767px) {
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    .button-group .btn { width: 100%; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .category-section { text-align: center; }
    .footer-grid { text-align: center; }
}

@media (max-width: 480px) {
    .logo-img { height: 38px; }
    .categories-grid { grid-template-columns: 1fr; }
    .hero { min-height: 320px; padding: 3rem 1rem; }
    .section { padding: 2rem 1rem; }
    .nav-container { padding: 0.5rem 1rem; }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
    .navbar,
    .footer,
    .btn,
    .menu-toggle,
    .mobile-menu,
    .mobile-overlay,
    .button-group {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        background: none !important;
        color: #000 !important;
        min-height: auto !important;
    }

    .hero h1,
    .hero p {
        color: #000 !important;
    }
}