/* =============================================
   ANDREWS BUILDERS - Main Stylesheet
   Color Palette: Black #1a1a1a | Red #d42027
   ============================================= */

/* CSS Variables */
:root {
    --navy: #1a1a1a;
    --navy-dark: #111111;
    --navy-light: #333333;
    --orange: #d42027;
    --orange-light: #e8383f;
    --orange-dark: #b01a20;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #333333;
    --text: #555555;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.bg-light { background: var(--light); }
.bg-dark { background: var(--navy-dark); }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    width: 120px;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.loader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    border-radius: 4px;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    to { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.nav-logo img {
    height: 55px;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    gap: 5px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

/* underline handled by ::before in modern effects section */

.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,32,39,0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--navy);
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
}

@media (max-width: 768px) {
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(3px);
    }

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,32,39,0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26,26,26,0.4);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17,17,17,0.9) 0%, rgba(26,26,26,0.7) 50%, rgba(212,32,39,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,32,39,0.2);
    border: 1px solid rgba(212,32,39,0.5);
    color: var(--orange-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--orange);
    position: relative;
}

.hero-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 650px;
    margin: 0 auto 36px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-label {
    display: block;
    width: fit-content;
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    background: rgba(212,32,39,0.08);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212,32,39,0.15);
}

.section-label.light {
    color: var(--orange-light);
    background: rgba(212,32,39,0.15);
    border-color: rgba(212,32,39,0.25);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
}

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

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

.section-title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 4px;
    margin-bottom: 20px;
}

.text-center .section-title-underline {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(212,32,39,0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.exp-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.about-feature i {
    color: var(--orange);
    font-size: 18px;
}

/* =============================================
   SERVICES PREVIEW
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,26,26,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.service-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transform: scale(0);
    transition: var(--transition);
}

.service-card:hover .service-link {
    transform: scale(1);
}

.service-info {
    padding: 30px;
    position: relative;
}

.service-icon-sm {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    position: absolute;
    top: -25px;
    right: 30px;
    box-shadow: 0 5px 15px rgba(212,32,39,0.4);
}

.service-info h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.service-info p {
    font-size: 14px;
    color: var(--gray);
}

/* =============================================
   PROJECTS PREVIEW
   ============================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.project-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.project-category {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.project-body {
    padding: 22px 24px 24px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: var(--orange);
}

.project-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.project-location {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.project-location i {
    color: var(--orange);
    margin-right: 4px;
}

.project-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 14px;
    transition: all 0.3s ease;
}

.project-card:hover .project-arrow {
    background: var(--orange);
    color: var(--white);
    transform: translateX(4px);
}

.project-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card:hover .project-link {
    color: var(--orange);
}

/* Project Filter Buttons */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* Projects Page Grid */
.projects-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.projects-page-grid .project-card {
    transition: var(--transition);
}

.projects-page-grid .project-card.hidden {
    display: none;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

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

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--orange);
    font-size: 16px;
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--orange-light);
    font-size: 13px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.test-prev, .test-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-prev:hover, .test-next:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(212,32,39,0.8));
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 140px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange);
}

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

.footer-col ul a {
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-contact i {
    color: var(--orange);
    margin-top: 4px;
    min-width: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 14px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
/* Floating WhatsApp & Call Buttons */
.floating-btns {
    position: fixed;
    bottom: 28px;
    left: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.call-btn {
    background: var(--orange);
    animation: callPulse 2s infinite;
}

.call-btn:hover {
    background: var(--orange-dark);
    animation: none;
}

@keyframes callPulse {
    0% { box-shadow: 0 0 0 0 rgba(212,32,39,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(212,32,39,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,32,39,0); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(26,26,26,0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-5px);
}

/* =============================================
   PAGE BANNER (for inner pages)
   ============================================= */
.page-banner {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(26,26,26,0.85));
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-banner h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
}

.page-banner .breadcrumb a {
    color: var(--orange-light);
}

.page-banner .breadcrumb span {
    opacity: 0.7;
}

/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */

/* --- About Story Section Graphics --- */
.about-story-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248,249,250,0.5) 0%, rgba(255,255,255,1) 40%, rgba(248,249,250,0.3) 100%);
}

/* Background SVG graphics */
.story-svg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Background floating shapes */
.story-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Dot grid pattern */
.story-dot-grid {
    position: absolute;
    top: 10%;
    right: 3%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--orange) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.12;
    animation: storyDotPulse 4s ease-in-out infinite;
}

@keyframes storyDotPulse {
    0%, 100% { opacity: 0.12; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

/* Floating geometric shapes */
.story-float-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* Large orange gradient circle */
.story-shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,32,39,0.08) 0%, transparent 70%);
    top: -80px;
    left: -80px;
    animation: storyShapeFloat1 8s ease-in-out infinite;
}

@keyframes storyShapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 15px) scale(1.1); }
}

/* Dashed rotating ring */
.story-shape-2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px dashed rgba(26,26,26,0.1);
    bottom: 5%;
    right: 5%;
    animation: storyShapeRotate 30s linear infinite;
}

@keyframes storyShapeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Orange diamond */
.story-shape-3 {
    width: 30px;
    height: 30px;
    background: var(--orange);
    opacity: 0.1;
    top: 15%;
    right: 15%;
    animation: storyDiamondFloat 6s ease-in-out infinite;
    transform: rotate(45deg);
}

@keyframes storyDiamondFloat {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.1; }
    50% { transform: rotate(45deg) translateY(-20px); opacity: 0.2; }
}

/* Navy cross/plus */
.story-shape-4 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 3%;
    opacity: 0.08;
    animation: storyShapeRotate 20s linear infinite reverse;
}

.story-shape-4::before,
.story-shape-4::after {
    content: '';
    position: absolute;
    background: var(--navy);
    border-radius: 3px;
}

.story-shape-4::before {
    width: 100%;
    height: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.story-shape-4::after {
    width: 6px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Morphing blob */
.story-shape-5 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(212,32,39,0.06), rgba(232,56,63,0.04));
    bottom: -60px;
    left: 30%;
    animation: storyBlobMorph 10s ease-in-out infinite;
}

