/* ========================================
   FireGuard Trading - Stylesheet
   ======================================== */

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

:root {
    /* Colors */
    --color-primary: #C62828;
    --color-primary-dark: #B71C1C;
    --color-primary-light: #EF5350;
    --color-accent: #FF6F00;
    --color-dark: #1a1a2e;
    --color-gray-900: #212121;
    --color-gray-700: #424242;
    --color-gray-500: #757575;
    --color-gray-300: #E0E0E0;
    --color-gray-100: #F5F5F5;
    --color-gray-50: #FAFAFA;
    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1DA851;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}

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

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--whatsapp {
    background: var(--color-whatsapp);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn--outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn--full {
    width: 100%;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar__contact {
    display: flex;
    gap: 24px;
}

.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar__item a:hover {
    color: var(--color-primary-light);
}

.top-bar__lang {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switch__btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-size: 13px;
    padding: 2px 4px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.lang-switch__btn:hover,
.lang-switch__btn.active {
    color: var(--color-primary-light);
}

.lang-switch__divider {
    color: rgba(255, 255, 255, 0.3);
}

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--color-dark);
}

.logo__icon,
.logo__img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
}

.logo__accent {
    color: var(--color-primary);
}

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

.nav__link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    color: var(--color-gray-700);
    transition: var(--transition-fast);
    position: relative;
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link--cta {
    background: var(--color-primary);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.nav__link--cta:hover {
    background: var(--color-primary-dark);
    color: white;
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #C62828 100%);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 111, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(198, 40, 40, 0.2) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: var(--container-max);
    margin: 0 auto;
    color: white;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat strong {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
}

.hero__stat span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--section-padding);
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    padding: 24px 20px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

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

/* --- Trust Bar --- */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--color-gray-300);
}

.trust-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: 15px;
}

.trust-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* --- Section Header --- */
.section-header {
    margin-bottom: 48px;
}

.section-header--center {
    text-align: center;
}

.section-header__label {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header__label--light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header__desc {
    font-size: 17px;
    color: var(--color-gray-500);
    max-width: 700px;
    line-height: 1.6;
}

.section-header--center .section-header__desc {
    margin: 0 auto;
}

/* --- Products --- */
.products {
    padding: var(--section-padding);
    background: var(--color-gray-50);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-card__image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.08);
}

.product-card__image--1 { background: linear-gradient(135deg, #E53935, #C62828); }
.product-card__image--2 { background: linear-gradient(135deg, #FB8C00, #E65100); }
.product-card__image--3 { background: linear-gradient(135deg, #42A5F5, #1565C0); }
.product-card__image--4 { background: linear-gradient(135deg, #66BB6A, #2E7D32); }
.product-card__image--5 { background: linear-gradient(135deg, #AB47BC, #6A1B9A); }
.product-card__image--6 { background: linear-gradient(135deg, #FFA726, #F57C00); }

.product-card__icon {
    font-size: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.product-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    background: rgba(198, 40, 40, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.product-card__tag--hot {
    color: var(--color-accent);
    background: rgba(255, 111, 0, 0.08);
}

.product-card__body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.product-card__body > p {
    color: var(--color-gray-500);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-card__specs {
    margin-bottom: 20px;
    flex: 1;
}

.product-card__specs li {
    font-size: 14px;
    color: var(--color-gray-700);
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

[dir="rtl"] .product-card__specs li {
    padding-left: 0;
    padding-right: 24px;
}

.product-card__specs li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-whatsapp);
    font-weight: 700;
}

[dir="rtl"] .product-card__specs li::before {
    left: auto;
    right: 0;
}

.product-card__btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.product-card__btn:hover {
    color: var(--color-primary-dark);
    letter-spacing: 0.5px;
}

.products__cta {
    text-align: center;
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.products__cta p {
    font-size: 18px;
    color: var(--color-gray-700);
    margin-bottom: 24px;
}

/* --- About --- */
.about {
    padding: var(--section-padding);
    background: white;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

.about__visual {
    position: relative;
}

.about__visual-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

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

.about__visual-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.about__visual-icon {
    font-size: 80px;
    margin-bottom: 16px;
}

.about__visual-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.about__visual-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

[dir="rtl"] .about__visual-badge {
    right: auto;
    left: -20px;
}

.about__visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.about__stat {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-300);
}

.about__stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.about__stat span {
    font-size: 13px;
    color: var(--color-gray-500);
    font-weight: 500;
}

.about__content p {
    color: var(--color-gray-500);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-gray-700);
    font-weight: 500;
}

.about__feature svg {
    color: var(--color-whatsapp);
    flex-shrink: 0;
}

/* --- Advantages --- */
.advantages {
    padding: var(--section-padding);
    background: var(--color-gray-50);
}

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

.adv-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.adv-card__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.adv-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.adv-card p {
    color: var(--color-gray-500);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Service Areas --- */
.service-areas {
    padding: 64px 0;
    background: white;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.area-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-gray-100);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-gray-700);
    transition: var(--transition);
}

.area-chip:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* --- Contact --- */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.contact__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__method {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    transition: var(--transition-fast);
}

.contact__method:hover {
    color: var(--color-primary-light);
}

.contact__method-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact__method-icon--wa {
    background: var(--color-whatsapp);
}

.contact__method div {
    display: flex;
    flex-direction: column;
}

.contact__method strong {
    font-size: 16px;
    font-family: var(--font-heading);
}

.contact__method span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact__form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-form__sub {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 24px;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 8px;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-gray-900);
    transition: var(--transition-fast);
    background: var(--color-gray-50);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
}

.contact-form__field textarea {
    resize: vertical;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 64px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer__col a,
.footer__col p {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer__col a:hover {
    color: var(--color-primary-light);
}

.logo--footer {
    color: white;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-whatsapp);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .products-grid,
    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__visual-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

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

@media (max-width: 768px) {
    .top-bar__inner {
        flex-direction: column;
        gap: 8px;
    }

    .top-bar__contact {
        gap: 16px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__stats {
        gap: 32px;
    }

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

    .products-grid,
    .adv-grid {
        grid-template-columns: 1fr;
    }

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

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

    .products__cta {
        padding: 32px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }

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

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    [dir="rtl"] .whatsapp-float {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .trust-bar__inner {
        grid-template-columns: 1fr;
    }
}
