/* ═══════════════════════════════════════════════════════════
   NAVBAR.CSS — Standardized Navigation Bar
   Shared across ALL pages. Do NOT add page-specific styles here.
═══════════════════════════════════════════════════════════ */

/* ── Base Header ────────────────────────────────────────── */
.header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, transform 0.36s cubic-bezier(.2,.9,.25,1), opacity 0.25s ease;
    animation: navSlideDown 0.8s ease-out;
}

.header.mobile-open {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes navSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.header.hide-navbar {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
}

/* ── Header Container ───────────────────────────────────── */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* ── Logo ────────────────────────────────────────────────── */
.header .logo {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.header .logo img {
    width: 50px;
    height: auto;
    animation: navFloatLogo 3s ease-in-out infinite;
}

@keyframes navFloatLogo {
    0%   { transform: translateY(0);    }
    50%  { transform: translateY(-6px); }
    100% { transform: translateY(0);    }
}

.header .logo .span {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.header .logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header .logo .logo-text .word-1 {
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.header .logo .logo-text .word-2 {
    font-size: 16px;
    color: white;
}

/* ── Navigation Links ────────────────────────────────────── */
.header .navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.header .navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.header .navbar ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cc0000;
    transition: width 0.3s ease;
}

.header .navbar ul li a:hover {
    color: #cc0000;
}

.header .navbar ul li a:hover::after {
    width: 100%;
}

/* ── CTA Buttons Container ──────────────────────────────── */
.header .header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .header-cta .button-1 {
    padding: 10px 20px;
    background-color: #9C192B;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.header .header-cta .button-1:hover {
    background-color: #821523;
}

.header .header-cta .button-1 a {
    text-decoration: none;
    color: white;
}

/* ── WhatsApp Button ─────────────────────────────────────── */
.header .whatsapp-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.header .whatsapp-btn:hover {
    background: #1db954;
    transform: translateY(-2px) scale(1.08);
}

/* ── Hamburger Button ────────────────────────────────────── */
.header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    z-index: 1001;
}

.header .hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger → X animation when active */
.header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Navigation Overlay (mobile) ─────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 992px
═══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .header .navbar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a2e 0%, #0d0d14 100%);
        flex-direction: column;
        padding: 80px 30px 30px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(.2, .9, .25, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .header .navbar.active {
        right: 0;
    }

    .header .navbar ul {
        flex-direction: column;
        gap: 0;
    }

    .header .navbar ul li a {
        display: block;
        padding: 14px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header .header-cta {
        display: none;
    }

    .header .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
}
/* start footer */
.site-footer {
    position: relative;
    font-family: "Cairo", sans-serif;
    direction: rtl;
}

.footer-wave {
    position: relative;
    z-index: 2;
    margin-bottom: -2px;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* --- Newsletter Section --- */
.footer-newsletter {
    background: #0d0d0d;
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 23, 40, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-newsletter::after {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(155, 23, 40, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(155,23,40,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 35px 45px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.newsletter-text > i {
    font-size: 3rem;
    color: #9B1728;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.newsletter-text h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 4px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #9B1728;
    box-shadow: 0 0 20px rgba(155, 23, 40, 0.2);
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: "Cairo", sans-serif;
    font-size: 0.95rem;
    outline: none;
    direction: rtl;
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-input-group button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    color: #fff;
    border: none;
    font-family: "Cairo", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    background: linear-gradient(135deg, #c41e3a, #e0243e);
    transform: scale(1.02);
}

.newsletter-input-group button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.newsletter-input-group button:hover i {
    transform: translateX(-4px);
}

.newsletter-message {
    margin-top: 10px;
    font-size: 0.85rem;
    min-height: 22px;
    transition: all 0.4s ease;
}

.newsletter-message.success {
    color: #2ecc71;
}

.newsletter-message.error {
    color: #e74c3c;
}

/* --- Main Footer Area --- */
.footer-main {
    background: #0d0d0d;
    padding: 60px 0 40px;
}

.footer-main .container {
    max-width: 1300px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* --- Footer Columns --- */
.footer-col-title {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #9B1728, transparent);
    border-radius: 3px;
}

.footer-col-title i {
    color: #9B1728;
    font-size: 1.1rem;
}

/* --- Footer About Column --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-logo-lg {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #9B1728, #e0243e);
    padding: 8px 14px;
    border-radius: 10px;
    line-height: 1;
    letter-spacing: 1px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.footer-slogan {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
}

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(155, 23, 40, 0.12);
    border: 1px solid rgba(155, 23, 40, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(155, 23, 40, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 23, 40, 0.15);
}

.trust-badge i {
    color: #9B1728;
    font-size: 0.85rem;
}

.trust-badge span {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 600;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    position: relative;
    padding-right: 15px;
}

.footer-tagline::before {
    content: '❝';
    position: absolute;
    right: 0;
    top: -2px;
    color: #9B1728;
    font-size: 1rem;
}

/* --- Footer Links --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: rgba(255,255,255,0.3);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 0;
    height: 1px;
    background: #9B1728;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-right: 8px;
}

.footer-links a:hover i {
    transform: translateX(-4px);
    color: #9B1728;
}

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

/* --- Footer Contact List --- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-contact-item:hover {
    background: rgba(155,23,40,0.1);
    border-color: rgba(155,23,40,0.2);
    transform: translateX(-4px);
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon-box i {
    color: #fff;
    font-size: 1rem;
}

.contact-icon-box.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon-box.email-icon {
    background: linear-gradient(135deg, #EA4335, #c5221f);
}

.contact-icon-box.address-icon {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
}

.footer-contact-item:hover .contact-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

/* --- Social Media Bar --- */
.footer-social-bar {
    background: #0d0d0d;
    padding: 30px 0;
}

.social-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin: 0;
}

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

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link i {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    transform: translateY(-6px) scale(1.05);
    border-color: transparent;
}

.social-link:hover i {
    color: #fff;
    transform: scale(1.15);
}

/* Facebook */
.social-link.facebook::before {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}
.social-link.facebook:hover::before { opacity: 1; }
.social-link.facebook:hover {
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.35);
}

/* WhatsApp */
.social-link.whatsapp::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}
.social-link.whatsapp:hover::before { opacity: 1; }
.social-link.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Instagram */
.social-link.instagram::before {
    background: linear-gradient(135deg, #F56040, #C13584, #833AB4);
}
.social-link.instagram:hover::before { opacity: 1; }
.social-link.instagram:hover {
    box-shadow: 0 8px 25px rgba(193, 53, 132, 0.35);
}

/* Twitter/X */
.social-link.twitter::before {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}
.social-link.twitter:hover::before { opacity: 1; }
.social-link.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.35);
}

/* --- Decorative Divider --- */
.footer-divider {
    background: #0d0d0d;
    padding: 0 0 5px;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 23, 40, 0.4), rgba(255,255,255,0.08), rgba(155, 23, 40, 0.4), transparent);
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #9B1728;
    font-size: 0.6rem;
    background: #0d0d0d;
    padding: 0 12px;
}

/* --- Bottom Bar --- */
.footer-bottom {
    background: #080808;
    padding: 20px 0;
}

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

.copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

.copyright strong {
    color: #9B1728;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #9B1728;
}

.bottom-sep {
    color: rgba(255,255,255,0.15);
    font-size: 0.8rem;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 25px rgba(155, 23, 40, 0.35);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(155, 23, 40, 0.5);
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    background: linear-gradient(135deg, #9B1728, #c41e3a);
    opacity: 0;
    z-index: -1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.back-to-top.visible::before {
    opacity: 0.4;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* --- Footer Fade In Animation --- */
.site-footer .footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.site-footer .footer-col.footer-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================ */
/*                     FOOTER RESPONSIVE STYLES                     */
/* ================================================================ */

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 35px;
    }
    .newsletter-wrapper {
        padding: 30px 35px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    .newsletter-text {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-text > i {
        font-size: 2.5rem;
    }
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    .social-bar-content {
        flex-direction: column;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-main {
        padding: 40px 0 30px;
    }
    .footer-newsletter {
        padding: 30px 0 40px;
    }
    .newsletter-wrapper {
        padding: 25px 20px;
        border-radius: 16px;
    }
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }
    .newsletter-input-group button {
        justify-content: center;
        padding: 14px 20px;
        border-radius: 0 0 11px 11px;
    }
    .footer-about {
        text-align: center;
    }
    .footer-about .footer-col-title {
        justify-content: center;
    }
    .footer-about .footer-col-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-trust-badges {
        justify-content: center;
    }
    .footer-tagline {
        text-align: center;
        padding-right: 0;
    }
    .footer-tagline::before {
        display: none;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
        text-align: right;
    }
    .footer-links a {
        justify-content: flex-start;
        padding: 4px 0;
    }
    .footer-links a::after {
        display: none;
    }
    .footer-contact-list {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 12px;
        align-items: stretch;
    }
    .footer-contact-item {
        width: 100%;
        max-width: none;
        flex-direction: column; /* Stack icon and text vertically to save space */
        justify-content: center;
        text-align: center;
        padding: 12px 8px;
        gap: 8px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .newsletter-text h3 {
        font-size: 1.15rem;
    }
    .newsletter-text p {
        font-size: 0.82rem;
    }
    .newsletter-input-group input {
        padding: 13px 16px;
        font-size: 0.88rem;
    }
    .newsletter-input-group button {
        padding: 13px 16px;
        font-size: 0.88rem;
    }
    .footer-brand {
        font-size: 1.1rem;
    }
    .footer-desc {
        font-size: 0.85rem;
    }
    .trust-badge {
        padding: 5px 10px;
    }
    .trust-badge span {
        font-size: 0.72rem;
    }
    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .contact-value {
        font-size: 0.78rem;
        word-break: break-word;
    }
    .copyright {
        font-size: 0.78rem;
    }
}