@keyframes storyBlobMorph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
    33% { border-radius: 58% 42% 40% 60% / 50% 62% 38% 50%; transform: rotate(60deg); }
    66% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; transform: rotate(120deg); }
}

/* Small pulsing circle */
.story-shape-6 {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.2;
    top: 60%;
    right: 8%;
    animation: storyPulse 3s ease-in-out infinite;
}

@keyframes storyPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; box-shadow: 0 0 0 0 rgba(212,32,39,0.3); }
    50% { transform: scale(1.5); opacity: 0.35; box-shadow: 0 0 20px 5px rgba(212,32,39,0.15); }
}

/* --- Image Area Decorative Elements --- */
.about-preview-images {
    position: relative;
    z-index: 1;
}

/* Decorative frame around image */
.img-deco-frame {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    z-index: -1;
    pointer-events: none;
}

.img-deco-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--orange);
    border-style: solid;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.about-preview-images:hover .img-deco-corner {
    opacity: 0.8;
    width: 50px;
    height: 50px;
}

.img-deco-tl { top: 0; left: 0; border-width: 3px 0 0 3px; }
.img-deco-tr { top: 0; right: 0; border-width: 3px 3px 0 0; border-color: var(--navy); }
.img-deco-bl { bottom: 0; left: 0; border-width: 0 0 3px 3px; border-color: var(--navy); }
.img-deco-br { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

/* Animated rings behind image */
.img-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--orange);
    z-index: -1;
    pointer-events: none;
}

.img-deco-ring-1 {
    width: 160px;
    height: 160px;
    top: -30px;
    left: -40px;
    border-color: rgba(212,32,39,0.2);
    border-style: dashed;
    animation: imgRingSpin 20s linear infinite;
}

.img-deco-ring-2 {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -30px;
    border-color: rgba(26,26,26,0.15);
    animation: imgRingSpin 25s linear infinite reverse;
}

.img-deco-ring-3 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    left: -50px;
    border-color: rgba(232,56,63,0.2);
    border-width: 3px;
    animation: imgRingPulse 4s ease-in-out infinite;
}

@keyframes imgRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes imgRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Animated dots pattern behind image */
.img-deco-dots {
    position: absolute;
    bottom: -25px;
    left: -30px;
    width: 100px;
    height: 80px;
    background-image: radial-gradient(circle, var(--navy) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.15;
    z-index: -1;
    animation: imgDotsFloat 5s ease-in-out infinite;
}

@keyframes imgDotsFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.15; }
    50% { transform: translate(5px, -8px); opacity: 0.25; }
}

/* Animated line accents near image */
.img-line-accent {
    position: absolute;
    height: 3px;
    border-radius: 3px;
    z-index: 2;
    pointer-events: none;
}

.img-line-1 {
    width: 60px;
    background: linear-gradient(90deg, var(--orange), transparent);
    bottom: 20px;
    left: -20px;
    animation: imgLineSlide 3s ease-in-out infinite;
}

.img-line-2 {
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--navy));
    top: 40px;
    right: -15px;
    animation: imgLineSlide 4s ease-in-out infinite reverse;
}

@keyframes imgLineSlide {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(15px); opacity: 0.8; }
}

/* Story text decorative accent */
.story-text-deco {
    position: absolute;
    bottom: -30px;
    right: -20px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.about-story-content {
    position: relative;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-story-content .section-text {
    margin-bottom: 16px;
}

/* =============================================
   MISSION & VISION - Premium Redesign
   ============================================= */
.mv-section {
    position: relative;
    overflow: hidden;
    background: #f7f8fa;
}

/* --- Background Graphics --- */
.mv-bg-graphics {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.mv-blueprint-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.mv-float-shape {
    position: absolute;
    pointer-events: none;
}

.mv-shape-ring {
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(212,32,39,0.08);
    top: -60px; right: -60px;
    animation: mvShapeRotate 35s linear infinite;
}

.mv-shape-dots {
    width: 80px; height: 60px;
    background-image: radial-gradient(circle, rgba(26,26,26,0.08) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    bottom: 10%; left: 3%;
}

.mv-shape-diamond {
    width: 20px; height: 20px;
    background: var(--orange);
    opacity: 0.06;
    top: 25%; left: 8%;
    transform: rotate(45deg);
    animation: mvDiamondFloat 7s ease-in-out infinite;
}

@keyframes mvShapeRotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes mvDiamondFloat { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(-18px); } }

/* --- Section Header --- */
.mv-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mv-header-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.mv-label-line {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange));
    display: inline-block;
    animation: mvLinePulse 3s ease-in-out infinite;
}

.mv-label-line:last-child {
    background: linear-gradient(90deg, var(--orange), transparent);
}

@keyframes mvLinePulse {
    0%,100% { width: 40px; opacity: 0.5; }
    50% { width: 60px; opacity: 1; }
}

.mv-label-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
}

.mv-main-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.mv-main-title span {
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
}

.mv-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 20px;
}

.mv-title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mv-underline-bar {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
    animation: mvUnderlineGrow 3s ease-in-out infinite;
}

.mv-underline-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--navy);
    animation: mvDotPulse 2s ease-in-out infinite;
}

@keyframes mvUnderlineGrow { 0%,100% { width: 50px; } 50% { width: 70px; } }
@keyframes mvDotPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* --- Premium Cards Grid --- */
.mv-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* --- Clean Premium Card --- */
.mv-premium-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(26,26,26,0.08);
    border-radius: 16px;
    padding: 40px 36px 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(26,26,26,0.06);
    overflow: hidden;
}

.mv-premium-card::before {
    content: none !important;
}

.mv-premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--orange), var(--orange-light));
    border-radius: 16px 0 0 16px;
    transition: width 0.4s ease;
}

.mv-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,26,26,0.12), 0 0 0 1px rgba(212,32,39,0.15);
    border-color: rgba(212,32,39,0.2);
}

.mv-premium-card:hover::after {
    width: 6px;
}

/* Card glow - very subtle, only on hover */
.mv-card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(212,32,39,0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.mv-premium-card:hover .mv-card-glow {
    opacity: 1;
}

/* Animated border - hidden, only show as subtle top highlight on hover */
.mv-card-border-anim {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange-light));
    background-size: 300% 100%;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: mvBorderGradient 4s ease infinite;
}

