@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
/* Responsive Navigation and Layout */
@media (max-width: 991px) {
    header { padding: 0 10px; height: 60px; }
    .logo { margin-right: 8px; font-size: 1.1rem; }
    .header-btn { margin-left: 6px; }
    section { padding: 40px 16px; }
}
@media (max-width: 795px) {
    .navbar { display: none !important; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; background: #fff; box-shadow: 0 4px 24px rgba(180,43,34,0.10); border-radius: 0 0 1.5rem 1.5rem; z-index: 1000; }
    .navbar.active { display: flex !important; }
    #menu-icon { display: block !important; }
    .header-btn { display: none !important; }
    header { height: 56px; }
}
@media (max-width: 600px) {
    .logo img { width: 32px; height: 32px; }
    .logo { font-size: 1rem; }
    .form-container { max-width: 98vw !important; min-width: unset !important; padding: 10px 4px 10px 4px !important; }
    .form-container form { flex-direction: column; gap: 0.7rem; left: 0 !important; bottom: 0.5rem !important; }
    .home { grid-template-columns: 1fr !important; padding: 30px 4px !important; }
    .text h1 { font-size: 2rem; }
    .text p { font-size: 1rem; }
    .services-container { grid-template-columns: 1fr !important; }
    .about-container { grid-template-columns: 1fr !important; text-align: center; }
    .about-img { padding: 0.5rem; }
    .newsletter { padding: 24px 4px 32px 4px; border-radius: 1rem; }
    .newsletter .box { max-width: 98vw; padding: 8px 4px; }
}
@media (max-width: 400px) {
    .logo { font-size: 0.9rem; }
    .form-container { padding: 4px 2px !important; }
    .newsletter { padding: 12px 2px 18px 2px; }
}
/* Touch-friendly buttons */
.btn, .header-btn .sign-up, .header-btn .sign-in, .whatsapp-btn {
    min-height: 44px;
    min-width: 44px;
    font-size: 1rem;
}

* { font-family: 'Rajdhani', sans-serif; margin: 0; padding: 0; box-sizing: border-box; scroll-padding-top: 2rem; scroll-behavior: smooth; list-style: none; text-decoration: none; }
:root {
    --main-color: #b42b22;
    --second-color: #b42b22;
    --text-color: #222;
    --gradient: linear-gradient(#b42b22, #b42b22);
}
html::-webkit-scrollbar { width: 0.5rem; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: var(--main-color); border-radius: 5rem; }
section { padding: 50px 100px; }
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 0;
    height: 70px;
}
.navbar {
    display: flex;
    gap: 18px;
    align-items: center;
    background: transparent;
    margin: 0;
    padding: 0;
    list-style: none;
}
.navbar a {
    color: #b42b22;
    font-weight: 700;
    font-size: 1.18rem;
    padding: 10px 18px;
    border-radius: 0.7rem;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.navbar a:hover, .navbar a.active {
    background: #b42b22;
    color: #fff;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.6rem;
    color: #b42b22;
    text-decoration: none;
    letter-spacing: 1px;
    margin-right: 32px;
}
.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 0.7rem;
    box-shadow: 0 2px 8px rgba(180,43,34,0.10);
    background: #fff;
}
.header-btn {
    display: flex;
    gap: 10px;
    margin-left: 24px;
}
.header-btn .sign-up {
    background: #b42b22;
    color: #fff;
    border-radius: 0.5rem;
    padding: 8px 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
}
.header-btn .sign-up:hover {
    background: #92231b;
}
.header-btn .sign-in {
    background: #fff;
    color: #b42b22;
    border: 2px solid #b42b22;
    border-radius: 0.5rem;
    padding: 8px 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.header-btn .sign-in:hover {
    background: #b42b22;
    color: #fff;
}
#menu-icon {
    font-size: 2rem;
    color: #b42b22;
    margin-left: 18px;
    display: none;
}
@media (max-width: 991px) {
    header { padding: 0 10px; }
    .logo { margin-right: 12px; }
    .header-btn { margin-left: 8px; }
}
@media (max-width: 795px) {
    .navbar { display: none; }
    #menu-icon { display: block; }
    .header-btn { display: none; }
}
.logo img { width: 40px; }
.navbar { display: flex; }
    .navbar li { position: relative; }
    .navbar a { font-size: 1rem; padding: 10px 20px; color: #222222; font-weight: 500; }
        .navbar a::after { content: ''; width: 0; height: 3px; background: var(--main-color); bottom: -4px; left: 0; transition: .5s; position: absolute; }
            .navbar a:hover::after { width: 100%; background: #b9b9b900; }
    header .ri-close-line { display: none; }
#menu-icon { font-size: 24px; cursor: pointer; z-index: 110; display: none; }
.header-btn a { padding: 10px 20px; color: #000000; font-weight: 500; }
.header-btn .sign-in { background: #b42b22; color: #FFFFFF; border-radius: .5rem; transition: .5s; }
    .header-btn .sign-in:hover { background: #92231b; }

/* Home */

.home { 
    width: 100%; 
    min-height: 100vh; 
    position: relative; 
    background: linear-gradient(120deg, #ffffff 60%, #f6f7fa 100%);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}
.home::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(closest-side, rgba(180,43,34,0.10), rgba(180,43,34,0));
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
}
.text h1 { font-size: 2.4rem; letter-spacing: 2px; font-family: 'Rajdhani', sans-serif; }
.text h1 { color: #1e1e1e; }
.text p { color: #444; max-width: 560px; }
.getitnow-btn {
    background: linear-gradient(90deg, #b42b22 60%, #92231b 100%);
    border: none;
    border-radius: 2.2rem;
    box-shadow: 0 6px 24px rgba(180,43,34,0.15);
    color: #ffffff;
}
.getitnow-btn:hover {
    background: linear-gradient(90deg, #92231b 40%, #b42b22 100%);
    box-shadow: 0 10px 28px rgba(180,43,34,0.20);
}
/* Unified headline and product title font */
h1, h2, .heading h1, .section-title, .product-title, #product-title {
    font-family: 'Rajdhani', sans-serif;
}
/* Product descriptions use Rajdhani */
.product-desc, #dynamic-description, #product-summary {
    font-family: 'Rajdhani', sans-serif;
}
.text span { color: var(--main-color); }
.text p { margin: 0.5rem 0 1rem; font-size: 1rem; font-family: 'Montserrat', sans-serif; }
.app-stores { display: flex; }
    .app-stores img { width: 100px; margin-right: 1rem; cursor: pointer; }
.form-container form { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; position: absolute; bottom: 4rem; left: 100px; background: #FFFFFF; padding: 20px; border-radius: .5rem; }
    .form-container form .btn { flex: 1 1 7rem; padding: 10px 34px; border: none; border-radius: .5rem; background: #b42b22; color: #FFFFFF; font-size: 1rem; font-weight: 500; cursor: pointer; }
        .form-container form .btn:hover { transition: .5s; background: #92231b; }
.input-box { flex: 1 1 7rem; display: flex; flex-direction: column; }
    .input-box span { font-weight: 500; }
    .input-box input { padding: 7px; outline: none; border: none; background: #EEEFF1; border-radius: .5rem; font-size: 1rem; }

/* Ride */

.heading { text-align: center; }
    .heading span { font-weight: 500; text-transform: uppercase; }
.heading h1 { font-size: 2.3rem; }
.ride-container { display: grid; align-items: center; grid-template-columns: repeat(auto-fit, minmax(250px, auto)); gap: 1rem; margin-top: 2rem; }
    .ride-container .box { text-align: center; padding: 20px; }
        .ride-container .box i { font-size: 34px; padding: 10px; background: #f5eaea; border-radius: .5rem;  color: var(--main-color); }
            .ride-container .box i:hover { background: #b42b22; color: #FFFFFF; }
        .ride-container .box h2 { font-size: 1.3rem; font-weight: 500; margin: 1.4rem 0 0.5rem; }

/* Services */

.services-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, auto)); gap: 1rem; margin-top: 2rem; }
    .services-container .box { padding: 10px; border-radius: 1rem; box-shadow: 1px 4px 41px rgba(0, 0, 0, .1); border: 2px solid #b42b22; }
        .services-container .box .box-img { width: 100%; height: 200px; }
            .services-container .box .box-img img { width: 100%; height: 100%; border-radius: 1rem; object-fit: cover; object-position: center; }
        .services-container .box p { padding: 0 10px; border: 1px solid #b42b22; width: 58px; border-radius: .5rem; margin: 1rem 0 1rem; }
        .services-container .box h3 { font-weight: 500; }
        .services-container .box h2 { font-size: 1.1rem; font-weight: 600; color: #b42b22; margin: 0.2rem 0 0.5rem; }
            .services-container .box h2 span { font-size: .8rem; font-weight: 500; color: var(--text-color); }
        .services-container .box .btn { display: flex; justify-content: center; background: #b42b22; color: #FFFFFF; padding: 10px; border-radius: .5rem; transition: .5s; }
            .services-container .box .btn:hover { background: #92231b; }

/* About */

.about-container { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 2rem; align-items: center; gap: 1rem; margin-top: 1rem; }
.about-img img { width: 100%; }
.about-text span { font-weight: 500; color: #b42b22; text-transform: uppercase; }
.about-text p { margin: 0.5rem 0 1.4rem; }
.about-text .btn { padding: 10px 20px; background: #b42b22; color: #FFFFFF; border-radius: .5rem; transition: .5s; }
    .about-text .btn:hover { background: #92231b; }

/* Reviews */

.reviews-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, auto)); gap: 1rem; margin-top: 2rem; }
    .reviews-container .box { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px; box-shadow: 1px 4px 4px rgba(0, 0, 0, .1); border-radius: .5rem; }
        .reviews-container .box h2 { font-size: 1.1rem; font-weight: 600; margin: .5rem 0 .5rem; }
        .reviews-container .box p { font-style: italic; }
    .reviews-container .box i { color: #b42b22; }
.rev-img { width: 70px; height: 70px; }
    .rev-img img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center; border: 2px solid #b42b22; }

/* Newsletter */

.newsletter {
    background: rgba(128,128,128,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    padding: 40px 0 60px 0;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(180,43,34,0.10);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border: 1.5px solid rgba(180,43,34,0.18);
}
.newsletter h2 {
    color: #b42b22;
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.newsletter .box {
    margin-top: 1rem;
    background: #fff;
    border-radius: 1rem;
    padding: 18px 20px 18px 24px;
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #b42b22;
    box-shadow: 0 4px 32px rgba(180,43,34,0.08);
}
.newsletter .box input {
    border: none;
    outline: none;
    color: #b42b22;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 10px;
    border-radius: 0.5rem;
    flex: 1 1 0%;
    background: #f7f7f7;
    transition: box-shadow 0.2s;
}
.newsletter .box input:focus {
    box-shadow: 0 0 0 2px #b42b2233;
}
.newsletter .box .btn {
    background: #b42b22;
    color: #fff;
    padding: 12px 28px;
    border-radius: .7rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(180,43,34,0.08);
    border: none;
}
.newsletter .box .btn:hover {
    background: #92231b;
    box-shadow: 0 4px 16px rgba(180,43,34,0.13);
}
.copyright { padding: 20px; display: flex; justify-content: space-between; align-items: center; }
    .copyright span { font-family: 'Turret Road'; }
.social a { color: #b42b22; padding: 10px; font-size: 21px; }

/* Responsive */

@media(max-width: 1375px) {
    .text { display: none; }
}

@media(max-width: 991px) {
    header { padding: 18px 40px; }
    section { padding: 50px 40px; }
}

@media(max-width: 881px) {
    .home { background-position: center; }
    .form-container .form { bottom: 0.2rem; left: 40px; }
    .text { display: initial; }
}

@media(max-width: 795px){
    header { padding: 11px 40px; }
    #menu-icon { display: initial; }
    .sign-up { display: none; }
    .text h1 { font-size: 2.5rem; width: 320px; }
    .text p { font-size: .8rem; width: 320px; }
    .home { grid-template-columns: 1fr; }
    .form-container form { position: unset; }
    header .navbar { 
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: #FFFFFF;
        box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
        transition: .2s ease;
        text-align: left;
    }
        .navbar.active { top: 100%; }
        .navbar a { padding: 1rem; border-left: 2px solid #b42b22; margin: 1rem; display: block; transition: .3s ease; }
            .navbar a:hover { color: #FFFFFF; background: #b42b22; border: none; }
            .navbar a::after { display: none; }
    .heading span { font-size: .9rem; font-weight: 600; }
    .heading h1 { font-size: 1.3rem; }

    .about-container { grid-template-columns: 1fr; text-align: center; }
    .about-img { padding: 1rem; order: 1; }
    .about-text { order: 2; }
}

@media(max-width: 568px){
    .home { background-position: left; }
    .text h1 { width: 300px; }
    .text p { width: 300px; }
    .form-container { padding-top: 2rem; }
    .about-text p { font-size: 14px; }
    .copyright { flex-direction: column; }
    .newsletter .box { width: 284px; }
}

@media(max-width: 460px){
    header { padding: 6px 14px; }
    .logo img { width: 30px; }
    section { padding: 50px 6px; }
    .header-btn .sign-in { padding: 7px 10px; font-size: 14px; font-weight: 400; }
    .text h1 { font-size: 2rem; }
    .services-container { grid-template-columns: repeat(auto-fit, minmax(254px, auto)); }
}
                .navbar .nav-link {
                    color: #b42b22;
                    font-weight: 600;
                    font-size: 1.05rem;
                    padding: 8px 16px;
                    border-radius: 0.5rem;
                    transition: background 0.2s, color 0.2s;
                }
                .navbar .nav-link:hover, .navbar .nav-link.active {
                    background: #b42b22;
                    color: #fff;
                }
                @media (max-width: 900px) {
                    header > div { padding: 0 10px; }
                    .navbar { gap: 8px !important; }
                    .header-btn { margin-left: 8px !important; }
                }
                @media (max-width: 700px) {
                    .navbar { display: none !important; }
                    #menu-icon { display: block !important; }
                }
                 .redesigned-products {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
                gap: 2rem;
                margin-top: 2rem;
            }
            .product-card {
                background: rgba(255,255,255,0.75);
                border-radius: 1.5rem;
                box-shadow: 0 8px 32px rgba(180,43,34,0.10);
                border: 1.5px solid #e5e5e5;
                display: flex;
                flex-direction: column;
                transition: box-shadow 0.22s, border 0.22s, transform 0.18s;
                overflow: hidden;
                position: relative;
                padding: 18px 18px 16px 18px;
                backdrop-filter: blur(8px) saturate(120%);
                -webkit-backdrop-filter: blur(8px) saturate(120%);
            }
            .product-card:hover {
                box-shadow: 0 16px 48px rgba(180,43,34,0.16);
                border-color: #b42b22;
                transform: translateY(-6px) scale(1.03);
            }
            .product-image {
                position: relative;
                width: 100%;
                height: 180px;
                background: rgba(244,244,244,0.85);
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                border-radius: 1.1rem 1.1rem 0 0;
                margin-bottom: 1rem;
            }
            .product-image img {
                max-width: 90%;
                max-height: 90%;
                object-fit: contain;
                border-radius: 0.8rem 0.8rem 0 0;
                transition: transform 0.2s;
            }
            .product-card:hover .product-image img {
                transform: scale(1.05);
            }
            .product-content {
                padding: 0;
                display: flex;
                flex-direction: column;
                flex: 1;
            }
            .product-bottom {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 10px;
                width: 100%;
                margin-top: auto;
            }
            .product-title {
                font-size: 1.28rem;
                font-weight: 700;
                color: #b42b22;
                margin-bottom: 0.3rem;
                font-family: 'Rajdhani', sans-serif;
                letter-spacing: 0.2px;
            }
            .product-desc {
                font-size: 1.12rem;
                color: #444;
                opacity: 0.92;
                margin-bottom: 1.1rem;
                min-height: 48px;
                font-weight: 400;
            }
            /* Product Card Buttons - General */
.product-card .btn,
.product-card .btn.whatsapp-btn,
.product-card .btn.view-more-btn {
    border: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.22s, box-shadow 0.22s, color 0.18s, border 0.18s, transform 0.18s;
    box-shadow: 0 2px 8px rgba(180,43,34,0.10);
    min-width: 0;
    min-height: 0;
    line-height: 1.2;
}
/* Product Card Bottom Buttons - Compact Style */
.product-bottom .btn,
.product-bottom .btn.whatsapp-btn,
.product-bottom .btn.view-more-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
    border-radius: 0.7rem;
    gap: 8px;
}
/* View Button */
.product-card .btn.view-more-btn {
    background: #b42b22 !important;
    color: #fff !important;
}
.product-card .btn.view-more-btn:hover {
    background: #92231b !important;
}
/* Enquire/WhatsApp Button */
.product-card .btn.whatsapp-btn {
    background: #25d366 !important;
    color: #fff !important;
}
.product-card .btn.whatsapp-btn:hover {
    background: #128c7e !important;
}
            .product-year {
                position: absolute;
                top: 12px;
                right: 14px;
                background: rgba(255,255,255,0.18);
                color: #b42b22;
                font-size: 0.88rem;
                font-weight: 700;
                padding: 3px 10px;
                border-radius: 0.8rem;
                border: 1.5px solid #b42b22;
                box-shadow: 0 2px 8px rgba(180,43,34,0.10);
                letter-spacing: 1px;
                backdrop-filter: blur(6px) saturate(120%);
                -webkit-backdrop-filter: blur(6px) saturate(120%);
                transition: background 0.18s, color 0.18s, border 0.18s;
                z-index: 2;
            }
            .product-card:hover .product-year {
                background: #b42b22;
                color: #fff;
                border-color: #92231b;
            }
            .site-footer {
                background: linear-gradient(120deg, #fff 70%, #f7f7f7 100%);
                border-radius: 1.5rem 1.5rem 0 0;
                box-shadow: 0 -4px 24px rgba(180,43,34,0.07);
                margin-top: 2.5rem;
                padding: 2.5rem 0 1rem 0;
            }
            .footer-main {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
                gap: 2.2rem;
                max-width: 1200px;
                margin: 0 auto 1.2rem auto;
                padding: 0 1.5rem;
            }
            .footer-col {
                background: #fff;
                border-radius: 1rem;
                padding: 1.2rem 1rem 1.2rem 1rem;
                box-shadow: 0 2px 12px rgba(180,43,34,0.06);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-brand h2 {
                color: #b42b22;
                font-size: 1.3rem;
                font-weight: 700;
                margin: 0 0 0.2rem 0;
            }
            .footer-brand p {
                color: #444;
                font-size: 1rem;
                opacity: 0.85;
                margin-bottom: 0;
            }
            .footer-links h3,
            .footer-contact h3,
            .footer-newsletter h3 {
                color: #b42b22;
                font-size: 1.08rem;
                font-weight: 600;
                margin-bottom: 0.7rem;
            }
            .footer-links ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            .footer-links ul li {
                margin-bottom: 0.4rem;
            }
            .footer-links ul li a {
                color: #222;
                text-decoration: none;
                font-size: 0.99rem;
                transition: color 0.2s;
            }
            .footer-links ul li a:hover {
                color: #b42b22;
            }
            .footer-contact p {
                color: #444;
                font-size: 0.97rem;
                margin: 0 0 0.5rem 0;
                display: flex;
                align-items: center;
                gap: 7px;
                opacity: 0.92;
            }
            .footer-contact .btn.whatsapp-btn {
                background: #25d366 !important;
                color: #fff !important;
                border-radius: 0.5rem;
                padding: 7px 16px;
                font-size: 0.98rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 7px;
                box-shadow: 0 2px 8px rgba(37,211,102,0.08);
                border: none;
                transition: background 0.2s, box-shadow 0.2s;
            }
            .footer-contact .btn.whatsapp-btn:hover {
                background: #128c7e !important;
                box-shadow: 0 4px 16px rgba(37,211,102,0.13);
            }
            .newsletter-form {
                display: flex;
                gap: 0.5rem;
                width: 100%;
                margin-bottom: 1rem;
            }
            .newsletter-form input[type="email"] {
                flex: 1;
                padding: 9px 12px;
                border-radius: 6px;
                border: 1px solid #eee;
                font-size: 0.98rem;
                background: #f9f9f9;
                outline: none;
                transition: border 0.2s, box-shadow 0.2s;
                box-shadow: 0 1px 4px rgba(180,43,34,0.03);
            }
            .newsletter-form input[type="email"]:focus {
                border: 1.5px solid #b42b22;
                background: #fff;
                box-shadow: 0 2px 8px rgba(180,43,34,0.09);
            }
            .newsletter-form .btn {
                background: #b42b22 !important;
                color: #fff !important;
                border: none;
                border-radius: 6px;
                padding: 0.7rem 1.2rem;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: background 0.2s, box-shadow 0.2s;
            }
            .newsletter-form .btn:hover {
                background: #92231b !important;
            }
            .footer-social {
                display: flex;
                gap: 0.7rem;
                margin-top: 0.2rem;
            }
            .footer-social a {
                color: #b42b22;
                font-size: 1.25rem;
                background: #fff;
                border-radius: 50%;
                width: 2rem;
                height: 2rem;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 8px rgba(180,43,34,0.07);
                transition: color 0.2s, background 0.2s, box-shadow 0.2s;
            }
            .footer-social a:hover {
                color: #fff;
                background: #b42b22;
                box-shadow: 0 4px 16px rgba(180,43,34,0.13);
            }
            .footer-bottom {
                text-align: center;
                margin-top: 1.2rem;
                color: #444;
                font-size: 0.98rem;
                opacity: 0.85;
            }
            .footer-bottom span {
                color: #b42b22;
                font-weight: 600;
            }
            @media (max-width: 900px) {
                .footer-main {
                    grid-template-columns: 1fr 1fr;
                    gap: 1.2rem;
                }
            }
            @media (max-width: 700px) {
                .footer-main {
                    grid-template-columns: 1fr;
                    gap: 1rem;
                }
                .footer-col {
                    align-items: flex-start;
                }
            }