/* ===========================
   DEZLEE LLC - MODERN STYLES
   Built with Bootstrap 5
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFC107;
    --primary-dark: #001F3F;
    --secondary-blue: #0066CC;
    --light-blue: #E8F4F8;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 31, 63, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 31, 63, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===========================
   TOP BAR
   =========================== */

.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003366 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    margin-right: 25px;
    transition: var(--transition);
}

.top-bar-link:hover {
    color: var(--primary-gold);
}

.top-bar-link i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.top-bar-right .badge {
    font-size: 13px;
    padding: 6px 12px;
}

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

/* Removed mega menu - using simple navigation */

/* Regular Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-blue);
    color: var(--primary-dark);
}

/* ===========================
   HERO SLIDER
   =========================== */

.hero-slider {
    position: relative;
    margin-top: 0;
}

.carousel {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-caption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 31, 63, 0.85) 0%, rgba(0, 31, 63, 0.6) 50%, rgba(0, 31, 63, 0.4) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
}

.carousel-caption h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.carousel-caption .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--primary-gold);
    opacity: 1;
    transform: scale(1.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 193, 7, 0.8);
    border-radius: 50%;
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary-gold);
    transform: scale(1.1);
}

/* ===========================
   STATISTICS SECTION
   =========================== */

.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003366 100%);
    color: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-card {
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
    color: var(--primary-gold);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===========================
   SECTIONS
   =========================== */

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 50px;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.service-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(0, 31, 63, 0.2);
    border-top-color: var(--primary-gold);
}

.service-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
}

/* ===========================
   WHY CHOOSE US SECTION
   =========================== */

.why-choose-us {
    padding: 100px 0;
    background-color: var(--white);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-content h5 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-feature {
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-feature i {
    font-size: 2rem;
    margin-right: 10px;
}

.about-feature strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-top: 8px;
    margin-bottom: 5px;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 31, 63, 0.92), rgba(0, 31, 63, 0.88)), url('../images/contact_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    background-color: rgba(255, 193, 7, 0.15);
    transform: translateX(10px);
    border-color: var(--primary-gold);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--primary-gold);
    font-weight: 600;
}

.info-card p {
    opacity: 0.95;
    margin: 0;
}

.info-card a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--primary-gold);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-control {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
    color: var(--white);
}

.contact-form select.form-control option {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ffb300 0%, var(--primary-gold) 100%);
    color: var(--primary-dark);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 14px 40px;
    font-size: 18px;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: linear-gradient(135deg, #001428 0%, #001F3F 100%);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer h3,
.footer h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.footer p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    opacity: 0.8;
}

/* ===========================
   SCROLL TO TOP BUTTON
   =========================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffb300 100%);
    color: var(--primary-dark);
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    transition: var(--transition);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.5);
}

/* ===========================
   ANIMATIONS
   =========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .mega-dropdown .mega-menu {
        width: 90vw;
    }

    .carousel {
        height: 70vh;
        min-height: 500px;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .carousel-caption .lead {
        font-size: 1.25rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .top-bar .row {
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        margin-bottom: 5px;
    }

    .top-bar-link {
        margin-right: 15px;
        font-size: 13px;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .mega-dropdown .mega-menu {
        width: 100%;
        padding: 15px;
    }

    .mega-menu .row {
        flex-direction: column;
    }

    .carousel {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-caption h1 {
        font-size: 1.75rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 16px;
    }

    .carousel-caption .btn {
        margin-bottom: 10px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services,
    .about,
    .why-choose-us,
    .contact {
        padding: 60px 0;
    }

    .service-img-wrapper {
        height: 180px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer {
        padding: 60px 0 30px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .carousel {
        height: 50vh;
        min-height: 350px;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption .lead {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }

    .carousel-caption .btn-lg {
        padding: 10px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 25px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .carousel {
        height: 100vh;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .scroll-to-top,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
}