/**

 * Modern Header & Footer Styles

 * ATRAHI Design Theme

 */



/* ===== CSS Variables ===== */

:root {

    --header-height: 80px;

    --topbar-height: 40px;

    --gold: #b99d63;

    --gold-dark: #9a8352;

    --gold-light: #d4c49a;

    --dark: #1a1a1a;

    --gray-100: #f8f9fa;

    --gray-200: #e9ecef;

    --gray-500: #6b7280;

    --gray-700: #374151;

    --white: #ffffff;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);

    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);

    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);

    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}



/* ===== HEADER STYLES ===== */



/* Top Bar */

.header-topbar {

    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);

    color: var(--gray-200);

    font-size: 0.8125rem;

    height: var(--topbar-height);

    display: flex;

    align-items: center;

}



.topbar-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.topbar-left {

    display: flex;

    align-items: center;

    gap: 1rem;

}



.topbar-item {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    opacity: 0.9;

}



.topbar-item svg {

    opacity: 0.7;

}



.topbar-divider {

    width: 1px;

    height: 14px;

    background: rgba(255,255,255,0.2);

}



.topbar-socials {

    display: flex;

    gap: 0.75rem;

}



.topbar-socials a {

    color: var(--gray-200);

    opacity: 0.7;

    transition: var(--transition);

}



.topbar-socials a:hover {

    opacity: 1;

    color: var(--gold);

}



/* Main Navigation */

.main-nav {

    background: var(--white);

    height: var(--header-height);

    display: flex;

    align-items: center;

    position: sticky;

    top: 0;

    z-index: 1000;

    transition: var(--transition);

    border-bottom: 1px solid transparent;

}



.main-nav.scrolled {

    box-shadow: var(--shadow-lg);

    border-bottom-color: var(--gray-200);

}



.main-nav.scrolled .header-topbar {

    display: none;

}



.nav-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

}



/* Logo */

.nav-logo {

    flex-shrink: 0;

}



.logo-img {

    height: 90px;

    width: auto;

    transition: var(--transition);

}



.main-nav.scrolled .logo-img {

    height: 70px;

}



/* Navigation Menu */

.nav-center {

    flex: 1;

    display: flex;

    justify-content: center;

}



.nav-menu {

    display: flex;

    align-items: center;

    gap: 0.25rem;

    list-style: none;

    margin: 0;

    padding: 0;

}



.nav-item {

    position: relative;

}



.nav-link {

    display: flex;

    align-items: center;

    gap: 0.375rem;

    padding: 0.75rem 1rem;

    color: var(--gray-700);

    font-weight: 500;

    font-size: 0.9375rem;

    text-decoration: none;

    border-radius: 0.5rem;

    transition: var(--transition);

    white-space: nowrap;

}



.nav-link:hover,

.nav-item.active .nav-link {

    color: var(--gold);

    background: rgba(185, 157, 99, 0.08);

}



.dropdown-arrow {

    transition: transform 0.3s ease;

}



.nav-item.has-mega-menu:hover .dropdown-arrow {

    transform: rotate(180deg);

}



/* Mega Menu */

.mega-menu {

    position: absolute;

    top: 100%;

    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 720px;

    background: var(--white);

    border-radius: 1rem;

    box-shadow: var(--shadow-xl);

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

    z-index: 100;

    padding-top: 0.75rem;

}



.nav-item.has-mega-menu:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}



.mega-menu::before {

    content: '';

    position: absolute;

    top: -10px;

    left: 50%;

    transform: translateX(-50%);

    border: 10px solid transparent;

    border-bottom-color: var(--white);

}



.mega-menu-inner {

    padding: 1.5rem;

}



.mega-menu-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0.75rem;

}



.mega-item {

    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 1rem;

    border-radius: 0.75rem;

    text-decoration: none;

    transition: var(--transition);

}



.mega-item:hover {

    background: var(--gray-100);

}



.mega-item-icon {

    width: 48px;

    height: 48px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    flex-shrink: 0;

}



/* Mega Menu Thumbnails */

.mega-item-thumb {

    width: 56px;

    height: 56px;

    border-radius: 12px;

    overflow: hidden;

    flex-shrink: 0;

    background: #f5f5f5;

    border: 1px solid #e5e5e5;

}



.mega-item-thumb img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}



.mega-item-content h4 {

    font-size: 0.9375rem;

    font-weight: 600;

    color: var(--dark);

    margin: 0 0 0.25rem;

}



