/* ==========================================================================
   1. BRAND CORE & GLOBAL DEFAULTS
   ========================================================================== */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #0B0C10;
    --bg-section: #111827;
    --bg-card: #171A22;
    --bg-card-hover: #1E2430;

    --text-main: #FFFFFF;
    --text-body: #D3D6DB;
    --text-muted: #B5BCC5;

    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --accent-soft: #60A5FA;

    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow-dark: rgba(0, 0, 0, 0.45);
}

body {
    text-align: center;
    background-color: var(--bg-main) !important;
    color: var(--text-main) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.top-title,
.navigation-items,
em,
strong {
    font-family: "Roboto", sans-serif;
    color: var(--text-main) !important;
}

h1,
.hero-main-title,
.display-4 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2,
.section-title,
.connect-text-header {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p,
.about-story-text,
.connect-text-subtext {
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-body) !important;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
}

a {
    color: var(--accent);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-soft);
    text-decoration: none;
}

ul {
    padding-inline-start: 0;
    list-style: none;
}

.fade-in {
    opacity: 1 !important;
}

.container {
    max-width: 1140px;
}

/* ==========================================================================
   2. NAVIGATION
   ========================================================================== */

.navigation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: linear-gradient(
        to bottom,
        rgba(11, 12, 16, 0.94) 0%,
        rgba(11, 12, 16, 0) 100%
    );
}

.navbar {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.navbar-brand.top-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main) !important;
    transition: color 0.3s ease;
}

.navbar-brand.top-title:hover {
    color: var(--accent) !important;
}

.nav-item {
    padding: 0 15px;
}

.navigation-items {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.navigation-items:hover,
.navigation-items.active {
    color: var(--accent-soft) !important;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 90vh;
    background-image: url('../images/front.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 12, 16, 0.48) 0%,
        rgba(11, 12, 16, 0.92) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-main-title {
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: #E5E7EB !important;
    max-width: 760px;
    margin: 0 auto 40px;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn-premium-primary,
.btn-premium-secondary {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 4px;
    margin: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-premium-primary {
    background-color: var(--accent);
    color: var(--text-main) !important;
    padding: 14px 32px;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.18);
}

.btn-premium-secondary {
    background: transparent;
    color: var(--text-main) !important;
    padding: 12px 32px;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-premium-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--text-main) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.32);
}

.btn-premium-secondary:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: var(--accent);
    color: var(--text-main) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   5. PAGE HEADERS
   ========================================================================== */

.page-header-block {
    padding: 150px 0 65px;
    background: linear-gradient(to bottom, var(--bg-main) 0%, var(--bg-section) 100%);
    border-bottom: 1px solid var(--border-soft);
}

.page-header-block h1 {
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.page-header-block .lead {
    max-width: 760px;
    margin: auto;
    color: var(--text-muted) !important;
    line-height: 1.7;
}

.tracking-tight {
    letter-spacing: -1px;
}

/* ==========================================================================
   6. GENERAL SECTIONS
   ========================================================================== */

.accomplishments-section,
.services-content-section,
.about-content-section,
.inquiry-content-section {
    background-color: var(--bg-main);
    padding: 80px 0 100px;
}

#testimonials {
    background-color: var(--bg-section);
    padding: 100px 0;
}

.section-title {
    font-weight: 900;
    margin-bottom: 20px;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 40px;
    color: var(--text-muted) !important;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================================================
   7. CARDS
   ========================================================================== */

.event-grid {
    gap: 15px;
}

.event-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 35px 28px;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 163, 255, 0.45);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.055);
}

.event-card h3 {
    color: var(--text-main) !important;
    font-weight: 900;
    margin-bottom: 18px;
}

.event-card p {
    color: #C7CDD4 !important;
    line-height: 1.7;
    margin-bottom: 0;
}

.event-card strong {
    color: var(--text-main) !important;
    font-family: "Roboto", sans-serif;
    font-size: 1.1rem;
}

/* ==========================================================================
   8. ABOUT PAGE
   ========================================================================== */

.about-subtitle {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 30px;
}

.about-story-text {
    max-width: 850px;
    margin: 0 auto 1.75rem auto;
    line-height: 1.9;
    color: var(--text-body) !important;
    text-align: center;
}

