@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* --- Modern Design System Variables --- */
:root {
    --bg-dark: #07080a;
    --bg-surface: #0f1115;
    --bg-card: #161920;
    --bg-card-hover: #1e222b;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(37, 99, 235, 0.35);
    
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.25);
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    
    --accent: #ffd700; /* Amber Sparks */
    --accent-glow: rgba(255, 215, 0, 0.2);
    --accent-gradient: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
    
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --text-muted: #64748b;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --container-width: 1200px;
    --bottom-nav-height: 70px;
}

/* --- Base & Scrollbar --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #22252d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 40%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

/* --- Glassmorphic Section --- */
.glass-panel {
    background: rgba(22, 25, 32, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Layout System --- */
.section-header {
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* --- Top Info Bar --- */
.top-bar {
    background-color: #030405;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
}

.top-info i {
    color: var(--primary);
}

.top-socials a {
    color: var(--text-muted);
    margin-left: 15px;
    font-size: 14px;
}

.top-socials a:hover {
    color: var(--text-white);
}

/* --- Glassmorphic Header & Nav --- */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(7, 8, 10, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar-wrapper.scrolled {
    background: rgba(7, 8, 10, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 8px 0;
    position: relative;
}

.nav-link-item:hover, .nav-link-item.active {
    color: var(--text-white);
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

/* Dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    border-radius: var(--radius-sm);
}

.nav-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    padding-left: 20px;
}

.btn-nav-action {
    background: var(--primary-gradient);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.btn-nav-action:hover {
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* Mobile Menu Trigger */
.menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
}

/* --- Modern Boxed Hero Section & Slider Widget --- */
.hero-section-wrapper {
    padding: 40px 0 60px 0;
}

.hero-widget-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: rgba(22, 25, 32, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    min-height: 550px;
    box-shadow: var(--shadow-lg);
}

.hero-widget-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 215, 0, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: inline-block;
    margin-bottom: 24px;
}

.hero-widget-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-widget-content h1 span {
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-widget-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-widget-content .hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-widget-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.hero-slides-wrapper {
    position: absolute;
    inset: 0;
}

.hero-widget-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.02);
}

.hero-widget-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Controls Widget overlay on the right slider bottom corner */
.hero-slider-widget-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: var(--shadow-md);
}

.hero-slider-counter {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-slider-counter .divider {
    color: var(--text-muted);
}

.hero-slider-counter .total {
    color: var(--text-gray);
}

.hero-slider-nav-arrows {
    display: flex;
    gap: 8px;
}

.hero-nav-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
}

.hero-nav-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* --- Features Grid (Service Cards) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link i {
    font-size: 10px;
    transition: var(--transition);
}

.feature-card:hover .card-link i {
    transform: translateX(4px);
    color: var(--primary);
}

/* --- Service Details Layout --- */
.details-section {
    position: relative;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.details-grid.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.details-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.details-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 8, 10, 0.3) 0%, transparent 100%);
}

.details-img-wrapper img {
    transition: var(--transition);
    width: 100%;
}

.details-img-wrapper:hover img {
    transform: scale(1.03);
}

.details-content h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.details-content p {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.98rem;
    color: var(--text-gray);
}

.feature-list i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

/* --- Dynamic Project Grid & Gallery --- */
.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-gray);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-thumb img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 8, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    backdrop-filter: blur(4px);
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-card:hover .gallery-icon {
    transform: scale(1);
}

.gallery-info {
    padding: 20px;
}

.gallery-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* --- Careers Page UI --- */
.careers-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-gray);
}

.job-tag.type-full-time {
    background: rgba(37, 99, 235, 0.08);
    color: #60a5fa;
    border-color: rgba(37, 99, 235, 0.15);
}

.job-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.job-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* --- Form Fields & Cards --- */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(7, 8, 10, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-main);
    color: var(--text-white);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Custom File Upload Styling */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.02);
}

.file-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.file-upload-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.file-upload-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- Contact & Location Cards --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.contact-card-details h4 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-card-details p, .contact-card-details a {
    font-size: 1.05rem;
    color: var(--text-white);
    font-weight: 500;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg); /* Dark Maps Theme */
}

/* --- Header Page Sub-banner --- */
.page-header {
    background: linear-gradient(180deg, #030405 0%, var(--bg-dark) 100%);
    padding: 80px 0 40px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* --- Footer --- */
.footer {
    background-color: #030405;
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-section img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-logo-section p {
    font-size: 0.92rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-gray);
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--text-white);
}

.footer ul li {
    list-style: none;
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.footer ul li a {
    color: var(--text-gray);
}

.footer ul li a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-gray);
    font-size: 0.92rem;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
}