.mega-item-content p {

    font-size: 0.8125rem;

    color: var(--gray-500);

    margin: 0;

    line-height: 1.4;

}



.mega-menu-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 1rem 1.25rem;

    margin-top: 1rem;

    background: linear-gradient(135deg, rgba(185, 157, 99, 0.1), rgba(185, 157, 99, 0.05));

    border-radius: 0.75rem;

    border: 1px dashed var(--gold-light);

}



.mega-cta-content p {

    margin: 0;

    font-size: 0.875rem;

    color: var(--gray-700);

}



.mega-cta-btn {

    padding: 0.625rem 1.25rem;

    background: var(--gold);

    color: var(--white);

    border-radius: 0.5rem;

    font-weight: 600;

    font-size: 0.875rem;

    text-decoration: none;

    transition: var(--transition);

}



.mega-cta-btn:hover {

    background: var(--gold-dark);

}



/* Nav Actions */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 1rem;

}



.nav-phone {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    text-decoration: none;

    padding: 0.5rem;

    border-radius: 0.5rem;

    transition: var(--transition);

}



.nav-phone:hover {

    background: var(--gray-100);

}



.phone-icon {

    width: 40px;

    height: 40px;

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

}



.phone-text {

    display: flex;

    flex-direction: column;

}



.phone-text small {

    font-size: 0.75rem;

    color: var(--gray-500);

    line-height: 1;

}



.phone-text strong {

    font-size: 1rem;

    color: var(--dark);

    line-height: 1.3;

}



.nav-cta-btn {

    padding: 0.75rem 1.5rem;

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));

    color: var(--white);

    border-radius: 0.5rem;

    font-weight: 600;

    font-size: 0.9375rem;

    text-decoration: none;

    transition: var(--transition);

    box-shadow: 0 4px 14px rgba(185, 157, 99, 0.4);

}



.nav-cta-btn:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 20px rgba(185, 157, 99, 0.5);

}



/* Mobile Toggle */

.mobile-toggle {

    display: none;

    width: 44px;

    height: 44px;

    background: transparent;

    border: none;

    cursor: pointer;

    padding: 0;

    border-radius: 0.5rem;

    transition: var(--transition);

}



.mobile-toggle:hover {

    background: var(--gray-100);

}



.hamburger {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    width: 100%;

    height: 100%;

}



.hamburger span {

    display: block;

    width: 22px;

    height: 2px;

    background: var(--dark);

    border-radius: 2px;

    transition: var(--transition);

}



.mobile-toggle.active .hamburger span:nth-child(1) {

    transform: rotate(45deg) translate(5px, 5px);

}



.mobile-toggle.active .hamburger span:nth-child(2) {

    opacity: 0;

}



.mobile-toggle.active .hamburger span:nth-child(3) {

    transform: rotate(-45deg) translate(5px, -5px);

}



/* Scroll Progress */

.scroll-progress {

    position: fixed;

    top: 0;

    left: 0;

    height: 3px;

    background: linear-gradient(90deg, var(--gold), var(--gold-light));

    z-index: 9999;

    width: 0%;

    transition: width 0.1s ease;

}



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

.mobile-nav-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0,0,0,0.5);

    backdrop-filter: blur(4px);

    z-index: 9998;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

}



.mobile-nav-overlay.active {

    opacity: 1;

    visibility: visible;

}



.mobile-nav-container {

    position: absolute;

    top: 0;

    right: 0;

    width: 100%;

    max-width: 380px;

    height: 100%;

    background: var(--white);

    transform: translateX(100%);

    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    display: flex;

    flex-direction: column;

    overflow-y: auto;

}



.mobile-nav-overlay.active .mobile-nav-container {

    transform: translateX(0);

}



.mobile-nav-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 1rem 1.25rem;

    border-bottom: 1px solid var(--gray-200);

}



.mobile-logo img {

    height: 60px;

    width: auto;

}



.mobile-close {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gray-100);

    border: none;

    border-radius: 50%;

    cursor: pointer;

    transition: var(--transition);

}



.mobile-close:hover {

    background: var(--gray-200);

}



/* Mobile Search */

.mobile-search {

    padding: 1rem 1.25rem;

    border-bottom: 1px solid var(--gray-200);

}



.mobile-search form {

    display: flex;

    background: var(--gray-100);

    border-radius: 0.5rem;

    overflow: hidden;

}



