/*
===========================================
1ST MOVERS THEME - MOBILE PERFECT VERSION
===========================================
*/

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Arial', sans-serif;
    line-height: 1.6;
    background:var(--bg);
    font-size: var(--body-font);
    color: var(--text);
}

.container {
    padding: 0 20px;
    max-width: var(--container);
    margin: auto;
}

h1, h2, h3 {
    font-size: var(--heading-font);
}

.btn,
button {
    background: var(--primary);
    border-radius: var(--btn-radius);
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== HEADER STYLES - DESKTOP ========== */

.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999;
}

/* Top Header - 3 Column Grid */
.header-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 14px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo - Left Side */
.site-branding {
    grid-column: 1;
}

.site-branding .site-logo {
    max-height: 55px;
    width: auto !important;
    height: auto !important;
    display: block;
}

/* Right Side Container - Phone + Buttons */
.header-right {
    grid-column: 3; /* Right side */
    display: flex;
    align-items: center;
    gap: 25px;
    justify-self: end; /* Align to right */
}

/* Contact Info */
.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.3;
}

.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.phone-number::before {
    content: "📞";
    margin-right: 5px;
    font-size: 16px;
}

.email-address {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

/* Buttons */
.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-buttons .btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #f1f1f1;
    color: #111;
}

.btn-secondary:hover {
    background: #e5e5e5;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color:var(--bg);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}

.btn-secondary {
    background:var(--bg);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color:var(--bg);
}

/* ========== NAVIGATION - DESKTOP ========== */

.main-navigation {
    background: #fff;
    border-top: 1px solid #eee;
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

/* Main menu items */
.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 16px 22px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    color: #e31e24;
}

/* Active menu item */
.nav-menu > li.current-menu-item > a {
    color: #e31e24;
    position: relative;
}

.nav-menu > li.current-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e31e24;
}

.nav-menu > li.current-menu-parent > a {
    color: #000000;
}

.nav-menu > li.current-menu-parent > a:hover {
    color: #e31e24;
}

/* ========== DROPDOWN MENUS - DESKTOP ========== */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 220px;
    max-width: 260px;
    background: #f2f2f2; 
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 1000;
    border-radius: 0 0 6px 6px;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
}

/* Show dropdown on hover - DESKTOP AND TABLET */
.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li {
    border-bottom: 1px solid rgba(234, 231, 231, 0.15);
}

.nav-menu .sub-menu li:last-child {
    border-bottom: none;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    background: #f2f2f2;
    text-align: left;
}

.nav-menu .sub-menu a:hover {
    background: #e0e0e0;
    color: #e31e24;
    padding-left: 23px;
}

.nav-menu .sub-menu li.current-menu-item > a {
    background: #ddd;
    color: #e31e24;
    font-weight: bold;
}

/* ========== MOBILE MENU TOGGLE ========== */
.menu-toggle {
    display: none;
    background: #e31e24;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.menu-toggle:hover {
    background: #c41a1f;
}

/* ========== MOBILE RESPONSIVE - PERFECT ========== */

/* Tablet */
@media (max-width: 1024px) {
    .header-contact {
        display: none;
    }
    
    .nav-menu > li > a {
        padding: 16px 18px;
        font-size: 13px;
    }
}

