/* General styling */
* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Graduate', cursive;
}
body {
    background: #f8f6f4;
    min-height: 100vh;
    color: #222;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgb(145, 6, 6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}         
.logo-link .img {
    width: 60px;
    height: 50px;
    border-radius: 100px;
}
.nav {
    display: flex;
}
.nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}
.nav-link:hover, .nav-link:focus {
    background: rgb(175, 41, 41);
    outline: none;
}


.hero {
    position: relative;
    width: 100%;
    height: 65vh;
    max-width: 100vw;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}
/* Remove fixed height from .carousel and .carousel-inner */
/* .carousel, .carousel-inner { height: 400px; } */

.hero-carousel-img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    object-position: center;
    display: block;
}
.carousel-inner {
    /* border: 2px solid green; */
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 2;
    pointer-events: none;
}
.carousel-caption {
    z-index: 3;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0 16px;
}
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0.97;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-subtitle {
    font-size: 1.3rem;
    margin: 12px 0 24px 0;
    opacity: 0.92;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.cta-btn {
    background: rgb(117, 0, 0);
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.cta-btn:hover, .cta-btn:focus {
    background: rgb(175, 41, 41);
    outline: none;
}

/* Products Section */
.products-section {
    padding: 60px 0 40px 0;
    background: rgba(150, 6, 6, 0.15);
}
.products-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
}
.products-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.product-card {
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px 18px;
    text-align: center;
    width: 260px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover, .product-card:focus-within {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}
.product-img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 16px;
}
.product-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.product-desc {
    font-size: 1rem;
    opacity: 0.8;
}
.see-more {
    display: block;
    margin: 32px auto 0 auto;
    text-align: center;
    color: #fff;
    background: rgb(117, 0, 0);
    padding: 10px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    width: fit-content;
}
.see-more:hover, .see-more:focus {
    background: rgb(175, 41, 41);
    outline: none;
}

/* Services Section */
.services-section {
    padding: 60px 0 40px 0;
    background: rgba(150, 6, 6, 0.10);
    text-align: center;
}
.services-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}
.services-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.services-list li {
    background: rgba(255,255,255,0.08);
    padding: 14px 28px;
    border-radius: 8px;
    min-width: 180px;
}

/* About Section */
.about-section {
    padding: 60px 0 40px 0;
    background: rgba(150, 6, 6, 0.13);
}
.about-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
}
.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-text {
    max-width: 500px;
    font-size: 1.1rem;
    opacity: 0.9;
}
.about-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Brands Section */
.brands-section {
    padding: 40px 0 30px 0;
    background: none;
    text-align: center;
}

.brand-logo {
    width: 100%;
    height: 50px;
    object-fit: contain;
    opacity: 0.85;
    background: #fff2;
    padding: 6px 12px;
}
.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    padding: 60px 0 40px 0;
    background: rgba(150, 6, 6, 0.10);
}
.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
}
.contact-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.contact-map-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 300px;
    gap: 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 18px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.contact-info-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 260px;
    flex: 1;
}
.contact-info {
    font-size: 1.1rem;
    min-width: 260px;
}
.contact-info a {
    color: #fff;
    text-decoration: underline;
}
.contact-info i {
    margin-right: 8px;
}
.contact-form {
    background: rgba(255,255,255,0.08);
    padding: 24px 18px;
    border-radius: 12px;
    min-width: 260px;
    width: 320px;
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    margin-top: 12px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
    font-size: 1rem;
    background: #fff;
    color: #222;
}
.contact-form button {
    background: rgb(117, 0, 0);
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover, .contact-form button:focus {
    background: rgb(175, 41, 41);
    outline: none;
}

/* Footer */
.footer {
    background: rgb(145, 6, 6);
    color: rgb(221, 143, 143);
    padding: 24px 0;
}
.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left {
    font-size: 1rem;
}
.footer-right {
    font-size: 2rem;
}
/* WhatsApp Icon - round and modern */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp {
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
    border: none;
    margin: 0;
}
.whatsapp:hover, .whatsapp:focus {
    background: #1ebe5d;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    outline: none;
    transform: scale(1.08);
}

/* Social icons */
.insta, .yt, .map, .tel {
    color: rgb(230, 169, 169);
    font-size: 1.3rem;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.2s;
}
.insta:hover, .yt:hover, .map:hover, .tel:hover,
.insta:focus, .yt:focus, .map:focus, .tel:focus {
    color: #fff;
    outline: none;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-flex, .footer-flex, .about-flex, .contact-flex, .products-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        flex-wrap: nowrap;
    }
    .nav-list {
        gap: 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .carousel-caption {
        padding: 0 4vw;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 8px;
    }
    .header-flex {
        height: auto;
        flex-direction: column;
        gap: 10px;
    }
    .nav-list {
        flex-direction: column;
        gap: 6px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .product-card, .contact-form {
        width: 95vw;
        min-width: unset;
    }
    .about-img {
        width: 60px;
        height: 60px;
    }
}

.header-logo {
    width: 90px;
    height: 75px;
    border-radius: 18px;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
    transition: box-shadow 0.2s, border 0.2s;
    object-fit: contain;
    display: block;
}
.header-logo:hover, .header-logo:focus {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border: 2px solid #b00;
}

.about-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 120px;
}
.about-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    border: 2px solid #fff;
}