.mv-premium-card:hover .mv-card-border-anim {
    opacity: 1;
}

@keyframes mvBorderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Blueprint corner accents */
.mv-corner {
    position: absolute;
    width: 20px; height: 20px;
    z-index: 2;
    transition: all 0.4s ease;
    opacity: 0;
}

.mv-premium-card:hover .mv-corner { opacity: 0.5; }

.mv-corner-tl { top: 10px; left: 10px; border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); }
.mv-corner-tr { top: 10px; right: 10px; border-top: 2px solid var(--navy); border-right: 2px solid var(--navy); }
.mv-corner-bl { bottom: 10px; left: 10px; border-bottom: 2px solid var(--navy); border-left: 2px solid var(--navy); }
.mv-corner-br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); }

.mv-premium-card:hover .mv-corner-tl,
.mv-premium-card:hover .mv-corner-br { width: 28px; height: 28px; }

/* --- Card Header & Icon --- */
.mv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.mv-icon-wrap {
    width: 68px; height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mv-icon-mission {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    box-shadow: 0 6px 20px rgba(26,26,26,0.25);
}

.mv-icon-vision {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
    box-shadow: 0 6px 20px rgba(212,32,39,0.25);
}

.mv-premium-card:hover .mv-icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

.mv-premium-card:hover .mv-icon-mission {
    box-shadow: 0 10px 28px rgba(26,26,26,0.35);
}

.mv-premium-card:hover .mv-icon-vision {
    box-shadow: 0 10px 28px rgba(212,32,39,0.35);
}

.mv-icon-wrap i {
    font-size: 24px;
    color: white;
    z-index: 2;
    position: relative;
}

.mv-icon-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

/* Radar pulse animation for Mission icon */
.mv-radar-ring {
    transform-origin: center;
    animation: mvRadarPulse 3s ease-in-out infinite;
}

.mv-radar-1 { animation-delay: 0s; }
.mv-radar-2 { animation-delay: 0.5s; }
.mv-radar-3 { animation-delay: 1s; }

@keyframes mvRadarPulse {
    0%,100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.15); }
}

.mv-radar-pulse {
    animation: mvRadarPing 2s ease-out infinite;
}

@keyframes mvRadarPing {
    0% { r: 5; opacity: 0.8; }
    100% { r: 30; opacity: 0; }
}

/* Eye scanning animation for Vision icon */
.mv-eye-shape {
    animation: mvEyeBlink 4s ease-in-out infinite;
}

@keyframes mvEyeBlink {
    0%,85%,100% { ry: 16; }
    90% { ry: 2; }
}

.mv-scan-line {
    animation: mvScanMove 2.5s ease-in-out infinite;
}

@keyframes mvScanMove {
    0%,100% { y1: 30; y2: 30; opacity: 0; }
    25% { opacity: 0.5; }
    50% { y1: 40; y2: 40; opacity: 0.6; }
    75% { opacity: 0.5; }
    100% { y1: 50; y2: 50; opacity: 0; }
}

/* Card badge number */
.mv-card-badge {
    font-size: 48px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(26,26,26,0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.mv-premium-card:hover .mv-card-badge {
    -webkit-text-stroke-color: rgba(212,32,39,0.15);
    transform: scale(1.1);
}

/* Card title */
.mv-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

/* Card divider line */
.mv-card-divider {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.mv-card-divider span {
    display: block;
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv-premium-card:hover .mv-card-divider span {
    width: 80px;
}

/* Card text */
.mv-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

/* --- Expand Button --- */
.mv-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1.5px solid rgba(26,26,26,0.15);
    border-radius: 50px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.mv-expand-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,32,39,0.1), transparent);
    transition: left 0.5s ease;
}

.mv-expand-btn:hover::before { left: 100%; }

.mv-expand-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 4px 15px rgba(212,32,39,0.15);
    transform: translateY(-2px);
}

.mv-btn-arrow {
    transition: transform 0.4s ease;
    font-size: 11px;
}

.mv-expand-btn.active .mv-btn-arrow {
    transform: rotate(180deg);
}

.mv-expand-btn.active {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    border-color: var(--navy);
}

/* --- Expanded Content --- */
.mv-expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease 0.1s, margin 0.4s ease;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.mv-expanded-content.open {
    max-height: 400px;
    opacity: 1;
    margin-top: 20px;
}

.mv-expand-inner {
    padding: 20px 0 10px;
    border-top: 1px solid rgba(26,26,26,0.08);
}

/* Infographic items */
.mv-infographic {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.mv-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(248,249,250,0.8);
    border-radius: 12px;
    border-left: 3px solid var(--orange);
    transition: all 0.3s ease;
}

.mv-info-item:hover {
    background: rgba(212,32,39,0.06);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mv-info-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.mv-info-detail strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
}

.mv-info-detail span {
    font-size: 12px;
    color: var(--gray);
}

/* Expand illustration */
.mv-expand-illustration {
    width: 100%;
    height: 60px;
    opacity: 0.4;
}

/* --- Card active (expanded) state --- */
.mv-premium-card.expanded {
    box-shadow: 0 20px 50px rgba(26,26,26,0.12), 0 0 0 1px rgba(212,32,39,0.15);
    background: #ffffff;
}

/* Legacy mv-card compatibility - hide old styles */
.mission-vision-grid {
    display: none;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mv-premium-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mv-main-title { font-size: 30px; }
    .mv-subtitle { font-size: 14px; }
    .mv-premium-card { padding: 30px 24px 24px; border-radius: 16px; }
    .mv-icon-wrap { width: 60px; height: 60px; border-radius: 14px; }
    .mv-icon-wrap i { font-size: 22px; }
    .mv-card-badge { font-size: 36px; }
    .mv-card-title { font-size: 20px; }
    .mv-card-text { font-size: 14px; }
    .mv-blueprint-svg { display: none; }
    .mv-shape-ring { width: 120px; height: 120px; }
    .mv-header { margin-bottom: 36px; }
    .mv-info-item { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .mv-premium-card { padding: 24px 18px 20px; }
    .mv-main-title { font-size: 26px; }
    .mv-card-header { margin-bottom: 16px; }
    .mv-expand-btn { padding: 8px 18px; font-size: 12px; }
}

/* Counter Section */
.counters {
    background: var(--navy);
    padding: 80px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--white);
}

