/* =========================================================
   VM Infra Projects - Main Stylesheet
   Color Scheme: Navy Blue (#0a2342), Orange (#f26522), White (#ffffff), Light Gray (#f8f9fa)
   ========================================================= */

:root {
    --primary: #0a2342;
    --secondary: #f26522;
    --accent: #1a73e8;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --text: #444;
    --text-light: #777;
    --white: #ffffff;
    --border: #e0e0e0;
    --gradient: linear-gradient(135deg, #0a2342 0%, #1a4a7a 100%);
    --gradient-orange: linear-gradient(135deg, #f26522 0%, #e84d0e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--secondary);
}

/* ---- Buttons ---- */
.btn-primary-vm {
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.35);
}

.btn-primary-vm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.45);
    color: var(--white);
}

.btn-outline-vm {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-vm:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-dark-vm {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-dark-vm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 35, 66, 0.4);
    color: var(--white);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
    background: var(--primary);
    padding: 0.5rem 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover { color: var(--secondary); }

.top-bar .divider {
    margin: 0 0.75rem;
    opacity: 0.4;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-vm {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-vm.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-vm .navbar-brand img {
    height: 55px;
    width: auto;
}

.navbar-vm .nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1.5rem 1rem !important;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s;
}

.navbar-vm .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.navbar-vm .nav-link:hover,
.navbar-vm .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-vm .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 0.75rem 0;
    min-width: 220px;
}

.navbar-vm .dropdown-item {
    padding: 0.6rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
    transition: all 0.2s;
}

.navbar-vm .dropdown-item:hover {
    background: var(--light);
    color: var(--secondary);
    padding-left: 2rem;
}

.navbar-vm .btn-enquire {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-size: 0.88rem !important;
}

.navbar-vm .btn-enquire:hover {
    background: #e84d0e;
    color: var(--white) !important;
}

.navbar-vm .btn-enquire::after { display: none; }

/* =========================================================
   HERO SLIDER
   ========================================================= */
#heroCarousel {
    position: relative;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,35,66,0.88) 0%, rgba(10,35,66,0.5) 60%, rgba(10,35,66,0.2) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 680px;
}

.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--secondary);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: background 0.3s;
}

.carousel-control-prev { left: 2rem; }
.carousel-control-next { right: 2rem; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary);
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
    border: none;
}

.carousel-indicators button.active {
    background: var(--secondary);
    width: 50px;
}

/* =========================================================
   FEATURE STRIP
   ========================================================= */
.feature-strip {
    background: var(--gradient);
    padding: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.feature-item:hover {
    background: rgba(255,255,255,0.08);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: var(--white);
}

.feature-text h6 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.feature-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    margin: 0;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-img-wrapper {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(242,101,34,0.4);
}

.about-exp-badge .num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-exp-badge .lbl {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 0.2rem;
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-check-list li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
}

.about-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
    padding: 6rem 0;
    background: var(--light);
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(242,101,34,0.4);
}

.service-card-body {
    padding: 2rem 1.5rem 1.5rem;
}

.service-card-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.service-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.service-card-link {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-card-link:hover {
    gap: 0.8rem;
    color: var(--secondary);
}

/* =========================================================
   STATS SECTION
   ========================================================= */
.stats-section {
    background: var(--gradient);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-box:last-child::after { display: none; }

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =========================================================
   DIRECTOR SECTION
   ========================================================= */
.director-section {
    padding: 6rem 0;
    background: var(--white);
}

.director-img-wrapper {
    position: relative;
}

.director-img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.director-quote-box {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    position: relative;
}

.director-quote-box::before {
    content: '"';
    font-size: 6rem;
    color: rgba(255,255,255,0.1);
    position: absolute;
    top: -1rem;
    left: 1rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.director-quote-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin: 0;
}

.director-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.director-title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
    padding: 6rem 0;
    background: var(--light);
}

.why-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(242,101,34,0.12) 0%, rgba(242,101,34,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
}

.why-card:hover .why-icon {
    background: var(--secondary);
    color: var(--white);
}

.why-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   PROJECTS SECTION
   ========================================================= */
.projects-section {
    padding: 6rem 0;
    background: var(--white);
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    height: 320px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,35,66,0.9) 0%, rgba(10,35,66,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all 0.4s;
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(10,35,66,0.95) 0%, rgba(10,35,66,0.5) 100%);
}

.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.project-card-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.project-card-overlay p {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}

.project-card:hover .project-card-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CLIENTS SECTION
   ========================================================= */
.clients-section {
    padding: 5rem 0;
    background: var(--light);
}

.client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 90px;
}

.client-logo-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.client-logo-wrapper img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.client-logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================================================
   VISION MISSION SECTION
   ========================================================= */
.vision-section {
    padding: 6rem 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.vmv-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
    backdrop-filter: blur(10px);
}

.vmv-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.vmv-icon {
    width: 65px;
    height: 65px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.vmv-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.vmv-card p {
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
    padding: 6rem 0;
    background: var(--light);
}

.contact-info-box {
    background: var(--gradient);
    color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    height: 100%;
}

.contact-info-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-info-box p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-item-text h6 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-text p,
.contact-item-text a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
}

.contact-item-text a:hover {
    color: var(--secondary);
}

.contact-form-box {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-box h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-form-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-control-vm {
    border: 1.5px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: var(--light);
}

.form-control-vm:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(242,101,34,0.1);
    background: var(--white);
}

.form-label-vm {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 5rem 0 0;
}

.footer-brand img {
    height: 55px;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 0.3rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.footer-contact-item i {
    color: var(--secondary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.2rem 0;
    margin-top: 4rem;
    text-align: center;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(242,101,34,0.4);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242,101,34,0.5);
}

/* =========================================================
   PAGE HEADER
   ========================================================= */
.page-header {
    background: var(--gradient);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--secondary);
}

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

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.7s ease forwards; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { gap: 1.5rem; }
    .section-title { font-size: 1.8rem; }
    .stat-number { font-size: 2.5rem; }
    .stat-box::after { display: none; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 767px) {
    .hero-slide { height: 80vh; min-height: 500px; }
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .top-bar .d-md-flex { display: none !important; }
    .about-exp-badge { width: 100px; height: 100px; bottom: -15px; right: -10px; }
    .about-exp-badge .num { font-size: 2rem; }
    .contact-info-box, .contact-form-box { padding: 2rem; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.7rem; }
    .hero-desc { font-size: 0.95rem; }
    .section-title { font-size: 1.6rem; }
}
