/* ============================================
   PLS CONSULTANT — Premium Design System
   ============================================ */

:root {
    --primary-navy: #071C3C;
    --luxury-gold: #D4A437;
    --gold-light: #e8c76b;
    --dark-bg: #021224;
    --soft-white: #F8F9FB;
    --text-dark: #1A1A1A;
    --muted-gray: #6B7280;
    --white: #ffffff;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
}

h4 {
    color: white;
}

a {
    transition: var(--transition-smooth);
}

.text-gold {
    color: var(--luxury-gold) !important;
}

.bg-navy {
    background: var(--primary-navy) !important;
}

/* ---- Navbar ---- */
.navbar {
    padding: 18px 0;
    transition: var(--transition-smooth);
    background: transparent;
    z-index: 1050;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: 1px;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-navy) !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 12px;
    position: relative;
    padding: 8px 0 !important;
}

.navbar.scrolled .nav-link {
    color: var(--primary-navy) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--luxury-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Active link gold text */
.navbar.scrolled .nav-link.active {
    color: var(--luxury-gold) !important;
}

.navbar:not(.scrolled) .nav-link.active {
    color: var(--luxury-gold) !important;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

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

.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(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .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(7,28,60,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--luxury-gold), var(--gold-light));
    color: var(--white);
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--luxury-gold);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 164, 55, 0.3);
}

.btn-gold:hover {
    background: transparent;
    color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 164, 55, 0.25);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
}

/* ---- Hero ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 18, 36, 0.92) 0%, rgba(7, 28, 60, 0.75) 60%, rgba(7, 28, 60, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(212, 164, 55, 0.15);
    border: 1px solid rgba(212, 164, 55, 0.5);
    border-radius: 50px;
    color: var(--luxury-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    margin-bottom: 25px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 580px;
    margin-bottom: 40px;
    opacity: 0.85;
    line-height: 1.8;
}

/* ---- Stats ---- */
.stats-section {
    padding: 50px 0;
    background: var(--white);
    margin-top: -70px;
    position: relative;
    z-index: 3;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--luxury-gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item+.stat-item {
    border-left: 1px solid #eee;
}

/* ---- Sections ---- */
.section-padding {
    padding: 100px 0;
}

.section-label {
    color: var(--luxury-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--muted-gray);
    max-width: 650px;
    margin: 0 auto 50px;
}

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--luxury-gold);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(212, 164, 55, 0.1);
    color: var(--luxury-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--luxury-gold);
    color: var(--white);
}

/* ---- Dark Section ---- */
.dark-section {
    background: var(--primary-navy);
    color: var(--white);
}

.dark-section .section-title {
    color: var(--white);
}

/* ---- Why Choose Us ---- */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    background: rgba(212, 164, 55, 0.05);
}

.why-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(212, 164, 55, 0.1);
    color: var(--luxury-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ---- Industry Cards ---- */
.industry-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 18, 36, 0.9) 0%, rgba(7, 28, 60, 0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-img {
    transform: scale(1.08);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(2, 18, 36, 0.95) 0%, rgba(212, 164, 55, 0.2) 100%);
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 164, 55, 0.2);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: var(--luxury-gold);
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-navy);
}

.testimonial-position {
    font-size: 0.85rem;
    color: var(--muted-gray);
}

/* ---- CTA Block ---- */
.cta-block {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-bg) 100%);
    padding: 80px 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 164, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* ---- Page Header ---- */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-bg) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
}

/* ---- Forms ---- */
.form-control,
.form-select {
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.08);
}

/* ---- Contact Cards ---- */
.contact-info-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(212, 164, 55, 0.1);
    color: var(--luxury-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

/* ---- Booking Card ---- */
.booking-card {
    margin-top: -50px;
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

/* ---- Service Detail Cards ---- */
.service-detail-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    transition: var(--transition-smooth);
    background: var(--white);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

/* ---- Vision Cards ---- */
.vision-card {
    background: var(--soft-white);
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.vision-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--luxury-gold);
}

/* ---- Map ---- */
.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ---- Footer ---- */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer h5 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--luxury-gold);
    padding-left: 8px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .stats-section {
        margin-top: -40px;
        border-radius: 16px;
    }

    .stat-item+.stat-item {
        border-left: none;
    }

    .cta-block {
        padding: 50px 30px;
    }

    .booking-card {
        padding: 30px;
        margin-top: -30px;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-collapse .nav-link {
        color: var(--primary-navy) !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .industry-card {
        height: 280px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .page-header {
        padding: 130px 0 60px;
    }
}

@media (max-width: 575px) {
    .stat-number {
        font-size: 2rem;
    }

    .cta-block {
        padding: 40px 20px;
        border-radius: 16px;
    }
}

/* ---- Scroll To Top ---- */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--luxury-gold);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(212, 164, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 999;
    text-decoration: none;
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--primary-navy);
    box-shadow: 0 6px 25px rgba(7, 28, 60, 0.3);
    transform: translateY(-3px);
}

/* ---- Alert Styles ---- */
.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: none;
    border-left: 4px solid #22c55e;
    border-radius: 10px;
    padding: 16px 20px;
}

/* ---- Page breadcrumb style ---- */
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--luxury-gold);
}

.breadcrumb-item.active {
    color: var(--luxury-gold);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Form labels ---- */
.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

/* ---- Image hover ---- */
.img-fluid {
    transition: var(--transition-smooth);
}

/* ---- Service Detail Card ---- */
.service-detail-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-detail-card:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.service-detail-card .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 164, 55, 0.1);
    color: var(--luxury-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ---- Contact Page Specifics ---- */
.form-control:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 4px rgba(212, 164, 55, 0.1);
}

.btn-gold {
    background: var(--luxury-gold);
    color: var(--white);
    border: none;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 164, 55, 0.3);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}