.counter-item i {
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 16px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.counter-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(to top, rgba(17,17,17,0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 18px;
    color: var(--navy);
    font-weight: 700;
}

.team-info span {
    font-size: 13px;
    color: var(--orange);
    font-weight: 500;
}

/* =============================================
   SERVICES PAGE SPECIFIC
   ============================================= */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-full-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.service-full-card .service-img {
    height: 220px;
}

.service-full-card .service-body {
    padding: 30px;
}

.service-full-card .service-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    position: absolute;
    top: 190px;
    right: 30px;
    box-shadow: 0 5px 20px rgba(212,32,39,0.4);
    z-index: 2;
}

.service-full-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-full-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-full-card .service-features {
    list-style: none;
}

.service-full-card .service-features li {
    font-size: 14px;
    color: var(--text);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-full-card .service-features li i {
    color: var(--orange);
    font-size: 12px;
}

/* Process / Timeline */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: var(--orange);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212,32,39,0.3);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    font-size: 14px;
    color: var(--gray);
}

/* =============================================
   CONTACT PAGE SPECIFIC
   ============================================= */
/* Quick Contact Row */
.contact-quick-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-quick-card {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.contact-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,32,39,0.2);
}

.cq-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212,32,39,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--orange);
    font-size: 22px;
    transition: var(--transition);
}

.contact-quick-card:hover .cq-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    transform: scale(1.1);
}

.contact-quick-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-quick-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.cf-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cf-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.cf-header h3 {
    font-size: 20px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2px;
}

.cf-header p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-label i {
    color: var(--orange);
    margin-right: 4px;
    font-size: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212,32,39,0.08);
}

.form-group textarea {
    height: 130px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px 32px;
    font-size: 16px;
    border-radius: 10px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.cs-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cs-card-dark {
    background: var(--navy);
    color: #fff;
}

.cs-card-dark h4 { color: #fff; }
.cs-card-dark h4 i { color: var(--orange); }
.cs-card-dark p { color: rgba(255,255,255,0.75); }

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
}

.cs-card-whatsapp {
    background: #075e54;
    color: #fff;
}

.cs-card-whatsapp h4 { color: #fff; }
.cs-card-whatsapp h4 i { color: #25D366; }
.cs-card-whatsapp p { color: rgba(255,255,255,0.8); }

.cs-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: #25D366;
    color: #fff;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.cs-btn-wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.cs-card-info {
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: var(--shadow);
}

.cs-card-info h4 {
    color: var(--navy);
}

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

.cs-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid #f5f5f5;
}

.cs-list li:last-child { border-bottom: none; }

.cs-list li i {
    color: var(--orange);
    font-size: 14px;
}

/* Map */
.contact-map {
    margin-top: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* =============================================
   SECTION DIVIDERS
   ============================================= */
.section-divider {
    position: relative;
    z-index: 5;
    margin-top: -2px;
    margin-bottom: -2px;
    line-height: 0;
}

.section-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.divider-angle svg { height: 50px; }
.divider-tilt svg { height: 60px; }

.divider-wave-reverse {
    margin-bottom: -2px;
}

/* =============================================
   ANIMATED SVG SECTION GRAPHICS
   ============================================= */
.section-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.graphic {
    position: absolute;
}

.graphic-dots {
    top: 40px;
    right: 30px;
    opacity: 0.8;
    animation: graphicFloat 6s ease-in-out infinite;
}

.graphic-ring {
    bottom: 20px;
    left: -40px;
    opacity: 0.7;
    animation: graphicFloat 8s ease-in-out infinite 1s;
}

.graphic-triangle {
    top: 30%;
    right: 5%;
    opacity: 0.7;
    animation: graphicFloat 7s ease-in-out infinite 0.5s;
}

.graphic-zigzag {
    bottom: 25%;
    left: 10%;
    opacity: 0.8;
    animation: graphicFloat 5s ease-in-out infinite 2s;
}

.graphic-hexagon {
    top: 30px;
    left: -20px;
    opacity: 0.7;
    animation: graphicFloat 9s ease-in-out infinite;
}

.graphic-circles {
    bottom: 40px;
    right: -30px;
    opacity: 0.7;
    animation: graphicFloat 7s ease-in-out infinite 1.5s;
}

.graphic-cross {
    top: 50%;
    left: 8%;
    opacity: 0.8;
    animation: graphicFloat 6s ease-in-out infinite 0.8s;
}

@keyframes graphicFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@media (max-width: 768px) {
    .section-graphics .graphic { transform: scale(0.6); }
    .graphic-dots { right: 10px; top: 20px; }
    .graphic-ring { left: -60px; }
    .section-divider svg { height: 40px; }
}

/* =============================================
   ANIMATED GRAPHIC ELEMENTS
   ============================================= */

/* Hero Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: particleFloat linear infinite;
}

.particle-1 {
    width: 80px;
    height: 80px;
    background: var(--orange);
    top: 15%;
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.particle-2 {
    width: 40px;
    height: 40px;
    background: var(--white);
    top: 60%;
    left: 15%;
    animation-duration: 9s;
    animation-delay: -2s;
}

.particle-3 {
    width: 60px;
    height: 60px;
    border: 2px solid var(--orange-light);
    background: transparent;
    top: 25%;
    right: 10%;
    animation-duration: 15s;
    animation-delay: -4s;
}

.particle-4 {
    width: 20px;
    height: 20px;
    background: var(--orange-light);
    top: 70%;
    right: 20%;
    animation-duration: 8s;
    animation-delay: -1s;
}

.particle-5 {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    top: 40%;
    left: 50%;
    border-radius: 0;
    transform: rotate(45deg);
    animation-duration: 18s;
    animation-delay: -3s;
}

.particle-6 {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    top: 80%;
    left: 40%;
    animation-duration: 10s;
    animation-delay: -5s;
}

.particle-7 {
    width: 15px;
    height: 15px;
    background: var(--orange);
    top: 10%;
    left: 70%;
    animation-duration: 7s;
    animation-delay: -2s;
}

.particle-8 {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255,255,255,0.15);
    background: transparent;
    top: 55%;
    right: 5%;
    animation-duration: 20s;
    animation-delay: -7s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.25;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg) scale(1.1);
        opacity: 0.35;
    }
    50% {
        transform: translateY(-15px) translateX(-15px) rotate(180deg) scale(0.9);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(270deg) scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg) scale(1);
        opacity: 0.25;
    }
}

/* Section Decoration Circles */
.section-decoration {
    position: relative;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.deco-circle-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212,32,39,0.15) 0%, rgba(212,32,39,0.05) 40%, transparent 70%);
    top: -100px;
    left: -80px;
    animation: pulseGlow 4s ease-in-out infinite;
}

