/* ========================================= */
/* STYLE V2: New Middle Sections             */
/* ========================================= */

/* 1. NEW HERO SECTION (Split Layout) */
.hero-v2 {
    padding-top: 120px; /* Account for fixed header */
    padding-bottom: 80px;
    background-color: #fff;
    overflow: hidden;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-v2-content h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-v2-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.badge-orange {
    display: inline-block;
    padding: 5px 10px;
    background-color: rgba(255, 87, 34, 0.1);
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Embedded Tracking Box */


.hero-v2-image .image-wrapper {
    position: relative;
    border-radius: 20px;
}

.hero-v2-image img {
    border-radius: 20px;
    /* Create a cool shape mask or simple round corners */
    border-bottom-left-radius: 100px; 
    box-shadow: 20px 20px 0px var(--primary-orange);
}

/* Float Stat in Hero */
.float-stat {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.fs-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* 2. NEW FEATURES (Cards) */
.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-v2 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.feature-card-v2:hover, .feature-card-v2.active {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.fc-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.feature-card-v2.active .fc-icon {
    background: var(--primary-orange);
    color: #fff;
}

.feature-card-v2 h3 {
    margin-bottom: 15px;
}

.link-btn {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

/* 3. ZIG ZAG SECTION */
.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.zigzag-content, .zigzag-image {
    flex: 1;
}

.zigzag-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* 4. CTA BANNER */
.cta-banner {
    background: var(--primary-orange);
    padding: 60px 0;
    color: #fff;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 5px;
}

.btn-white-text {
    background: var(--primary-dark);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-white-text:hover {
    background: #fff;
    color: var(--primary-orange);
}

/* Responsive V2 */
@media (max-width: 900px) {
    .hero-v2-grid, .zigzag-row, .cta-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-v2-image { order: -1; margin-bottom: 40px; }
    .tracking-box { margin: 0 auto 40px; }
    .float-stat { left: 0; right: 0; margin: auto; bottom: -20px; width: fit-content; }
    .hero-v2-content h1 { font-size: 2.5rem; }
}



/* ========================================= */
/* ABOUT US SPECIFIC STYLES                  */
/* ========================================= */

/* 1. Page Header */
.page-header {
    background-color: var(--primary-dark);
    padding: 160px 0 80px; /* Top padding clears fixed nav */
    color: var(--white);
    text-align: center;
}

.sub-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-orange);
    display: inline-block;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Image Experience Badge */
.zigzag-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 600;
}

/* 3. Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.value-card:hover {
    border-bottom-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.v-icon {
    width: 50px;
    height: 50px;
    background: #fff3e0; /* light orange bg */
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

/* 4. Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.team-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Social Overlay on Hover */
.social-overlay {
    position: absolute;
    bottom: -50px; /* hidden initially */
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: 0.3s;
}

.social-overlay a {
    color: #fff;
    transition: 0.2s;
}

.social-overlay a:hover { color: var(--primary-orange); }

.team-card:hover .team-img img { transform: scale(1.1); }
.team-card:hover .social-overlay { bottom: 0; }

.team-info {
    padding: 20px;
}

.team-info h3 { font-size: 1.2rem; margin-bottom: 5px; }
.team-info span { color: var(--primary-orange); font-size: 0.9rem; font-weight: 600; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 { font-size: 2.5rem; }
    .experience-badge { right: 0; bottom: -20px; }
    .zigzag-image { margin-bottom: 40px; }
}




/* ========================================= */
/* MODERN SERVICES STYLES (Bento Grid)       */
/* ========================================= */

/* 1. Modern Hero */
.modern-hero {
    padding: 160px 0 80px;
    background: linear-gradient(to bottom, #fdfbf7, #fff);
    text-align: center;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
    display: block;
}

.hero-headline {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.highlight-text {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

/* 2. Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Base */
.bento-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: var(--primary-orange);
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.bento-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Specific Card Sizes */
.large-card {
    grid-column: span 2;
    grid-row: span 2;
    background-color: #0F172A; /* Dark BG */
    color: #fff;
}

.large-card h3, .large-card p { color: #fff; }
.large-card .bento-icon { background: rgba(255,255,255,0.1); color: #fff; }

.large-card .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    z-index: 1;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 3;
}

.medium-card {
    grid-column: span 1;
}

.dark-card {
    background-color: var(--primary-orange);
    color: #fff;
}
.dark-card h3, .dark-card p, .dark-card .bento-icon { color: #fff; }
.dark-card .bento-icon { background: rgba(255,255,255,0.2); }

.wide-card {
    grid-column: span 3;
    background: #fff;
    border: 1px solid #eee;
}

.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

/* Dashboard Preview in Wide Card */
.dashboard-preview {
    display: flex;
    gap: 15px;
}

.mock-stat {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

.mock-stat span { display: block; font-size: 0.8rem; color: #999; margin-bottom: 5px; }
.mock-stat strong { display: block; font-size: 1.1rem; color: var(--primary-dark); }

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

/* 3. Dark Tech Section */
.tech-dark-section {
    background-color: var(--primary-dark);
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.tech-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tech-label {
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tech-text h2 {
    font-size: 3rem;
    margin: 15px 0;
    color: #fff;
}

.tech-text p {
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 500px;
}

.tech-specs {
    display: flex;
    gap: 40px;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.tech-specs li strong {
    display: block;
    font-size: 1.5rem;
    color: #fff;
}

.tech-specs li span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Pulse Visual */
.pulse-circle {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 87, 34, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--primary-orange);
}

.pulse-circle::before, .pulse-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pulse-circle::after { animation-delay: 1s; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.pulse-circle i {
    width: 50px;
    height: 50px;
}

/* 4. Process Steps (Linear) */
.step-modern-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
}

.step-modern {
    text-align: center;
    flex: 1;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e5e7eb;
    display: block;
    margin-bottom: 10px;
}

.step-modern h4 { margin-bottom: 5px; color: var(--primary-dark); }
.step-modern p { color: var(--text-light); font-size: 0.9rem; }

.step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin-top: 25px;
    margin-left: 10px;
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .large-card, .medium-card, .wide-card {
        grid-column: span 1;
        grid-row: auto;
    }
    .bg-img { display: none; }
    
    .tech-grid { flex-direction: column; text-align: center; gap: 40px; }
    .tech-specs { justify-content: center; }
    
    .step-modern-container { flex-direction: column; gap: 30px; align-items: center; }
    .step-line { display: none; }
}


/* ========================================= */
/* CONTACT GLOBAL STYLES (FIXED HERO)        */
/* ========================================= */

/* 1. Map Hero */
.geo-hero {
    position: relative;
    background-color: var(--primary-dark);
    /* Use min-height to allow expansion on mobile */
    min-height: 500px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    
    /* FIX: Added padding to push content below the fixed header */
    /* 80px (Header) + 60px (Space) = 140px */
    padding-top: 140px;
    padding-bottom: 60px;
    
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Prevents text from getting too wide */
    margin: 0 auto;
}

.geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 87, 34, 0.5);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    background: rgba(0,0,0,0.3);
}

.geo-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.geo-hero p {
    font-size: 1.2rem;
    color: #94a3b8;
}

/* 2. Cards Section (Placed Below Hero) */
.cards-section {
    background-color: #f3f4f6; /* Light gray background */
    padding: 80px 0;
    position: relative;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 0; 
}

.contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft shadow */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-orange);
}

.contact-card.active-card {
    border-top: 5px solid var(--primary-orange);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    color: var(--primary-orange);
    width: 28px;
    height: 28px;
}

.contact-card h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.card-detail {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.card-detail strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.card-detail span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.card-link {
    margin-top: auto;
    text-decoration: none;
    color: var(--primary-orange);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 3. Callback Bar */
.callback-section {
    padding-bottom: 80px;
    background-color: #f3f4f6; /* Match cards section background */
    padding-top: 0; /* Remove top padding to sit flush under cards */
}

.callback-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.cb-text h2 { font-size: 1.8rem; margin-bottom: 5px; color: var(--primary-dark); }
.cb-text p { color: var(--text-light); }

.cb-form-wrapper {
    flex: 1;
    max-width: 450px;
}

.cb-form {
    display: flex;
    gap: 10px;
}

.input-with-icon {
    position: relative;
    flex: 1;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    width: 20px;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.input-with-icon input:focus {
    border-color: var(--primary-orange);
}

/* 4. Directory List */
.directory-section {
    padding: 80px 0;
    background-color: #fff; /* White bg */
}

.directory-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.directory-header h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    white-space: nowrap;
    margin: 0;
}

.line {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.directory-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.dir-item {
    display: flex;
    flex-direction: column;
}

.dir-item span {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.dir-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.dir-item a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .geo-hero {
        padding-top: 120px; /* Adjust padding for mobile header */
        min-height: 400px;
    }
    .geo-hero h1 {
        font-size: 2.5rem;
    }
    .callback-bar { flex-direction: column; text-align: center; }
    .cb-form { flex-direction: column; width: 100%; }
    .cb-form-wrapper { max-width: 100%; width: 100%; }
}