/* Mobile - EVERYTHING IN ONE LINE */
@media (max-width: 768px) {
    
    /* ===== HEADER - ONE LINE ===== */
    .header-top {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
    }
    
    /* Logo - Left */
    .site-branding {
        grid-column: 1;
    }
    
    .site-branding .site-logo {
        max-height: 45px;
    }
    
    /* Phone Number - Center */
    .header-contact {
        grid-column: 2;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .phone-number {
        font-size: 16px;
        font-weight: 700;
        margin-right: -280px;
    }
    
    .phone-number::before {
        font-size: 14px;
    }
    
    .email-address {
        display: flex; 
        margin-right: -280px;
    }
    
    /* Menu Toggle Button - Right */
    .header-right {
        grid-column: 3;
        gap: 6px;
    }
    
    /* Hide header buttons on mobile - show in navbar */
    .header-buttons {
        display: none !important;
    }
    
    /* ===== NAVIGATION - RIGHT ALIGNED ===== */
    .menu-toggle {
        display: block;
        margin: 0;
    }
    
    .main-navigation {
        border-top: none;
        display: flex;
        justify-content: flex-end; /* Right align */
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 85vh;
       margin-top: 60px;
        overflow-y: auto;
        position: absolute;
        
        left: 0;
        right: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Mobile menu buttons - VERTICAL LAYOUT */
    .mobile-menu-buttons {
        display: flex;
        flex-direction: column; /* Vertical stack */
        gap: 12px;
        padding: 15px 10px;
        
        margin-top: 100px; /* Push buttons down */
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        /* border-bottom: 3px solid #e31e24; */
        box-shadow: inset 0 -2px 5px rgba(0,0,0,0.05);
    }
    
    .mobile-menu-buttons .btn {
        width: 100%; /* Full width */
        padding: 15px 20px;
        font-size: 15px;
        text-align: center;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    /* .mobile-menu-buttons .btn-secondary {
        background: #fff;
        color: #e31e24;
        border: 2px solid #e31e24;
    }
     */
    .mobile-menu-buttons .btn-secondary:hover,
    .mobile-menu-buttons .btn-secondary:active {
        background: #e31e24;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
    }
    
    .mobile-menu-buttons .btn-primary {
        background: #e31e24;
        color: #fff;
        border: 2px solid #e31e24;
    }
    
    .mobile-menu-buttons .btn-primary:hover,
    .mobile-menu-buttons .btn-primary:active {
        background: #c41a1f;
        border-color: #c41a1f;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(227, 30, 36, 0.4);
    }
    
    /* Menu Items */
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu > li > a {
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .nav-menu > li > a:hover {
        background: #f8f8f8;
        color: #e31e24;
        padding-left: 25px;
    }
    
    /* Current/Active menu item */
    .nav-menu > li.current-menu-item > a {
        background: #fff5f5;
        color: #e31e24;
        border-left: 4px solid #e31e24;
        padding-left: 20px;
    }
    
    /* ===== SUBMENU - HOVER/TOUCH TO OPEN (LIKE DESKTOP) ===== */
    .nav-menu .sub-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none !important;
        box-shadow: none;
        background: #f8f8f8;
        min-width: 100%;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        border-radius: 0;
        border-left: 3px solid #e31e24;
        margin: 0;
    }
    
    /* ENABLE HOVER ON MOBILE - Just like desktop */
    .nav-menu li.menu-item-has-children:hover > .sub-menu,
    .nav-menu li.menu-item-has-children.hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 1000px !important;
        padding: 8px 0;
        display: block !important;
    }
    
    .nav-menu .sub-menu a {
        color: #555;
        background: #f8f8f8;
        padding: 12px 20px 12px 45px;
        font-size: 14px;
        display: block;
        transition: all 0.3s ease;
        position: relative;
    }
    
    /* Arrow indicator for submenu items */
    .nav-menu .sub-menu a::before {
        content: '→';
        position: absolute;
        left: 25px;
        color: #e31e24;
        font-weight: bold;
    }
    
    .nav-menu .sub-menu a:hover {
        background: #e8e8e8;
        color: #e31e24;
        padding-left: 50px;
    }
    
    .nav-menu .sub-menu li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-menu .sub-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .sub-menu li.current-menu-item > a {
        background: #e31e24;
        color: #fff;
    }
    
    .nav-menu .sub-menu li.current-menu-item > a::before {
        color: #fff;
    }
    
    /* Parent menu items with submenus - NO click indicator needed */
    .nav-menu li.menu-item-has-children > a {
        position: relative;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .header-top {
        gap: 6px;
    }
    
    .site-branding .site-logo {
        max-height: 38px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .header-buttons .btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 500px;
    height: 60vh;
    max-height: 600px;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 0;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 440px;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    border-radius: 0 15px 15px 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    z-index: 1;
    border-radius: 0 15px 15px 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
}

.hero-text {
    color:var(--bg);
    padding-left: 40px;
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 18px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Callback Form */
.callback-form-wrapper {
    background:var(--bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.callback-form-wrapper h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(227, 30, 36, 0.2);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 460px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(0, 0, 0, 0.5);
    color:var(--bg);
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    margin-right: 220px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.slider-dots .dot.active {
    background:var(--bg);
    width: 12px;
    height: 12px;
    border-color:var(--bg);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-slide {
        right: 0;
        border-radius: 0;
    }

    .hero-overlay {
        border-radius: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
        padding-left: 0;
    }

    .callback-form-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-section {
        height: auto;
        min-height: 700px;
        padding: 60px 0;
    }

    .slider-controls {
        right: 20px;
    }

    .slider-dots {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 650px;
        height: auto;
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .callback-form-wrapper {
        padding: 25px;
    }

    .slider-controls {
        display: none;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
}

/* ========== CONTENT SECTION ========== */
.content-section {
    padding: 60px 0;
    background:var(--bg);
}

.content-section .section-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text);
    font-weight: bold;
}

.content-section .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0,0,0,.65);
    margin-bottom: 20px;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.services-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text);
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background:var(--bg);
    padding: 35px 25px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    border-radius: 8px 8px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 52px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.service-card h3 {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.service-card p {
    color: rgba(0,0,0,.65);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 70px 0;
    text-align: center;
    background: #f9f9f9;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text);
    font-weight: bold;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.cta-item:hover {
    transform: translateY(-5px);
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color:var(--bg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.cta-item:hover .cta-icon {
    background: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.cta-item h4 {
    font-size: 15px;
    color: var(--text);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: var(--footer-bg, #111111);
    color: var(--footer-text, #ffffff);
    font-size: 15px;
    line-height: 1.7;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--footer-hover, #ff3b3b);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
}

.site-footer .footer-widget {
    min-width: 0;
}

.footer-widget h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.site-footer h3::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #ff3b3b;
    display: block;
    margin-top: 8px;
}

.site-footer p {
    margin: 0 0 14px;
    opacity: 0.9;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin-bottom: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social-links {
    margin-top: 18px;
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #ff3b3b;
    color: #fff;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Footer Center Alignment */
    .footer-content {
        text-align: center;
        justify-items: center;
        gap: 40px; /* extra spacing for uniqueness */
    }

    .footer-widget {
        background: rgba(255,255,255,0.05);
        padding: 15px;
        border-radius: 8px;
    }

    .footer-widget h3::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    /* Typography tweaks */
    .footer-widget h3 {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .site-footer p,
    .site-footer li {
        font-size: 14px;
    }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SUCCESS/ERROR MESSAGES ========== */
.success-message,
.error-message {
    padding: 12px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}