.deco-circle-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26,26,26,0.12) 0%, rgba(26,26,26,0.04) 40%, transparent 70%);
    top: -60px;
    right: -50px;
    animation: pulseGlow 5s ease-in-out infinite 1s;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Floating Shapes for Sections */
.has-shapes {
    position: relative;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.12;
}

/* Orange circle - top left */
.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    top: -100px;
    left: -100px;
    animation: shapeRotate 20s linear infinite;
}

/* Navy dotted ring - bottom right */
.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px dashed var(--navy);
    bottom: -60px;
    right: -60px;
    animation: shapeRotate 25s linear infinite reverse;
}

/* Triangle - mid left */
.shape-3 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--orange);
    top: 40%;
    right: -20px;
    opacity: 0.08;
    animation: shapeBounce 6s ease-in-out infinite;
}

/* Small dots cluster */
.shape-4 {
    width: 8px;
    height: 8px;
    background: var(--navy);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    box-shadow:
        25px 15px 0 var(--navy),
        50px 0 0 var(--navy),
        75px 15px 0 var(--navy),
        0 30px 0 var(--navy),
        25px 45px 0 var(--navy),
        50px 30px 0 var(--navy),
        75px 45px 0 var(--navy);
    opacity: 0.1;
    animation: shapeBounce 8s ease-in-out infinite 1s;
}

/* Orange gradient blob */
.shape-5 {
    width: 250px;
    height: 250px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, var(--orange), transparent);
    top: -80px;
    right: -80px;
    animation: morphBlob 8s ease-in-out infinite;
}

/* Navy cross/plus */
.shape-6 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 5%;
    opacity: 0.08;
    animation: shapeRotate 15s linear infinite;
}

.shape-6::before,
.shape-6::after {
    content: '';
    position: absolute;
    background: var(--navy);
    border-radius: 4px;
}

.shape-6::before {
    width: 100%;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.shape-6::after {
    width: 12px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Zigzag / wave line */
.shape-7 {
    width: 200px;
    height: 30px;
    bottom: 10%;
    right: 8%;
    opacity: 0.08;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        var(--orange) 10px,
        var(--orange) 12px
    );
    transform: skewX(-20deg);
    animation: shapeBounce 10s ease-in-out infinite;
}

@keyframes shapeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shapeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 40% 60% / 50% 62% 38% 50%;
        transform: rotate(45deg) scale(1.05);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(90deg) scale(0.95);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 38% 62% 37%;
        transform: rotate(135deg) scale(1.02);
    }
}

/* Animated gradient line accent */
.features-grid {
    position: relative;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange));
    background-size: 200% 100%;
    border-radius: 4px;
    animation: gradientSlide 3s ease-in-out infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Feature card top border animation */
.feature-card {
    border-top: 3px solid transparent;
    background-clip: padding-box;
    transition: var(--transition);
}

.feature-card:hover {
    border-top-color: var(--orange);
}

/* Animated border on feature icon */
.feature-icon {
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(212,32,39,0.3);
    animation: iconSpin 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Service card animated corner accent */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--orange) transparent transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.service-card:hover::after {
    opacity: 0.3;
}

/* Project card shine sweep */
.project-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 1;
    transition: none;
}

.project-card:hover .project-img::after {
    animation: shineSweep 0.7s ease forwards;
}

@keyframes shineSweep {
    to { left: 150%; }
}

/* CTA section animated dots background */
.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
    animation: dotsMove 20s linear infinite;
}

.cta-content {
    z-index: 3;
}

@keyframes dotsMove {
    from { background-position: 0 0; }
    to { background-position: 30px 30px; }
}

/* Testimonial section animated bg */
.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,32,39,0.08), transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,56,63,0.06), transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite 2s;
    pointer-events: none;
}

/* Page banner animated gradient overlay */
.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--orange), var(--navy));
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
    z-index: 3;
}

/* Counter section animated grid lines */
.counters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.counters {
    position: relative;
    overflow: hidden;
}

/* =============================================
   SCROLL ANIMATIONS (Modern)
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-80px) rotate(-2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px) rotate(2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0) rotate(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-down {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeDown {
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger children with progressive delays */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.35s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.45s; }
.reveal:nth-child(8) { transition-delay: 0.5s; }
.reveal:nth-child(9) { transition-delay: 0.55s; }

/* =============================================
   MODERN HOVER & GLOW EFFECTS
   ============================================= */
/* Card hover glow */
.feature-card::before,
.service-card::before,
.mv-card::before,
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(135deg, rgba(212,32,39,0.08), rgba(26,26,26,0.05));
}

.feature-card:hover::before,
.service-card:hover::before,
.mv-card:hover::before,
.team-card:hover::before {
    opacity: 1;
}

.feature-card,
.service-card,
.mv-card,
.team-card,
.service-full-card {
    position: relative;
    overflow: hidden;
}

/* Shimmer line on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: none;
    z-index: 1;
}

.feature-card:hover::after {
    animation: shimmer 0.6s ease forwards;
}

@keyframes shimmer {
    to { left: 150%; }
}

/* Smooth tilt on card hover */
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26,26,26,0.15), 0 0 0 1px rgba(212,32,39,0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Animated underline for section titles */
.section-title {
    position: relative;
    display: inline-block;
}

/* Section title underline handled by .section-title-underline div */

/* Icon spin on feature hover */
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    transform: rotateY(180deg) scale(1.1);
}

