/* ----------------------------------------------------------
:: Template Name: Karl - Fashion Ecommerce Template
:: Author: Colorlib
:: Author URL: https://colorlib.com
:: Description: Karl is smart & elegant fashion e-commerce Template. It's suitable for all e-commerce business platform. It's super responsive for all      Desktop/Mobile layout.
:: Version: 1.0
:: Created: 09 January 2018
:: Last Updated: 09 January 2018
---------------------------------------------------------- */

/* -------------------------------------------------
============ PLACE YOUR CUSTOM CSS HERE ============
------------------------------------------------- */

/* ===============================================
   CART DROPDOWN POPUP FIXES
=============================================== */

/* Ensure cart dropdown works as a popup */
.cart {
    position: relative;
}

.cart-list {
    z-index: 9999 !important;
    position: absolute !important;
    right: -44px !important;
    top: 50px !important;
    width: 280px !important;
    background-color: #f4f6f8 !important;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 !important;
    display: none !important;
    transition: all 0.3s ease !important;
}

/* Show cart dropdown when cart-data-open class is active */
.cart-data-open .cart-list {
    display: block !important;
    animation: slideDown 0.3s ease-out !important;
}

/* Cart dropdown animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure buttons are clickable and properly styled */
.cart-list li .btn-cart,
.cart-list li .btn-checkout {
    z-index: 10000 !important;
    position: relative;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    text-decoration: none;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    transition: all 0.3s ease;
    width: calc(50% - 10px);
    text-align: center;
}

/* Ensure buttons container displays inline */
.cart-list li.total {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cart-list li.total .pull-right {
    width: 100%;
    margin-bottom: 10px;
}

.cart-list li.total .btn-cart,
.cart-list li.total .btn-checkout {
    flex: 1;
    margin: 0 5px;
}

.cart-list li .btn-cart {
    background-color: #3a3a3a !important;
    color: white !important;
}

.cart-list li .btn-checkout {
    background-color: #ff084e !important;
    color: white !important;
}

.cart-list li .btn-cart:hover,
.cart-list li .btn-checkout:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Ensure cart dropdown doesn't close when clicking inside */
.cart-list {
    pointer-events: auto !important;
}

.cart-list * {
    pointer-events: auto !important;
}

/* Prevent default link behavior on cart icon */
#header-cart-btn {
    cursor: pointer;
}

#header-cart-btn:hover {
    text-decoration: none;
}

/* ===============================================
   PERFECT RESPONSIVE MENU SYSTEM
   =============================================== */

/* Base Menu Styles */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* Desktop Menu (992px and above) */
@media (min-width: 992px) {
    /* Hide hamburger button on desktop */
    .navbar-toggler {
        display: none !important;
    }
    
    /* Desktop Navigation */
    #karl-navbar {
        display: block !important;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    #karl-navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #karl-navbar .navbar-nav .nav-item {
        margin: 0 20px !important;
        padding: 0 !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link {
        display: block !important;
        padding: 15px 0 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #333 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        border: none !important;
        background: transparent !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link:hover,
    #karl-navbar .navbar-nav .nav-item .nav-link.active {
        color: #ff084e !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 0 !important;
        height: 2px !important;
        background-color: #ff084e !important;
        transition: width 0.3s ease !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link:hover::after,
    #karl-navbar .navbar-nav .nav-item .nav-link.active::after {
        width: 100% !important;
    }
}

/* Tablet Menu (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Hide hamburger button on tablet */
    .navbar-toggler {
        display: none !important;
    }
    
    /* Tablet Navigation */
    #karl-navbar {
        display: block !important;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    #karl-navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #karl-navbar .navbar-nav .nav-item {
        margin: 0 15px !important;
        padding: 0 !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link {
        display: block !important;
        padding: 12px 0 !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #333 !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        border: none !important;
        background: transparent !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link:hover,
    #karl-navbar .navbar-nav .nav-item .nav-link.active {
        color: #ff084e !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 0 !important;
        height: 2px !important;
        background-color: #ff084e !important;
        transition: width 0.3s ease !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link:hover::after,
    #karl-navbar .navbar-nav .nav-item .nav-link.active::after {
        width: 100% !important;
    }
}