.mobile-search-input {

    flex: 1;

    padding: 0.875rem 1rem;

    border: none;

    background: transparent;

    font-size: 0.9375rem;

    outline: none;

}



.mobile-search-btn {

    width: 48px;

    background: transparent;

    border: none;

    cursor: pointer;

    color: var(--gray-500);

}



/* Mobile Menu */

.mobile-nav-menu {

    flex: 1;

    padding: 0.5rem 0;

    overflow-y: auto;

}



.mobile-menu-list {

    list-style: none;

    margin: 0;

    padding: 0;

}



.mobile-menu-list > li > a,

.mobile-menu-list > li > .submenu-toggle {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 1rem 1.25rem;

    color: var(--dark);

    text-decoration: none;

    font-weight: 500;

    transition: var(--transition);

    border-left: 3px solid transparent;

}



.mobile-menu-list > li > a:hover,

.mobile-menu-list > li > .submenu-toggle:hover {

    background: var(--gray-100);

    border-left-color: var(--gold);

    color: var(--gold);

}



.menu-icon {

    margin-right: 0.75rem;

}



.submenu-toggle {

    width: 100%;

    background: none;

    border: none;

    cursor: pointer;

    font-size: 1rem;

}



.toggle-icon {

    transition: transform 0.3s ease;

}



.has-submenu.open .toggle-icon {

    transform: rotate(180deg);

}



.mobile-submenu {

    list-style: none;

    margin: 0;

    padding: 0;

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;

    background: var(--gray-100);

}



.has-submenu.open .mobile-submenu {

    max-height: 500px;

}



.mobile-submenu li a {

    display: block;

    padding: 0.875rem 1.25rem 0.875rem 3rem;

    color: var(--gray-700);

    text-decoration: none;

    font-size: 0.9375rem;

    transition: var(--transition);

}



.mobile-submenu li a:hover {

    color: var(--gold);

    background: rgba(185, 157, 99, 0.1);

}



/* Mobile CTA */

.mobile-nav-cta {

    padding: 1.25rem;

    border-top: 1px solid var(--gray-200);

    background: var(--gray-100);

}



.mobile-cta-phone {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.75rem;

    padding: 1rem;

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));

    color: var(--white);

    border-radius: 0.75rem;

    text-decoration: none;

    font-size: 1rem;

    margin-bottom: 0.75rem;

}



.mobile-cta-buttons {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0.75rem;

}



.mobile-cta-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.5rem;

    padding: 0.875rem;

    border-radius: 0.5rem;

    text-decoration: none;

    font-weight: 500;

    font-size: 0.875rem;

    transition: var(--transition);

}



.mobile-cta-btn.messenger {

    background: #0084ff;

    color: var(--white);

}



.mobile-cta-btn.zalo {

    background: #0068ff;

    color: var(--white);

}



/* Mobile Footer */

.mobile-nav-footer {

    padding: 1rem 1.25rem;

    text-align: center;

    border-top: 1px solid var(--gray-200);

}



.mobile-socials {

    display: flex;

    justify-content: center;

    gap: 1rem;

    margin-bottom: 0.75rem;

}



.mobile-socials a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gray-100);

    border-radius: 50%;

    color: var(--gray-700);

    transition: var(--transition);

}



.mobile-socials a:hover {

    background: var(--gold);

    color: var(--white);

}



.mobile-nav-footer p {

    font-size: 0.8125rem;

    color: var(--gray-500);

    margin: 0;

}



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



/* Footer CTA Section */

.footer-cta-section {

    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);

    padding: 4rem 0;

    position: relative;

    overflow: hidden;

}



.footer-cta-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

}



.footer-cta-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 2rem;

    position: relative;

    z-index: 1;

}



.footer-cta-content h2 {

    font-size: 1.75rem;

    font-weight: 700;

    color: var(--white);

    margin: 0 0 0.5rem;

}



.footer-cta-content p {

    font-size: 1rem;

    color: rgba(255,255,255,0.9);

    margin: 0;

}



.footer-cta-actions {

    display: flex;

    gap: 1rem;

}



.footer-cta-btn {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    padding: 1rem 1.75rem;

    border-radius: 0.5rem;

    font-weight: 600;

    font-size: 1rem;

    text-decoration: none;

    transition: var(--transition);

}



.footer-cta-btn.primary {

    background: var(--white);

    color: var(--gold-dark);

}



.footer-cta-btn.primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 20px rgba(0,0,0,0.2);

}