.footer-map-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}
.footer-map-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #fff;
    cursor: pointer;
    transition: box-shadow 0.2s, border 0.2s;
}
.footer-map-img:hover, .footer-map-img:focus {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    border: 2px solid #b00;
}
.footer-address {
    font-size: 1rem;
    color: #fff;
    opacity: 0.95;
}
.footer-embed-map {
    margin-top: 10px;
    max-width: 260px;
}
.footer-embed-map iframe {
    width: 100%;
    height: 120px;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .about-img-wrapper {
        min-width: 80px;
        min-height: 80px;
    }
    .about-img {
        width: 70px;
        height: 70px;
    }
    .footer-map-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer-map-img {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 600px) {
    .header-logo {
        width: 65px;
        height: 55px;
        padding: 3px;
    }
    .about-img-wrapper {
        min-width: 50px;
        min-height: 50px;
    }
    .about-img {
        width: 40px;
        height: 40px;
    }
    .footer-map-img {
        width: 40px;
        height: 40px;
    }
    .footer-embed-map iframe {
        height: 80px;
    }
}

.section-divider {
    border: none;
    border-top: 1.5px solid rgba(145,6,6,0.13);
    margin: 48px auto 32px auto;
    width: 90%;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}
.hero, .products-section, .services-section, .about-section, .brands-section, .contact-section {
    animation: fadeInUp 0.9s cubic-bezier(.4,0,.2,1) 0.1s both;
}
.product-card {
    animation: fadeInUp 1.1s cubic-bezier(.4,0,.2,1) 0.2s both;
}

/* Professional spacing tweaks */
.products-section, .services-section, .about-section, .brands-section, .contact-section {
    margin-bottom: 0;
    padding-bottom: 32px;
}
.products-section h2, .services-section h2, .about-section h2, .contact-section h2 {
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.products-section, .services-section, .about-section, .brands-section, .contact-section {
    background: #fff;
    padding: 48px 24px 32px 24px;
}
.products-section h2, .services-section h2, .about-section h2, .contact-section h2 {
    color: rgb(145, 6, 6);
    background: linear-gradient(90deg, rgb(145, 6, 6) 60%, rgb(194, 123, 123) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-align: center;
}

.product-card, .contact-map-block, .contact-form {
    background: #f8f6f4;
    color: #222;
}
.product-card {
    border: 1.5px solid #f0eaea;
}

/* Contact Section Layout */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-info-form {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin-top: 24px;
}
.contact-info {
    text-align: center;
    margin-bottom: 18px;
    color: rgb(145, 6, 6);
    font-weight: bold;
    font-size: 1.1rem;
}
.contact-info p {
    margin: 0 0 8px 0;
}
.contact-map-block, .contact-form {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
    margin: 0 8px;
    padding: 18px 16px;
}
.contact-map-block {
    align-items: center;
    text-align: center;
}
.contact-form label {
    color: rgb(145, 6, 6);
    font-weight: bold;
}
.contact-form input, .contact-form textarea {
    background: #fff;
    color: #222;
    border: 1.5px solid #e0d6d6;
}
.contact-form button {
    background: rgb(145, 6, 6);
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .contact-map-block {
        max-width: 100vw;
        min-width: unset;
        width: 100%;
        margin-bottom: 12px;
    }
    .contact-info-form {
        min-width: unset;
        width: 100%;
    }
}
@media (max-width: 600px) {
    .contact-info-form {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .contact-map-block, .contact-form {
        width: 100%;
        margin-bottom: 18px;
        min-width: unset;
        max-width: unset;
        padding: 25px;
    }
    .find-us-label {
        margin-bottom: 8px;
        text-align: center;
    }
    .footer-address {
        white-space: normal;
        text-align: center;
        font-size: 1em;
        margin-bottom: 10px;
        word-break: break-word;
    }
}
.contact-info-tel {
    font-size: 1.15rem;
    color: rgb(145, 6, 6);
    font-weight: bold;
}

.qr-code {
    height: 150px;
}

.contact-info-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: rgb(145, 6, 6);
    font-weight: bold;
}
@media (max-width: 575.98px) {
    .contact-info-top {
        gap: 12px;
    }
}
.contact-info-top .fa {
    font-size: 1.3em;
    vertical-align: middle;
    margin-right: 6px;
}
.contact-info-top a {
    color: rgb(145, 6, 6);
    text-decoration: none;
    font-size: 1.25em;
    transition: color 0.2s, text-decoration 0.2s;
}
@media (max-width: 575.98px) {
    .contact-info-top a {
        font-size: 16px; /* override for mobile */
    }
}
.contact-info-top a:hover, .contact-info-top a:focus {
    color: #b00;
    text-decoration: underline;
}
.contact-phone {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
  
.find-us-label {
    font-size: 1.08em;
    color: #444;
    margin-bottom: 6px;
    font-weight: bold;
}
.footer-address {
    display: block;
    color: rgb(145, 6, 6);
    font-size: 1.08em;
    margin-bottom: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s, text-decoration 0.2s;
    word-break: break-word;
}
.footer-address:hover, .footer-address:focus {
    color: #b00;
    text-decoration: underline;
}
.footer-embed-map {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.footer-embed-map iframe {
    width: 100%;
    max-width: 320px;
    height: 160px;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .footer-embed-map iframe {
        max-width: 95vw;
        height: 120px;
    }
}

.carousel-item {
    position: relative;
}
.banner-red-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 2;
    pointer-events: none;
}
.carousel-control-prev,
.carousel-control-next {
    z-index: 999;
}
.carousel-caption {
    z-index: 3;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) brightness(2);
}
.carousel-indicators [data-bs-target] {
    background-color: #fff;
    border: 1px solid #fff;
    z-index: 999;
}
.carousel-indicators .active {
    background-color: #fff;
    border: 2px solid #fff;
}
.carousel-indicators {
    z-index: 999;
}
.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #fff;
    border: 1px solid #fff;
}
.carousel-dark .carousel-indicators .active {
    background-color: #fff;
    border: 2px solid #fff;
}
.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: none;
}

@media (max-width: 600px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
}

.sports-heading {
    font-family: 'Oswald', 'Barlow Condensed', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 2.2rem;
    position: relative;
    margin-bottom: 1.5rem;
    color: rgb(145, 6, 6);
    display: inline-block;
}
.section-accent {
    display: block;
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, rgb(145,6,6) 60%, rgb(194,123,123) 100%);
    border-radius: 3px;
    margin: 10px auto 0 auto;
    box-shadow: 0 2px 8px rgba(145,6,6,0.13);
}
.sports-card {
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 12px rgba(145,6,6,0.10), 0 1.5px 0 #fff inset;
    border: 1.5px solid #e0e0e0;
    background: #fff;
}
.sports-card:hover, .sports-card:focus-within {
    transform: translateY(-10px) scale(1.04) rotateZ(-1deg);
    box-shadow: 0 12px 32px rgba(145,6,6,0.18), 0 1.5px 0 #fff inset;
    z-index: 2;
}
.sports-btn {
    font-family: 'Oswald', 'Barlow Condensed', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, rgb(145,6,6) 60%, rgb(194,123,123) 100%);
    border: none;
    box-shadow: 0 2px 12px rgba(145,6,6,0.13);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    color: #fff;
}
.sports-btn:hover, .sports-btn:focus {
    background: linear-gradient(90deg, rgb(194,123,123) 60%, rgb(145,6,6) 100%);
    box-shadow: 0 8px 24px rgba(145,6,6,0.18);
    transform: scale(1.06) skewX(-3deg);
    color: #fff;
}
.sports-section {
    background: linear-gradient(105deg, #fff 80%, rgba(145,6,6,0.04) 100%);
    position: relative;
    padding-top: 48px;
    padding-bottom: 32px;
}
.hero-diagonal {
    display: block;
    pointer-events: none;
}
.hero-title {
    position: relative;
    overflow: hidden;
}
.hero-title .hero-shine {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.0) 100%);
    transform: skewX(-20deg) translateX(-100%);
    animation: shine-move 2.5s infinite linear;
    pointer-events: none;
}
@keyframes shine-move {
    0% { transform: skewX(-20deg) translateX(-100%); }
    60% { transform: skewX(-20deg) translateX(120%); }
    100% { transform: skewX(-20deg) translateX(120%); }
}