/* Mobile Menu (767px and below) */
@media (max-width: 767px) {
    /* Mobile Hamburger Button */
    .navbar-toggler {
        display: block !important;
        background: transparent !important;
        border: none !important;
        padding: 8px !important;
        margin: 0 !important;
        width: auto !important;
        height: auto !important;
        box-shadow: none !important;
        transition: all 0.3s ease !important;
    }

    .navbar-toggler:hover {
        background: transparent !important;
    }

    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        display: block !important;
        width: 24px !important;
        height: 18px !important;
    }

    .navbar-toggler-icon i {
        display: block !important;
        font-size: 20px !important;
        color: #333 !important;
        transition: color 0.3s ease !important;
    }

    .navbar-toggler:hover .navbar-toggler-icon i {
        color: #ff084e !important;
    }
    
    /* Mobile Navigation Container */
    .navbar-collapse {
        position: relative !important;
    }
    
    /* Mobile Navigation - Fixed positioning */
    #karl-navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        z-index: 9999 !important;
        display: none !important;
        opacity: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    /* Mobile menu content */
    #karl-navbar .mobile-menu-content {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background-color: #ffffff !important;
        padding: 20px 15px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        border-radius: 0 0 12px 12px !important;
        border-top: 3px solid #ff084e !important;
        transform: translateY(-100%) !important;
        transition: transform 0.3s ease !important;
    }
    
    
    /* Show mobile menu when toggled */
    #karl-navbar.show {
        display: block !important;
        opacity: 1 !important;
    }
    
    #karl-navbar.show .mobile-menu-content {
        transform: translateY(0) !important;
    }
    
    #karl-navbar .navbar-nav {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #karl-navbar .navbar-nav .nav-item {
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    #karl-navbar .navbar-nav .nav-item:last-child {
        margin-bottom: 0 !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link {
        display: block !important;
        padding: 12px 15px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #333 !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        background-color: transparent !important;
        border: none !important;
    }
    
    #karl-navbar .navbar-nav .nav-item .nav-link:hover,
    #karl-navbar .navbar-nav .nav-item .nav-link.active {
        color: #ff084e !important;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Cart Dropdown */