.text-primary-glow {
    color: var(--accent-soft) !important;
    text-shadow: 0 0 12px rgba(77, 163, 255, 0.35);
}

/* Legacy image classes retained in case old pages still reference them */
.about-us {
    text-align: center;
    margin: 40px auto;
    width: 50%;
}

.abt-us-pic,
.abt-us-pic-v2 {
    max-width: 380px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-soft);
}

/* ==========================================================================
   9. SERVICES / PRICING PAGE
   ========================================================================== */

.package-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.package-list li {
    color: var(--text-body);
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.region-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
}

.region-tag span {
    color: var(--accent-soft) !important;
    font-weight: 700;
    font-size: 0.95rem;
}

.table-dark {
    background-color: transparent !important;
}

.table-dark th,
.table-dark td {
    color: var(--text-body);
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.table-dark thead th {
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* ==========================================================================
   10. CONTACT / INQUIRY PAGE
   ========================================================================== */

.premium-inquiry-box {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.52);
}

.connect-text-header {
    font-weight: 900;
    letter-spacing: -0.5px;
}

.connect-text-subtext {
    line-height: 1.7;
    color: var(--text-body) !important;
}

.email-prompt-text {
    font-size: 1.05rem;
    color: #AEB4BE !important;
    line-height: 1.6;
}

/* ==========================================================================
   11. LEGACY IMAGE CARD SUPPORT
   ========================================================================== */

.image,
.imgs,
.premium-service-card {
    position: relative;
}

.image {
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 50px;
}

.premium-service-card {
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.42);
    transition: all 0.35s ease;
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    padding-top: 0 !important;
}

.premium-service-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(59, 130, 246, 0.42);
    box-shadow: 0 22px 45px rgba(59, 130, 246, 0.16);
}

.image__img,
.premium-service-card .image__img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: filter 0.4s ease;
}

.image__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    font-family: "Roboto";
    color: var(--text-main);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(11, 12, 16, 0.45);
    padding: 20px;
    transition: opacity 0.35s;
}

.image__overlay:hover {
    opacity: 1;
}

.image__overlay > * {
    transform: translateY(20px);
    transition: transform 0.35s;
}

.image__overlay:hover > * {
    transform: translateY(0);
}

.image__title {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-main) !important;
}

.image__description1,
.image__description2,
.image__description3,
.premium-service-card p[class^="image__description"] {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    line-height: 1.6;
    color: #E5E7EB !important;
    font-weight: 400;
    margin: 1.25rem;
}

.image-blur {
    filter: brightness(20%) blur(4px) !important;
}

/* ==========================================================================
   12. TESTIMONIALS
   ========================================================================== */

.testimonial-heading {
    margin-bottom: 50px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.carousel-item {
    padding: 0 10%;
}

.testimonial-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
    color: #E5E7EB !important;
    max-width: 900px;
    margin: 0 auto 25px;
}

.author-text {
    font-size: 1.1rem;
    color: var(--accent-soft) !important;
    font-weight: 700;
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */

.bottom-container {
    padding: 40px 0;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-soft);
}

/* ==========================================================================
   14. MOBILE OPTIMIZATION
   ========================================================================== */

@media (max-width: 767px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand.top-title {
        font-size: 1.35rem;
    }

    .navigation-items {
        font-size: 0.95rem;
    }

    .nav-item {
        padding: 5px 0;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-main-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 10px auto;
        font-size: 1rem;
        padding: 12px 20px;
    }

    .page-header-block {
        padding: 120px 0 45px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .accomplishments-section,
    .services-content-section,
    .about-content-section,
    .inquiry-content-section,
    #testimonials {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-story-text {
        font-size: 1rem !important;
        line-height: 1.8;
        padding: 0 12px;
    }

    .event-card {
        padding: 28px 22px;
    }

    .image,
    .about-us {
        width: 90%;
    }

    .image__img,
    .premium-service-card .image__img {
        height: 300px;
    }

    .image__title {
        font-size: 1.25rem !important;
        margin-bottom: 8px;
    }

    .premium-service-card p[class^="image__description"],
    .image__description1,
    .image__description2,
    .image__description3 {
        font-size: 0.85rem !important;
        line-height: 1.4;
        padding: 0 10px;
    }

    .testimonial-text {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    .author-text {
        font-size: 0.95rem;
    }

    .table-responsive {
        font-size: 0.9rem;
    }
}