.accent-red { background: linear-gradient(90deg, #e53935 60%, #ffb3b3 100%) !important; }
.accent-blue { background: linear-gradient(90deg, #1e88e5 60%, #b3d1ff 100%) !important; }
.accent-green { background: linear-gradient(90deg, #43a047 60%, #b3ffb3 100%) !important; }
.accent-yellow { background: linear-gradient(90deg, #fbc02d 60%, #fff9b3 100%) !important; }
.accent-orange { background: linear-gradient(90deg, #fb8c00 60%, #ffe0b3 100%) !important; }

.products-red {
    background: linear-gradient(120deg, #fff 0%, #f3f3f3 100%) !important;
}
.services-blue {
    background: linear-gradient(120deg, #f7f7f7 0%, #e0e0e0 100%) !important;
}
.about-green {
    background: linear-gradient(120deg, #f3f3f3 0%, #e9e9e9 100%) !important;
}
.brands-yellow {
    background: linear-gradient(120deg, #f7f7f7 0%, #f0f0f0 100%) !important;
}
.contact-orange {
    background: linear-gradient(120deg, #f3f3f3 0%, #e0e0e0 100%) !important;
}

.sports-heading.text-center { text-align: center; display: block; width: 100%; }

.footer-wave {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    background: transparent;
    position: relative;
    z-index: 1;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
  }