@media (max-width: 768px) {
    .cart-list {
        right: 50% !important;
        transform: translateX(50%) !important;
        width: 260px !important;
        top: 45px !important;
        max-width: calc(100vw - 40px);
    }
    
    .cart-list li {
        padding: 15px 12px !important;
    }
    
    .cart-list li .btn-cart,
    .cart-list li .btn-checkout {
        width: calc(50% - 8px) !important;
        padding: 10px 12px !important;
        font-size: 11px !important;
        margin: 0 4px !important;
    }
    
    .cart-list li.total {
        padding: 15px 12px !important;
    }
    
    .cart-list li.total .pull-right {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    
    .cart-item-desc {
        padding-left: 50px !important;
    }
    
    .cart-list .image > img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .cart-item-desc > h6 {
        font-size: 12px !important;
    }
    
    .cart-item-desc > p {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .cart-list {
        right: 50% !important;
        transform: translateX(50%) !important;
        width: 240px !important;
        top: 40px !important;
        max-width: calc(100vw - 20px);
    }
    
    .cart-list li .btn-cart,
    .cart-list li .btn-checkout {
        width: calc(50% - 6px) !important;
        padding: 8px 10px !important;
        font-size: 10px !important;
        margin: 0 3px !important;
    }
    
    .cart-list li {
        padding: 12px 10px !important;
    }
    
    .cart-list li.total {
        padding: 12px 10px !important;
    }
}

/* ===============================================
   SIMPLE NAVIGATION HOVER EFFECTS
=============================================== */

/* Base navigation link styles */
.navbar-nav .nav-link {
    color: #3a3a3a !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 15px 20px !important;
}

/* Hover effect - just color change */
.navbar-nav .nav-link:hover {
    color: #e74c3c !important;
}

/* Active state */
.navbar-nav .nav-item.active .nav-link {
    color: #e74c3c !important;
}

/* ===============================================
   ABOUT PAGE STYLES - PROFESSIONAL & INTERACTIVE
=============================================== */

/* Hero Section */
.about-hero-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

.min-vh-50 {
    min-height: 60vh;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.brand-accent {
    color: #ff084e;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.brand-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff084e;
    transform: scaleX(0);
    animation: expandLine 1s ease-out 1.2s forwards;
}

.hero-subtitle {
    font-size: 16px;
    color: #ff084e;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-family: 'Open Sans', sans-serif;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.hero-image {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.6s forwards;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: #ff084e;
    z-index: -1;
    opacity: 0.1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff084e;
    opacity: 0;
    animation: expandLine 0.8s ease-out 0.8s forwards;
}

.section-subtitle {
    font-size: 14px;
    color: #ff084e;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.story-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.story-description {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.story-description:nth-child(2) {
    animation-delay: 1.1s;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.values-section .section-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.value-item {
    padding: 40px 30px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    text-align: center;
}

.value-item:nth-child(1) { animation-delay: 0.5s; }
.value-item:nth-child(2) { animation-delay: 0.7s; }
.value-item:nth-child(3) { animation-delay: 0.9s; }
.value-item:nth-child(4) { animation-delay: 1.1s; }

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff084e 0%, #ff084e 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.value-item:hover::before {
    opacity: 0.05;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: #ff084e;
    box-shadow: 0 15px 30px rgba(255, 8, 78, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #ff084e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: #ff084e;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item:hover .value-icon::before {
    transform: scale(1.2);
    opacity: 0.3;
}

.value-icon i {
    font-size: 24px;
    color: white;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover .value-icon i {
    transform: rotate(5deg) scale(1.1);
}

.value-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 15px;
    transition: color 0.4s ease;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.value-item:hover h4 {
    color: #ff084e;
}

.value-item p {
    color: #3a3a3a;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #3a3a3a;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    z-index: -1;
}

.cta-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.cta-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0;
    color: #ccc;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.btn-primary {
    background: #ff084e;
    border: 3px solid #ff084e;
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 170px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: transparent;
    color: #ff084e;
    border-color: #ff084e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 8, 78, 0.3);
}

.btn-outline {
    background: transparent;
    border: 3px solid white;
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 170px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: #3a3a3a;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        padding: 30px 20px;
    }
}

/* ===============================================
   FAQS PAGE STYLES - PROFESSIONAL & INTERACTIVE
=============================================== */

/* FAQs Hero Section */
.faqs-hero-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.faqs-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

.faqs-hero-section .hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.faqs-hero-section .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.faqs-hero-section .brand-accent {
    color: #ff084e;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.faqs-hero-section .brand-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff084e;
    transform: scaleX(0);
    animation: expandLine 1s ease-out 1.2s forwards;
}

.faqs-hero-section .hero-subtitle {
    font-size: 16px;
    color: #ff084e;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-family: 'Open Sans', sans-serif;
}

.faqs-hero-section .hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.faqs-hero-section .hero-image {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.6s forwards;
    position: relative;
}

.faqs-hero-section .hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: #ff084e;
    z-index: -1;
    opacity: 0.1;
}

.faqs-hero-section .hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.faqs-hero-section .hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Search Section */
.faqs-search-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    background: #fff;
    font-size: 16px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: #ff084e;
    box-shadow: 0 0 0 3px rgba(255, 8, 78, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff084e;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
}

.search-btn:hover {
    background: #e6003a;
    transform: translateY(-50%) translateY(-2px);
}

/* Categories Section */
.faqs-categories-section {
    padding: 80px 0;
    background: #fff;
}

.faqs-categories-section .section-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.faqs-categories-section .section-subtitle {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.category-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    cursor: pointer;
}

.category-item:nth-child(1) { animation-delay: 0.3s; }
.category-item:nth-child(2) { animation-delay: 0.5s; }
.category-item:nth-child(3) { animation-delay: 0.7s; }
.category-item:nth-child(4) { animation-delay: 0.9s; }
.category-item:nth-child(5) { animation-delay: 1.1s; }

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff084e 0%, #ff084e 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.category-item:hover::before,
.category-item.active::before {
    opacity: 0.05;
}

.category-item:hover,
.category-item.active {
    transform: translateY(-10px);
    border-color: #ff084e;
    box-shadow: 0 15px 30px rgba(255, 8, 78, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #ff084e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.category-item:hover .category-icon,
.category-item.active .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 24px;
    color: white;
    transition: transform 0.4s ease;
}

.category-item:hover .category-icon i,
.category-item.active .category-icon i {
    transform: rotate(5deg) scale(1.1);
}

.category-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 15px;
    transition: color 0.4s ease;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.category-item:hover h4,
.category-item.active h4 {
    color: #ff084e;
}

.category-item p {
    color: #3a3a3a;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* FAQ Accordion Section */
.faqs-accordion-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-category-header {
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff084e;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.faq-category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #3a3a3a;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

.faqs-accordion-section .card {
    border: 2px solid transparent;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.faqs-accordion-section .card:nth-child(1) { animation-delay: 0.3s; }
.faqs-accordion-section .card:nth-child(2) { animation-delay: 0.5s; }
.faqs-accordion-section .card:nth-child(3) { animation-delay: 0.7s; }
.faqs-accordion-section .card:nth-child(4) { animation-delay: 0.9s; }
.faqs-accordion-section .card:nth-child(5) { animation-delay: 1.1s; }

.faqs-accordion-section .card:hover {
    border-color: #ff084e;
    box-shadow: 0 10px 25px rgba(255, 8, 78, 0.1);
}

.faqs-accordion-section .card-header {
    background: #fff;
    border: none;
    padding: 0;
}

.faqs-accordion-section .btn-link {
    color: #3a3a3a;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
}

.faqs-accordion-section .btn-link:hover {
    color: #ff084e;
    text-decoration: none;
}

.faqs-accordion-section .btn-link:focus {
    box-shadow: none;
}

.faqs-accordion-section .card-body {
    padding: 0 20px 20px;
    color: #3a3a3a;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.faqs-accordion-section .card-body ul,
.faqs-accordion-section .card-body ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faqs-accordion-section .card-body li {
    margin-bottom: 8px;
}

/* FAQs CTA Section */
.faqs-cta-section {
    padding: 100px 0;
    background: #3a3a3a;
    color: white;
    position: relative;
    overflow: hidden;
}

.faqs-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    z-index: -1;
}

.faqs-cta-section .cta-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    text-align: center;
}

.faqs-cta-section .cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.faqs-cta-section .cta-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0;
    color: #ccc;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.faqs-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* ===============================================
   NEWS PAGE STYLES - PROFESSIONAL & INTERACTIVE
=============================================== */

/* News Hero Section */
.news-hero-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.news-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

.news-hero-section .hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.news-hero-section .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.news-hero-section .brand-accent {
    color: #ff084e;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.news-hero-section .brand-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff084e;
    transform: scaleX(0);
    animation: expandLine 1s ease-out 1.2s forwards;
}

.news-hero-section .hero-subtitle {
    font-size: 16px;
    color: #ff084e;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-family: 'Open Sans', sans-serif;
}

.news-hero-section .hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.news-hero-section .hero-image {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.6s forwards;
    position: relative;
}

.news-hero-section .hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: #ff084e;
    z-index: -1;
    opacity: 0.1;
}

.news-hero-section .hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.news-hero-section .hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Article Section */
.featured-article-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-article {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff084e;
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.featured-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.article-meta .category {
    color: #ff084e;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
}

.article-meta .date {
    color: #6c757d;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    font-family: 'Open Sans', sans-serif;
}

.article-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

.article-stats {
    display: flex;
    gap: 20px;
}

.article-stats span {
    color: #6c757d;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.article-stats i {
    margin-right: 5px;
    color: #ff084e;
}

/* Categories Filter */
.news-categories-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #3a3a3a;
    padding: 12px 24px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff084e;
    border-color: #ff084e;
    color: white;
    transform: translateY(-2px);
}

/* News Grid Section */
.news-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-card {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.news-card:nth-child(1) { animation-delay: 0.3s; }
.news-card:nth-child(2) { animation-delay: 0.5s; }
.news-card:nth-child(3) { animation-delay: 0.7s; }
.news-card:nth-child(4) { animation-delay: 0.9s; }
.news-card:nth-child(5) { animation-delay: 1.1s; }
.news-card:nth-child(6) { animation-delay: 1.3s; }

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 8, 78, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .card-overlay {
    opacity: 1;
}

.read-more-btn {
    width: 60px;
    height: 60px;
    background: white;
    color: #ff084e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s ease;
}

.read-more-btn:hover {
    transform: scale(1.1);
    color: white;
    background: #ff084e;
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Open Sans', sans-serif;
}

.card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #ff084e;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.4s ease;
    font-family: 'Open Sans', sans-serif;
}

.read-more:hover {
    color: #e6003a;
    text-decoration: none;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: #3a3a3a;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    z-index: -1;
}

.newsletter-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0;
    color: #ccc;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.newsletter-form {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.newsletter-form .form-group {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    background: #fff;
    font-size: 16px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: #ff084e;
    box-shadow: 0 0 0 3px rgba(255, 8, 78, 0.1);
}

.newsletter-form .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff084e;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form .btn:hover {
    background: #e6003a;
    transform: translateY(-50%) translateY(-2px);
}

/* Responsive Design for FAQs and News */
@media (max-width: 768px) {
    .faqs-hero-section .hero-title,
    .news-hero-section .hero-title {
        font-size: 36px;
    }
    
    .faqs-cta-section .cta-title,
    .newsletter-title {
        font-size: 28px;
    }
    
    .featured-content {
        padding: 30px 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .categories-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        position: static;
        transform: none;
        margin-top: 15px;
        width: 100%;
    }
}

/* ===============================================
   KEYFRAME ANIMATIONS
=============================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================================
   CONTACT PAGE STYLES - PROFESSIONAL & INTERACTIVE
=============================================== */

/* Contact Hero Section */
.contact-hero-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}

.contact-hero-section .hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.contact-hero-section .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    font-family: 'Open Sans', sans-serif;
}

.contact-hero-section .brand-accent {
    color: #ff084e;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.contact-hero-section .brand-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff084e;
    transform: scaleX(0);
    animation: expandLine 1s ease-out 1.2s forwards;
}

.contact-hero-section .hero-subtitle {
    font-size: 16px;
    color: #ff084e;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    font-family: 'Open Sans', sans-serif;
}

.contact-hero-section .hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.contact-hero-section .hero-image {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.6s forwards;
    position: relative;
}

.contact-hero-section .hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: #ff084e;
    z-index: -1;
    opacity: 0.1;
}