.copyright-area {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.copyright-area a {
    color: var(--text-gray);
}

.copyright-area a:hover {
    color: var(--text-white);
}

/* --- Mobile Bottom Nav (React Style App Tabs) --- */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 999;
    align-items: center;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 20%;
    height: 100%;
}

.bottom-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
    color: var(--primary);
}

.bottom-nav-item.active i {
    text-shadow: 0 0 10px var(--primary-glow);
}

/* --- Side Drawer Navigation (Mobile Only) --- */
.side-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.side-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1002;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.side-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close {
    font-size: 24px;
    color: var(--text-white);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
}

.drawer-link:hover, .drawer-link.active {
    color: var(--text-white);
    padding-left: 6px;
}

.drawer-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    text-align: left;
}

.drawer-dropdown-items {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.drawer-dropdown-items.active {
    max-height: 250px;
    margin-top: 12px;
}

.drawer-dropdown-items a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.drawer-dropdown-items a:hover {
    color: var(--text-white);
}

/* --- Modal Gallery System --- */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(7, 8, 10, 0.95);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 32px;
    color: var(--text-white);
    cursor: pointer;
    z-index: 2001;
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-nav:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.modal-prev {
    left: -80px;
}

.modal-next {
    right: -80px;
}

.modal-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero-widget-container {
        grid-template-columns: 1fr;
        border-radius: 24px;
        min-height: auto;
    }
    .hero-widget-content {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }
    .hero-widget-content h1 {
        font-size: 3rem;
    }
    .hero-widget-content .hero-buttons {
        justify-content: center;
    }
    .hero-widget-slider {
        min-height: 400px;
    }
    .details-grid, .details-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .modal-prev {
        left: 20px;
    }
    .modal-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .section-padding {
        padding: 60px 0;
    }
    .hero-widget-content h1 {
        font-size: 2.2rem;
    }
    .hero-widget-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-widget-content .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-widget-content .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: var(--bottom-nav-height);
    }
    .careers-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- FAQ Accordion Layout --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--border-hover);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    outline: none;
    user-select: none;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Hide default arrow in Safari */
}

.faq-item summary::after {
    content: '\f078'; /* FontAwesome angle down icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-content {
    padding: 16px 24px 20px 24px;
    font-size: 0.96rem;
    color: var(--text-gray);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* --- Light Steel Gray Theme Section --- */
.section-light-steel {
    background-color: #f1f5f9; /* Slate 100 - clean light steel gray */
    color: #0f172a !important; /* Slate 900 - dark text */
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.section-light-steel h1,
.section-light-steel h2,
.section-light-steel h3 {
    color: #0f172a !important;
}

.section-light-steel p {
    color: #334155 !important; /* Slate 700 */
}

.section-light-steel .glass-panel {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
}

.section-light-steel .glass-panel h3 {
    color: #0f172a !important;
}

.section-light-steel .glass-panel p {
    color: #475569 !important; /* Slate 600 */
}

.section-light-steel .feature-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
}

.section-light-steel .feature-card:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1) !important;
}

.section-light-steel .feature-card h1,
.section-light-steel .feature-card h2,
.section-light-steel .feature-card h3 {
    color: #0f172a !important;
}

.section-light-steel .feature-card p {
    color: #334155 !important;
}

.section-light-steel .feature-card .feature-icon {
    background: rgba(37, 99, 235, 0.08) !important;
    color: #2563eb !important;
    border-color: rgba(37, 99, 235, 0.18) !important;
}

.section-light-steel .details-grid div p {
    color: #334155 !important;
}

.section-light-steel .faq-item {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.section-light-steel .faq-item summary {
    color: #0f172a !important;
}

.section-light-steel .faq-content {
    color: #334155 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Mobile-specific horizontal scrolling for gallery filter chips */
@media (max-width: 768px) {
    .gallery-filter-buttons {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding: 5px 20px 15px 20px !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none !important; /* Hide scrollbar IE/Edge */
        scrollbar-width: none !important; /* Hide scrollbar Firefox */
    }
    
    .gallery-filter-buttons::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar Chrome/Safari */
    }
    
    .filter-btn {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(15, 17, 21, 0.92);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .whatsapp-float-btn {
        bottom: calc(var(--bottom-nav-height, 70px) + 16px);
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