/* Gradient border animation for CTA buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}

.btn-primary:hover::before {
    animation: btnShimmer 0.5s ease forwards;
}

@keyframes btnShimmer {
    to { left: 100%; }
}

/* Parallax-like floating elements */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-1deg); }
}

.experience-badge {
    animation: floatSlow 4s ease-in-out infinite;
}

/* Pulse ring on hero stats */
.hero-stat-number {
    position: relative;
}

/* Smooth scale for project cards */
.project-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover {
    transform: scale(1.03);
    z-index: 2;
}

/* Counter number glow */
.counter-number {
    text-shadow: 0 0 30px rgba(212,32,39,0.3);
}

/* Testimonial card glass effect */
.testimonial-card {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
}

.testimonial-card:hover {
    border-color: rgba(212,32,39,0.3);
    box-shadow: 0 10px 40px rgba(212,32,39,0.15);
}

/* Process step hover */
.process-step:hover .process-number {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(212,32,39,0.5);
    transition: all 0.3s ease;
}

.process-number {
    transition: all 0.3s ease;
}

/* Navbar link micro-interaction */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* Page banner parallax text */
.page-banner-content h1 {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.page-banner .breadcrumb {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* =============================================
   CARD CLICK POPUP MODAL
   ============================================= */
.card-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17,17,17,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.card-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.card-popup {
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    position: relative;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.card-popup.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.card-popup-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(17,17,17,0.65);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.card-popup-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.popup-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-img-team {
    height: 320px;
}

.popup-body {
    padding: 30px;
}

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

.popup-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.popup-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.popup-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-role {
    display: block;
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.popup-location {
    color: var(--orange) !important;
    font-weight: 500;
    font-size: 14px !important;
}

.popup-location i {
    margin-right: 4px;
}

.popup-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.popup-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark);
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.popup-features li:hover {
    background: rgba(212,32,39,0.08);
    transform: translateX(4px);
}

.popup-features li i {
    color: var(--orange);
    font-size: 13px;
}

.popup-icon {
    width: 70px; height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.popup-icon i {
    font-size: 28px;
    color: #fff;
}

.popup-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.popup-title-row h3 {
    margin-bottom: 0;
}

.popup-icon-badge {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(212,32,39,0.3);
}

.popup-stats {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.popup-stat {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    background: #f8f9fa;
    border-right: 1px solid #eee;
}

.popup-stat:last-child {
    border-right: none;
}

.popup-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}

.popup-stat-label {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.popup-feat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-feat-title i {
    color: var(--orange);
    font-size: 14px;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .card-popup { max-width: 95%; border-radius: 12px; }
    .popup-img { height: 200px; border-radius: 12px 12px 0 0; }
    .popup-body { padding: 20px; }
    .popup-body h3 { font-size: 18px; }
    .popup-features { grid-template-columns: 1fr; }
    .popup-title-row { gap: 10px; }
    .popup-icon-badge { width: 42px; height: 42px; min-width: 42px; font-size: 18px; }
    .popup-stats { margin-bottom: 18px; }
    .popup-stat { padding: 12px 8px; }
    .popup-stat-num { font-size: 18px; }
    .popup-stat-label { font-size: 11px; }
    .popup-features li { font-size: 13px; padding: 7px 10px; }
}

/* OLD CLICK ANIMATIONS - DISABLED */
.card-click-active {
    display: none !important;
    transform: scale(1.03) !important;
    transition: transform 0.2s ease !important;
}

@keyframes cardGlowPulse {
    0% { box-shadow: 0 0 0 0 rgba(212,32,39,0.9); }
    20% { box-shadow: 0 0 50px 15px rgba(212,32,39,0.5), 0 0 100px 30px rgba(26,26,26,0.2); }
    50% { box-shadow: 0 0 30px 8px rgba(212,32,39,0.3), inset 0 0 20px rgba(212,32,39,0.08); }
    100% { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
}

/* Card click burst container */
.card-click-burst {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    border-radius: inherit;
    overflow: visible;
}

/* Ripple ring expanding from click point */
.click-ripple {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--orange);
    opacity: 1;
    transform: scale(0);
    animation: clickRippleExpand 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.click-ripple:nth-child(2) {
    border-color: var(--navy);
    border-width: 2px;
    animation-delay: 0.12s;
}

.click-ripple:nth-child(3) {
    border-color: var(--orange-light);
    border-width: 2px;
    animation-delay: 0.24s;
    border-style: dashed;
}

@keyframes clickRippleExpand {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(6); opacity: 0; }
}

/* Particle burst dots from click */
.click-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    animation: clickParticleFly 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.click-particle:nth-child(odd) {
    background: var(--navy);
    width: 6px;
    height: 6px;
}

.click-particle:nth-child(3n) {
    background: var(--orange-light);
    width: 10px;
    height: 10px;
    border-radius: 0;
}

@keyframes clickParticleFly {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: var(--fly-to) scale(0); }
}

/* Rotating geometric shapes burst */
.click-geo {
    position: absolute;
    opacity: 0;
    animation: clickGeoAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.click-geo-ring {
    width: 45px;
    height: 45px;
    border: 3px solid var(--orange);
    border-radius: 50%;
}

.click-geo-triangle {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid var(--navy);
}

.click-geo-cross {
    width: 24px;
    height: 24px;
    position: relative;
}

.click-geo-cross::before,
.click-geo-cross::after {
    content: '';
    position: absolute;
    background: var(--orange-light);
    border-radius: 2px;
}

.click-geo-cross::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.click-geo-cross::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.click-geo-diamond {
    width: 18px;
    height: 18px;
    background: var(--orange);
}

.click-geo-hexagon {
    width: 28px;
    height: 28px;
    background: var(--navy);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.click-geo-dots {
    width: 8px;
    height: 8px;
    background: var(--navy);
    border-radius: 50%;
    box-shadow: 14px 0 0 var(--orange), 28px 0 0 var(--navy), 0 14px 0 var(--orange-light);
}

@keyframes clickGeoAppear {
    0% { opacity: 0; transform: translate(0,0) scale(0) rotate(0deg); }
    25% { opacity: 1; transform: var(--geo-move) scale(1.5) rotate(90deg); }
    60% { opacity: 0.9; transform: var(--geo-move) scale(1) rotate(220deg); }
    100% { opacity: 0; transform: var(--geo-move) scale(0.2) rotate(360deg); }
}

/* SVG line burst animation */
.click-svg-burst line {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: svgLineDraw 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.click-svg-burst circle {
    opacity: 0;
    animation: svgCirclePop 0.6s ease 0.15s forwards;
}

@keyframes svgLineDraw {
    0% { stroke-dashoffset: 80; opacity: 1; }
    50% { stroke-dashoffset: 0; opacity: 0.9; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes svgCirclePop {
    0% { opacity: 0; r: 0; }
    40% { opacity: 1; }
    100% { opacity: 0; r: 12; }
}

/* Corner decoration flash */
.click-corner-deco {
    position: absolute;
    width: 35px;
    height: 35px;
    border-color: var(--orange);
    border-style: solid;
    opacity: 0;
    animation: cornerFlash 0.9s ease forwards;
}

.click-corner-deco.top-left {
    top: 4px; left: 4px;
    border-width: 3px 0 0 3px;
}

.click-corner-deco.top-right {
    top: 4px; right: 4px;
    border-width: 3px 3px 0 0;
    animation-delay: 0.06s;
    border-color: var(--navy);
}

.click-corner-deco.bottom-left {
    bottom: 4px; left: 4px;
    border-width: 0 0 3px 3px;
    animation-delay: 0.12s;
    border-color: var(--orange-light);
}

.click-corner-deco.bottom-right {
    bottom: 4px; right: 4px;
    border-width: 0 3px 3px 0;
    animation-delay: 0.18s;
}

@keyframes cornerFlash {
    0% { opacity: 0; transform: scale(0.2); }
    25% { opacity: 1; transform: scale(1.4); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2); }
}

/* Shimmer wave on click */
.click-shimmer-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,32,39,0.3), rgba(255,255,255,0.4), rgba(212,32,39,0.3), transparent);
    animation: clickShimmerWave 0.7s ease forwards;
    border-radius: inherit;
    z-index: 5;
}

@keyframes clickShimmerWave {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Pulsing border outlines */
.click-border-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--orange);
    border-radius: inherit;
    opacity: 0;
    animation: borderPulseGrow 1s ease forwards;
}

.click-border-pulse.pulse-2 {
    border-color: var(--navy);
    animation-delay: 0.15s;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
}

.click-border-pulse.pulse-3 {
    border-color: var(--orange-light);
    border-style: dashed;
    animation-delay: 0.3s;
    top: -16px; left: -16px; right: -16px; bottom: -16px;
}

@keyframes borderPulseGrow {
    0% { opacity: 0; transform: scale(0.96); }
    25% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.06); }
}

/* Floating icon sparkles */
.click-sparkle {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    animation: sparkleFloat 1s ease forwards;
}

@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0) rotate(0deg); }
    20% { opacity: 1; transform: translateY(-15px) scale(1.3) rotate(20deg); }
    100% { opacity: 0; transform: var(--sparkle-move) scale(0.5) rotate(-15deg); }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-full-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .projects-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Simplify story graphics on mobile */
    .story-svg-graphics,
    .story-dot-grid,
    .story-shape-1,
    .story-shape-5 { display: none; }
    .img-deco-ring-1,
    .img-deco-ring-3 { display: none; }
    .story-text-deco { display: none; }
    .img-deco-frame { top: -8px; left: -8px; right: -8px; bottom: -8px; }
    .img-deco-corner { width: 25px; height: 25px; }

    /* Hero responsive */
    .hero { min-height: 85vh; }
    .hero-content { padding: 60px 16px 40px; }
    .hero-badge { font-size: 12px; padding: 6px 18px; margin-bottom: 16px; }
    .hero-text { font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
    .hero-buttons { margin-bottom: 40px; gap: 12px; }
    .hero-scroll { display: none; }

    /* Button responsive */
    .btn { padding: 12px 24px; font-size: 14px; }

    /* Section header responsive */
    .section-subtitle { font-size: 14px; }
    .section-label { font-size: 11px; padding: 6px 16px; letter-spacing: 2px; }
    .section-padding { padding: 60px 0; }

    /* Page banner responsive */
    .page-banner { padding: 120px 0 70px; }
    .page-banner .breadcrumb { font-size: 13px; }

    /* CTA responsive */
    .cta-content p { font-size: 15px; margin-bottom: 24px; }
    .cta-bg { background-attachment: scroll; }

    /* Footer responsive */
    .footer { padding: 50px 0 0; }
    .footer-col h3 { font-size: 16px; margin-bottom: 14px; }
    .footer-logo { width: 110px; }

    /* Contact responsive */
    .contact-quick-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .contact-quick-card { padding: 20px 16px; }
    .cq-icon { width: 44px; height: 44px; font-size: 18px; }
    .contact-quick-card h4 { font-size: 14px; }
    .contact-quick-card p { font-size: 12px; }
    .contact-form { padding: 24px; }
    .cf-header { gap: 14px; margin-bottom: 20px; }
    .cf-icon { width: 44px; height: 44px; min-width: 44px; font-size: 18px; }
    .cf-header h3 { font-size: 18px; }
    .cf-header p { font-size: 13px; }
    .contact-sidebar .cs-card { padding: 22px; }
    .cs-card h4 { font-size: 16px; }
    .contact-map { margin-top: 40px; }

    /* Back to top responsive */
    .back-to-top { width: 42px; height: 42px; font-size: 16px; bottom: 20px; right: 20px; }
    .floating-btns { bottom: 20px; left: 20px; gap: 10px; }
    .float-btn { width: 48px; height: 48px; font-size: 22px; }

    /* Filter buttons responsive */
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .project-filters { gap: 8px; margin-top: 24px; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        z-index: 1002;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Dark overlay behind mobile menu */
    .nav-menu.active ~ .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        color: var(--white) !important;
        font-size: 18px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        width: 100%;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--orange) !important;
        padding-left: 10px;
    }

    .nav-cta { display: none; }

    .hamburger {
        display: flex;
        z-index: 1003;
        position: relative;
    }

    .hamburger.active span {
        background: var(--white) !important;
    }

    .hero-stats { gap: 30px; }
    .hero-stat-number { font-size: 2rem; }

    .about-preview-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-float { display: none; }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .features { margin-top: -30px; }

    .services-grid,
    .services-full-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    .projects-grid,
    .projects-page-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    .mission-vision-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cs-card { margin-bottom: 0; }

    .testimonial-card { min-width: calc(100% - 20px); }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    .feature-card { padding: 24px 16px; }
    .feature-icon { width: 60px; height: 60px; }
    .feature-icon i { font-size: 22px; }
    .feature-card h3 { font-size: 15px; }
    .feature-card p { font-size: 12px; }

    .service-info { padding: 18px 16px; }
    .service-info h3 { font-size: 15px; margin-bottom: 6px; }
    .service-info p { font-size: 13px; line-height: 1.5; }
    .service-img { height: 160px; }
    .service-icon-sm { width: 42px; height: 42px; font-size: 17px; top: -21px; right: 16px; }
    .service-overlay { display: none; }

    /* Service full cards (services page) */
    .service-full-card .service-img { height: 160px; }
    .service-full-card .service-icon-badge { width: 46px; height: 46px; font-size: 18px; top: 136px; right: 16px; border-radius: 10px; }
    .service-full-card .service-body { padding: 20px 16px; }
    .service-full-card h3 { font-size: 16px; }
    .service-full-card p { font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
    .service-full-card .service-features li { font-size: 13px; padding: 4px 0; }

    .project-img { height: 180px; }
    .project-body { padding: 18px 18px 20px; }
    .project-title { font-size: 16px; }
    .project-desc { font-size: 13px; }

    .team-img { height: 200px; }
    .team-info { padding: 14px; }
    .team-info h3 { font-size: 15px; }

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

@media (max-width: 480px) {
    .hero { min-height: 80vh; }
    .hero-content { padding: 50px 10px 30px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .hero-stat-number { font-size: 1.8rem; }
    .hero-stat-label { font-size: 12px; }
    .hero-text { font-size: 14px; }

    .btn { padding: 10px 20px; font-size: 13px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-content p { font-size: 14px; }

    .section-padding { padding: 50px 0; }
    .section-subtitle { font-size: 13px; }
    .section-label { font-size: 10px; padding: 5px 12px; letter-spacing: 1.5px; }

    .page-banner { padding: 100px 0 60px; }
    .page-banner .breadcrumb { font-size: 12px; }

    .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .counter-number { font-size: 2rem; }
    .counter-item i { font-size: 28px; margin-bottom: 10px; }
    .counter-label { font-size: 12px; }
    .container { padding: 0 12px; }

    /* Footer compact */
    .footer { padding: 40px 0 0; }
    .footer-col p { font-size: 13px; }
    .footer-social a { width: 36px; height: 36px; }
    .footer-bottom { padding: 18px 0; font-size: 12px; }

    /* Contact compact */
    .contact-quick-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .contact-quick-card { padding: 16px 12px; }
    .cq-icon { width: 38px; height: 38px; font-size: 16px; }
    .contact-quick-card h4 { font-size: 13px; }
    .contact-quick-card p { font-size: 11px; }
    .contact-form { padding: 18px; }
    .cf-header { flex-direction: column; text-align: center; gap: 10px; margin-bottom: 18px; }
    .cf-icon { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
    .cf-header h3 { font-size: 16px; }
    .cf-header p { font-size: 12px; }
    .form-label { font-size: 12px; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: 12px 14px; font-size: 13px; }
    .contact-sidebar { grid-template-columns: 1fr; }
    .contact-sidebar .cs-card { padding: 18px; }
    .cs-card h4 { font-size: 15px; }
    .cs-list li { font-size: 13px; }

    /* Filter buttons compact */
    .filter-btn { padding: 6px 12px; font-size: 11px; }
    .project-filters { gap: 6px; margin-top: 20px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .feature-card { padding: 20px 12px; }
    .feature-icon { width: 50px; height: 50px; }
    .feature-icon i { font-size: 18px; }
    .feature-card h3 { font-size: 13px; }
    .feature-card p { font-size: 11px; line-height: 1.5; }

    .services-grid,
    .services-full-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-img { height: 110px; }
    .service-info { padding: 12px 10px; }
    .service-info h3 { font-size: 12px; margin-bottom: 4px; }
    .service-info p { font-size: 11px; line-height: 1.4; }
    .service-icon-sm { width: 32px; height: 32px; font-size: 13px; top: -16px; right: 10px; border-radius: 8px; }

    /* Service full cards compact */
    .service-full-card .service-img { height: 120px; }
    .service-full-card .service-icon-badge { width: 38px; height: 38px; font-size: 15px; top: 100px; right: 10px; border-radius: 8px; }
    .service-full-card .service-body { padding: 14px 12px; }
    .service-full-card h3 { font-size: 13px; margin-bottom: 6px; }
    .service-full-card p { font-size: 11px; line-height: 1.5; margin-bottom: 8px; }
    .service-full-card .service-features li { font-size: 11px; padding: 3px 0; gap: 5px; }
    .service-full-card .service-features li i { font-size: 10px; }

    .projects-grid,
    .projects-page-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .project-img { height: 140px; }
    .project-body { padding: 14px 14px 16px; }
    .project-title { font-size: 14px; margin-bottom: 6px; }
    .project-desc { font-size: 12px; margin-bottom: 10px; line-height: 1.5; }
    .project-meta { padding-top: 10px; }
    .project-location { font-size: 11px; }
    .project-arrow { width: 28px; height: 28px; font-size: 11px; }
    .project-category { font-size: 10px; padding: 3px 10px; top: 10px; left: 10px; }

    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .team-img { height: 170px; }
    .team-info h3 { font-size: 13px; }
    .team-info span { font-size: 11px; }

    .footer-grid { grid-template-columns: 1fr; }
}