.contact-hero-section .hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-hero-section .hero-image:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-info-item:nth-child(1) { animation-delay: 0.3s; }
.contact-info-item:nth-child(2) { animation-delay: 0.5s; }
.contact-info-item:nth-child(3) { animation-delay: 0.7s; }

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff084e 0%, #ff084e 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.contact-info-item:hover::before {
    opacity: 0.05;
}

.contact-info-item:hover {
    transform: translateY(-10px);
    border-color: #ff084e;
    box-shadow: 0 15px 30px rgba(255, 8, 78, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #ff084e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: #ff084e;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info-item:hover .contact-icon::before {
    transform: scale(1.2);
    opacity: 0.3;
}

.contact-icon i {
    font-size: 24px;
    color: white;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-info-item:hover .contact-icon i {
    transform: rotate(5deg) scale(1.1);
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 15px;
    transition: color 0.4s ease;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.contact-info-item:hover h4 {
    color: #ff084e;
}

.contact-info-item p {
    color: #3a3a3a;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #fff;
}

.contact-form-section .section-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.contact-form-section .section-subtitle {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border: 2px solid transparent;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff084e 0%, #ff084e 100%);
    opacity: 0.02;
    z-index: -1;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #3a3a3a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    background: #fff;
    font-size: 14px;
    transition: all 0.4s ease;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.form-control:focus {
    outline: none;
    border-color: #ff084e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 8, 78, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #6c757d;
    font-style: normal;
}

.form-check {
    margin-top: 20px;
}

.form-check-input {
    margin-right: 10px;
}

.form-check-label {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-wrapper {
    height: 400px;
    position: relative;
    background: #3a3a3a;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
}

.map-content {
    text-align: center;
    color: white;
}

.map-content i {
    font-size: 48px;
    color: #ff084e;
    margin-bottom: 20px;
}

.map-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    color: white;
}

.map-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: white;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-faq-section .section-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.contact-faq-section .section-subtitle {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.contact-faq-section .faq-accordion {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.contact-faq-section .card {
    border: 2px solid transparent;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.4s ease;
}

.contact-faq-section .card:hover {
    border-color: #ff084e;
    box-shadow: 0 10px 25px rgba(255, 8, 78, 0.1);
}

.contact-faq-section .card-header {
    background: #fff;
    border: none;
    padding: 0;
}

.contact-faq-section .btn-link {
    color: #3a3a3a;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
}

.contact-faq-section .btn-link:hover {
    color: #ff084e;
    text-decoration: none;
}

.contact-faq-section .btn-link:focus {
    box-shadow: none;
}

.contact-faq-section .card-body {
    padding: 0 20px 20px;
    color: #3a3a3a;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-item {
        padding: 2rem 1.5rem;
    }
    
    .contact-hero-section .hero-image img {
        height: 300px;
    }
    
    .map-wrapper {
        height: 300px;
    }
}