.footer-cta-btn.secondary {

    background: transparent;

    color: var(--white);

    border: 2px solid var(--white);

}



.footer-cta-btn.secondary:hover {

    background: var(--white);

    color: var(--gold-dark);

}



/* Footer Main */

.footer-main {

    background: var(--dark);

    padding: 5rem 0 3rem;

}



.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;

    gap: 3rem;

}



/* Footer Brand */

.footer-brand {

    padding-right: 2rem;

}



.footer-logo img {

    height: 50px;

    width: auto;

    filter: brightness(0) invert(1);

    margin-bottom: 1rem;

}



.footer-tagline {

    font-size: 0.875rem;

    color: var(--gold);

    font-weight: 500;

    margin-bottom: 1rem;

}



.footer-desc {

    font-size: 0.9375rem;

    color: rgba(255,255,255,0.7);

    line-height: 1.7;

    margin-bottom: 1.5rem;

}



.footer-badges {

    display: flex;

    flex-direction: column;

    gap: 0.75rem;

}



.badge-item {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    font-size: 0.875rem;

    color: rgba(255,255,255,0.8);

}



.badge-icon {

    width: 24px;

    height: 24px;

    background: var(--gold);

    color: var(--white);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.75rem;

    font-weight: 700;

}



/* Footer Columns */

.footer-column {

    

}



.footer-title {

    display: flex;

    align-items: center;

    gap: 0.5rem;

    font-size: 1rem;

    font-weight: 600;

    color: var(--white);

    margin: 0 0 1.5rem;

    padding-bottom: 0.75rem;

    border-bottom: 2px solid var(--gold);

}



.title-icon {

    font-size: 1.125rem;

}



.footer-links {

    list-style: none;

    margin: 0;

    padding: 0;

}



.footer-links li {

    margin-bottom: 0.75rem;

}



.footer-links a {

    color: rgba(255,255,255,0.7);

    text-decoration: none;

    font-size: 0.9375rem;

    transition: var(--transition);

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

}



.footer-links a:hover {

    color: var(--gold);

    padding-left: 0.5rem;

}



/* Footer Contact */

.contact-item {

    display: flex;

    gap: 1rem;

    margin-bottom: 1.25rem;

}



.contact-icon {

    width: 40px;

    height: 40px;

    background: rgba(255,255,255,0.1);

    border-radius: 0.5rem;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--gold);

    flex-shrink: 0;

}



.contact-text strong {

    display: block;

    font-size: 0.8125rem;

    color: var(--gold);

    margin-bottom: 0.25rem;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



.contact-text p,

.contact-text a {

    color: rgba(255,255,255,0.8);

    font-size: 0.9375rem;

    line-height: 1.5;

    margin: 0;

    text-decoration: none;

}



.contact-text a:hover {

    color: var(--gold);

}



.phone-highlight .phone-number {

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--gold);

    display: block;

}



/* Footer Socials */

.footer-socials {

    display: flex;

    gap: 0.75rem;

    margin-top: 1.5rem;

}



.social-link {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 0.5rem;

    transition: var(--transition);

    background: rgba(255,255,255,0.1);

    color: var(--white);

}



.social-link:hover {

    transform: translateY(-3px);

}



