/* ============================================
   Fashion Wear Int - Enhanced Custom Styles
   Modern, Beautiful, and Dynamic Design
   ============================================ */

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 92px;
    /* Smooth spacing for fixed navbar */
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
}

/* Smooth Page Transitions */
.page-transition {
    animation: fadeInPage 0.6s ease-in-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Navbar Styles ========== */
.navbar-light .navbar-nav .nav-link {
    color: #333333 !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(90deg, #c0392b, #e74c3c);
    transform: translateY(-2px);
}

/* Dropdown Menus with Modern Effects */
.dropdown-menu {
    background-color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: #212529 !important;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%) !important;
    color: #ffffff !important;
    transform: translateX(5px);
}

/* Mobile Toggler */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    transform: scale(1.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-collapse {
    visibility: visible !important;
}

/* ========== Color System ========== */
.text-primary-custom {
    color: #c0392b !important;
}

.text-secondary-custom {
    color: #27ae60 !important;
}

.bg-primary-custom {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%) !important;
}

.bg-secondary-custom {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%) !important;
}

/* ========== Content Sections ========== */
section {
    position: relative;
    overflow: hidden;
}

/* Enhanced Content Cards */
.bg-white {
    transition: all 0.4s ease;
}

.bg-white:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* ========== Typography Enhancements ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
}

h2 span {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ========== Image Effects ========== */
.wprt-image-video img,
img {
    transition: all 0.5s ease;
    border-radius: 12px;
}

.wprt-image-video:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* ========== Button Styles ========== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========== Gallery & Photo Effects ========== */
.project-single {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.project-single img {
    transition: all 0.6s ease;
}

.project-single:hover img {
    transform: scale(1.15);
    filter: brightness(0.8);
}

.button-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.project-single:hover .button-effect {
    opacity: 1;
}

.button-effect .btn {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
}

/* ========== List Styles (Content Areas Only) ========== */
.pftext ul,
.pftext ol,
.who-1 ul {
    list-style: none;
    padding-left: 0;
}

.pftext ul li,
.who-1 ul li {
    position: relative;
    padding-left: 25px !important;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.pftext ul li::before,
.who-1 ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pftext ul li:hover,
.who-1 ul li:hover {
    transform: translateX(5px);
    color: #c0392b;
}

.pftext ul li:hover::before,
.who-1 ul li:hover::before {
    transform: translateX(5px);
}

/* Ensure Nav Lists don't have the arrow */
.navbar-nav li::before,
.dropdown-menu li::before,
.footer li::before {
    display: none !important;
}

.navbar-nav li,
.dropdown-menu li {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

/* ========== Global Responsiveness ========== */
img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
}

@media (max-width: 768px) {
    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .display-4 {
        font-size: 2.5rem !important;
    }

    .text-4xl {
        font-size: 1.75rem !important;
    }

    .p-10 {
        padding: 1.5rem !important;
    }

    .who-1 {
        margin-bottom: 2rem;
    }

    .navbar-brand img {
        height: 40px !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .pftext {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .call-info {
        padding: 1.5rem !important;
    }
}

/* ========== Contact Info Styles ========== */
.call-info {
    position: relative;
    background: url('../../images/bg/bg-testimonials.jpg') no-repeat center center;
    background-size: cover;
    padding: 3rem !important;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    z-index: 1;
    overflow: hidden;
}

.call-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.9) 0%, rgba(39, 174, 96, 0.8) 100%);
    z-index: -1;
}

.call-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(192, 57, 43, 0.2);
}

.call-info h3 {
    color: white !important;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.call-info ul {
    padding-left: 0;
}

.call-info ul li {
    padding: 1.25rem !important;
    margin-bottom: 1rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
}

.call-info ul li::before {
    display: none !important;
}

.call-info ul li .info {
    display: flex;
    align-items: center;
    width: 100%;
}

.call-info ul li .in-p,
.call-info ul li .in-p.ti {
    color: white !important;
    margin-bottom: 0 !important;
    font-weight: 500;
}

.call-info ul li:hover {
    background: white !important;
    transform: translateX(15px) scale(1.02) !important;
}

.call-info ul li:hover .in-p,
.call-info ul li:hover .in-p.ti {
    color: #c0392b !important;
}

.call-info i {
    color: white !important;
    font-size: 1.5rem !important;
    margin-right: 1.25rem !important;
    width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.call-info ul li:hover i {
    color: #c0392b !important;
    transform: scale(1.2);
}

/* ========== Text Content Styles ========== */
.pftext {
    line-height: 1.8 !important;
    color: #555;
    font-size: 17px !important;
}

.pftext p {
    margin-bottom: 1.5rem;
    line-height: 1.8 !important;
    transition: all 0.3s ease;
}

.pftext p:hover {
    color: #333;
    transform: translateX(3px);
}

.pftext strong {
    color: #c0392b;
    font-weight: 700;
}

/* ========== Breadcrumb Styles ========== */
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== Page Header Effects ========== */
.py-16 {
    position: relative;
    overflow: hidden;
}

.py-16::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ========== Scroll Animations Safe-guard ========== */
[data-aos] {
    pointer-events: auto !important;
}

/* Ensure elements are visible even if JS fails (graceful degradation) */
.js-loading [data-aos] {
    opacity: 0;
}

/* Standard AOS fix for potential clipping */
html,
body {
    overflow-x: hidden;
}

/* ========== Responsive Enhancements ========== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    .pftext {
        font-size: 14px !important;
    }
}

/* ========== Loading Animation ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease 1s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========== Utility Classes ========== */
.shadow-premium {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ========== Map Styles ========== */
iframe {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

iframe:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
}