.social-link.facebook:hover { background: #1877f2; }

.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.social-link.youtube:hover { background: #ff0000; }

.social-link.messenger:hover { background: #0084ff; }

.social-link.zalo:hover { background: #0068ff; }



/* Footer Bottom */

.footer-bottom {

    background: #111;

    padding: 1.5rem 0;

}



.footer-bottom-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.footer-copyright p {

    margin: 0;

    font-size: 0.875rem;

    color: rgba(255,255,255,0.6);

}



.footer-copyright strong {

    color: var(--gold);

}



.footer-license {

    font-size: 0.8125rem !important;

    margin-top: 0.25rem !important;

}



.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.footer-bottom-links a {

    color: rgba(255,255,255,0.6);

    text-decoration: none;

    font-size: 0.875rem;

    transition: var(--transition);

}



.footer-bottom-links a:hover {

    color: var(--gold);

}



.link-divider {

    color: rgba(255,255,255,0.3);

}



/* ===== FLOATING ACTIONS ===== */

.floating-actions {

    position: fixed;

    right: 1.5rem;

    bottom: 6rem;

    display: flex;

    flex-direction: column;

    gap: 0.75rem;

    z-index: 990;

}



.floating-btn {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    border: none;

    transition: var(--transition);

    position: relative;

    box-shadow: var(--shadow-lg);

}



.floating-btn:hover {

    transform: scale(1.1);

}



.back-to-top {

    background: var(--dark);

    color: var(--white);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

}



.back-to-top.visible {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



.phone-btn {

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));

    color: var(--white);

    animation: pulse-ring 2s infinite;

}



@keyframes pulse-ring {

    0% { box-shadow: 0 0 0 0 rgba(185, 157, 99, 0.4); }

    70% { box-shadow: 0 0 0 15px rgba(185, 157, 99, 0); }

    100% { box-shadow: 0 0 0 0 rgba(185, 157, 99, 0); }

}



.zalo-btn {

    background: #0068ff;

    color: var(--white);

}



.messenger-btn {

    background: #0084ff;

    color: var(--white);

}



.btn-tooltip {

    position: absolute;

    right: 60px;

    background: var(--dark);

    color: var(--white);

    padding: 0.5rem 0.75rem;

    border-radius: 0.375rem;

    font-size: 0.8125rem;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

}



.floating-btn:hover .btn-tooltip {

    opacity: 1;

    visibility: visible;

}



/* ===== MOBILE STICKY CTA ===== */

.mobile-sticky-cta {

    display: none;

    position: fixed;

    bottom: 0;

    left: 0;

    right: 0;

    background: var(--white);

    padding: 0.75rem 1rem;

    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);

    z-index: 999;

}



.mobile-sticky-cta {

    display: none;

    grid-template-columns: repeat(4, 1fr);

    gap: 0.5rem;

}



.sticky-btn {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.25rem;

    padding: 0.5rem;

    border-radius: 0.5rem;

    text-decoration: none;

    font-size: 0.6875rem;

    font-weight: 500;

    transition: var(--transition);

}



.sticky-btn span {

    line-height: 1;

}



.sticky-btn.phone {

    background: linear-gradient(135deg, var(--gold), var(--gold-dark));

    color: var(--white);

}



.sticky-btn.zalo {

    background: #0068ff;

    color: var(--white);

}



.sticky-btn.messenger {

    background: #0084ff;

    color: var(--white);

}



.sticky-btn.contact {

    background: var(--gray-100);

    color: var(--dark);

}



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

@media (max-width: 1200px) {

    .mega-menu {

        width: 640px;

    }

    

    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 2.5rem;

    }

    

    .footer-brand {

        grid-column: span 2;

        padding-right: 0;

    }

}



@media (max-width: 1024px) {

    .header-topbar {

        display: none;

    }

    

    .nav-center {

        display: none;

    }

    

    .nav-phone .phone-text {

        display: none;

    }

    

    .nav-phone .phone-icon {

        width: 44px;

        height: 44px;

    }

    

    .nav-cta-btn {

        display: none;

    }

    

    .mobile-toggle {

        display: flex;

    }

    

    .footer-cta-wrapper {

        flex-direction: column;

        text-align: center;

    }

    

    .footer-cta-content h2 {

        font-size: 1.5rem;

    }

}



@media (max-width: 768px) {

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 2rem;

    }

    

    .footer-brand {

        grid-column: span 1;

        text-align: center;

    }

    

    .footer-badges {

        align-items: center;

    }

    

    .footer-title {

        justify-content: center;

    }

    

    .footer-links {

        text-align: center;

    }

    

    .footer-contact .contact-item {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    

    .footer-socials {

        justify-content: center;

    }

    

    .footer-bottom-content {

        flex-direction: column;

        gap: 1rem;

        text-align: center;

    }

    

    .footer-cta-actions {

        flex-direction: column;

        width: 100%;

        max-width: 320px;

        margin: 0 auto;

    }

    

    .footer-cta-btn {

        justify-content: center;

        padding: 0.875rem 1.5rem;

    }

    

    .floating-actions {

        display: none;

    }

    

    .mobile-sticky-cta {

        display: grid;

    }

    

    .site-footer {

        padding-bottom: 70px;

    }

}



@media (max-width: 480px) {

    .nav-wrapper {

        gap: 0.75rem;

    }

    

    .logo-img {

        height: 60px;

    }

    

    .footer-cta-section {

        padding: 2.5rem 0;

    }

    

    .footer-cta-content h2 {

        font-size: 1.25rem;

    }

    

    .footer-main {

        padding: 3rem 0 2rem;

    }

}

