/* Base Styles & Variables */
:root {
    --primary-color: #0B1A30;
    --orange-color: #F9590F;
    --text-color: #0B1A30;
    --text-light: rgba(11, 26, 48, 0.75);
    --bg-color: #ffffff;
    --bg-gray: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography Colors */
.text-orange {
    color: var(--orange-color);
}
.text-white {
    color: #fff;
}
.bg-dark-blue {
    background-color: var(--primary-color);
}
.bg-orange {
    background-color: var(--orange-color);
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex: 1;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.header-nav a {
    color: var(--primary-color);
    transition: color 0.2s, border-bottom 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--orange-color);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: var(--shadow);
    z-index: 1000;
    border-radius: var(--radius);
    padding: 10px 0;
    border: 1px solid var(--border-color);
}

.nav-dropdown-menu a {
    color: var(--text-color);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background-color: var(--bg-gray);
    color: var(--orange-color);
    border-bottom: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.header-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-dark-blue {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

.btn-dark-blue:hover {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.btn-link {
    display: inline-block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--orange-color);
    margin-left: 16px;
}

.btn-link:hover {
    color: var(--orange-color);
}

/* Hero Slanted */
.hero-slanted {
    position: relative;
    height: 520px;
    max-width: 1600px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-left {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: #fff;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.hero-left-content {
    max-width: 550px;
    padding-right: 60px;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange-color);
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.hero-subtitle .dot {
    color: var(--text-light);
    margin: 0 4px;
}

.hero-left-content h1 {
    font-size: 46px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-right {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60%;
    z-index: 1;
    background: #fff;
}

.hero-collage {
    display: flex;
    height: 100%;
    padding: 0 40px 0 0; /* Leave space for sidebar */
    gap: 8px;
    background: #fff;
}

.collage-main {
    flex: 1.2;
    height: 100%;
}
.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.collage-top {
    flex: 1;
}
.collage-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collage-bottom {
    flex: 1;
    display: flex;
    gap: 8px;
}
.collage-bottom img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.hero-sidebar-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: #fff;
    z-index: 5;
    border-left: 1px solid var(--border-color);
}

.hero-right-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(11, 26, 48, 0.5);
    white-space: nowrap;
}

/* Info Bar */
.info-bar {
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.info-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}
.info-item:last-child {
    border-right: none;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.info-text span {
    font-size: 13px;
    color: var(--text-light);
}

/* Services Cards Section */
.our-services {
    padding: 40px 0 0;
    background: #fff;
}

.section-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Service Banners (Small Landscape Layout - Scrollable) */
.services-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 60px;
    overflow-x: auto;
    padding-bottom: 24px;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.services-list::-webkit-scrollbar {
    display: none;
}

/* Grid layout for "View All" state */
.services-list.show-all-grid {
    flex-wrap: wrap !important;
    justify-content: flex-start;
    overflow: visible !important;
}

.service-card-l {
    display: flex;
    flex-direction: row;
    flex: 0 0 362px; /* Adjusted to fit exactly 4 banners per row */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
    height: 210px; /* Reduced from 260px to make image area squarer */
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card-l::before {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    width: 65%;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
    z-index: 2;
}

/* Flat Card for Raw Mockup Tests */
.service-card-flat {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.service-card-flat::before {
    display: none;
}
.service-card-flat img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* changed from cover to contain to avoid cropping the mockup's native border */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

/* No-slope variation (straight vertical split) */
.service-card-l.no-slope::before {
    clip-path: none;
    width: 52%; /* Give text a bit more space, exactly vertical line */
}
.service-card-l.no-slope .card-l-content {
    flex: 0 0 52%;
}
.service-card-l.no-slope .card-l-img {
    width: 48%;
}

.service-card-l:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-l-content {
    flex: 0 0 55%;
    padding: 16px 12px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    z-index: 3;
    background: transparent;
    position: relative;
}

.card-l-title {
    font-size: 18px; /* Slightly smaller to fit 210px height */
    line-height: 1.1;
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.card-l-line {
    display: none;
}

.card-l-desc {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 10px;
    line-height: 1.4;
}

.card-l-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
}

.card-l-list li {
    padding: 2px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    font-size: 9px;
}

.card-l-list li i {
    margin-right: 6px;
    font-size: 10px;
}

.card-l-btn {
    align-self: flex-start;
    border: 1.5px solid #E0B09E;
    color: var(--primary-color);
    padding: 3px 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 8px;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: all 0.2s;
    margin-top: 6px;
}

.card-l-btn:hover {
    background: var(--orange-color);
    border-color: var(--orange-color);
    color: #fff;
}

.card-l-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 1;
}

.card-l-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right; /* Focuses on the right side where objects typically are */
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* --- Who We Serve --- */
.who-we-serve {
    padding: 40px 20px;
}
.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.serve-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}
.serve-card:hover {
    transform: translateY(-5px);
}
.serve-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.serve-card-content {
    padding: 30px;
}
.serve-card-content h3 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.serve-card-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}
.serve-list {
    list-style: none;
    padding: 0;
}
.serve-list li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.serve-list li i {
    margin-top: 3px;
}

/* --- How We Work --- */
.how-we-work {
    padding: 40px 20px;
    background: #fdfdfd;
}
.hww-zigzag {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0;
}
.hww-row {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hww-row.reverse {
    flex-direction: row-reverse;
}
.hww-image-wrap {
    flex: 1;
    position: relative;
}
.hww-image-wrap img {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}
.hww-step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--orange-color);
    color: white;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}
.hww-row.reverse .hww-step-number {
    left: auto;
    right: -20px;
}
.hww-content {
    flex: 1;
}
.hww-content h4 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.hww-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .hww-row, .hww-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hww-step-number {
        top: -15px;
        left: 20px;
        right: auto !important;
    }
    .hww-image-wrap img {
        height: 250px;
    }
}

/* --- Success Stories --- */
.success-stories {
    padding: 40px 20px 0px 20px; /* Reduced bottom padding to remove extra space before footer */
}
.gallery-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; /* Thinner gap (layout thickness) */
}

.gallery-modern-card {
    position: relative;
    border-radius: 12px; /* Restored rounded edges, but more subtle */
    overflow: hidden;
    height: 320px;
    box-shadow: none;
    cursor: pointer;
}

.gallery-modern-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-card:hover img {
    transform: scale(1.08);
}

.gallery-modern-card:hover .gallery-modern-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-modern-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.6s 0.1s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.5;
    transform: translateY(15px);
    transition: transform 0.6s 0.2s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-btn {
    display: inline-block;
    color: var(--orange-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(15px);
    transition: transform 0.6s 0.3s cubic-bezier(0.25, 1, 0.25, 1);
}

.gallery-modern-card:hover .gallery-modern-overlay h4,
.gallery-modern-card:hover .gallery-modern-overlay p,
.gallery-modern-card:hover .gallery-modern-btn {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hww-line { display: none; }
    .hww-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
    .serve-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-modern-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hww-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; }
    .gallery-modern-grid { grid-template-columns: 1fr; }
    .gallery-modern-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    .gallery-modern-overlay h4,
    .gallery-modern-overlay p,
    .gallery-modern-btn {
        transform: translateY(0);
    }
}

/* --- CTA Banner --- */
.cta-banner {
    background-color: var(--dark-blue);
    padding: 70px 20px;
    margin-top: 20px;
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.cta-content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}
.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    max-width: 600px;
    line-height: 1.5;
}
.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-secondary-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-secondary-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: #fff;
    padding: 60px 24px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo-row {
    margin-bottom: 40px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column a {
    display: block;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--orange-color);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}
.social-icons a:hover {
    border-color: var(--orange-color);
    color: var(--orange-color);
}

.contact-info-footer p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-light);
}

/* Custom Banners Section */
.detailed-services {
    padding: 60px 0 0;
    background: #fff;
}

.custom-banner {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin: 0 auto 40px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    height: 480px;
}

.banner-left {
    width: 60%;
    padding: 60px;
    position: relative;
    z-index: 2;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-quote-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    align-self: flex-start;
    transition: all 0.2s;
}

.btn-quote-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.banner-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.banner-divider {
    width: 60px;
    height: 4px;
    background: var(--orange-color);
    margin-bottom: 24px;
}

.banner-desc {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 24px;
    max-width: 80%;
}

.banner-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner-list li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-floating-card {
    position: absolute;
    bottom: 40px;
    right: 25%;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--border-color);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-left {
        width: 100%;
        clip-path: none;
        background: rgba(255, 255, 255, 0.9);
    }
    .hero-right {
        width: 100%;
    }
    .hero-slanted {
        height: auto;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    .info-item {
        flex: 1 1 40%;
        border: none;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    .header-nav, .header-action {
        display: none;
    }
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding-bottom: 80px;
}
.faq-container {
    width: 100%;
    margin: 0;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 0;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--orange-color);
}
.faq-icon {
    font-size: 16px;
    color: var(--orange-color);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 25px 0;
    opacity: 1;
}
.faq-answer p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Interactive Hover Accordion (Who We Serve) */
.serve-accordion {
    display: flex;
    width: 100%;
    height: 650px;
    gap: 10px;
    margin-bottom: 50px;
}

.serve-accordion-item {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.serve-accordion-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
    transition: all 1.2s ease;
}

.serve-accordion-item:hover {
    flex: 3;
}

.serve-accordion-item:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}

.serve-accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.serve-accordion-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 1.2s ease;
}

.serve-accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 20px;
    transition: all 1.2s ease;
}

.serve-accordion-item:hover .serve-accordion-icon {
    background: var(--primary-color);
}

.serve-accordion-item:hover .serve-accordion-content h3 {
    margin-bottom: 20px;
}

.serve-accordion-hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.25, 1);
    transform: translateY(20px);
}

.serve-accordion-item:hover .serve-accordion-hidden {
    opacity: 1;
    max-height: 300px;
    transform: translateY(0);
}

.serve-accordion-hidden p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.serve-accordion-hidden ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serve-accordion-hidden li {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.serve-accordion-hidden li i {
    color: var(--orange-color);
}

@media (max-width: 991px) {
    .serve-accordion {
        flex-direction: column;
        height: 1050px;
    }
    .serve-accordion-item {
        flex: 1;
    }
    .serve-accordion-item:hover {
        flex: 2;
    }
    .serve-accordion-content {
        padding: 25px;
    }
    .serve-accordion-hidden p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .serve-accordion-hidden li {
        margin-bottom: 6px;
    }
}
/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Animations and Minor Fixes */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.sticky-whatsapp {
    animation: pulse 2s infinite;
}

/* Timeline Connected Flow */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.timeline-line {
    position: absolute;
    left: 40px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    background: #e2e8f0;
    z-index: 1;
}
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}
.timeline-marker {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.timeline-step:hover .timeline-marker {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}
.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-grow: 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-step:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}
.timeline-icon {
    font-size: 32px;
    color: var(--orange-color);
    margin-bottom: 15px;
}
.timeline-content h4 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}
.timeline-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .timeline-line { left: 30px; }
    .timeline-marker { width: 60px; height: 60px; font-size: 18px; }
    .timeline-content { padding: 20px; }
    .timeline-content::before { top: 20px; }
}

/* AMC Package Enhancements */
.amc-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amc-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

/* Stats Item Hover */
.stat-item {
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: scale(1.1);
}

/* Testimonial Hover */
.testimonial-card {
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
:root {
    --dark-blue: #0B1A30;
}
.text-dark-blue {
    color: var(--dark-blue) !important;
}
.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

/* Products Page Styles */
.banner-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start;
    margin-top: 20px;
}

.category-pill {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.category-pill:hover {
    color: var(--orange-color);
}

/* Contact Page Styles */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

@media(max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
}

.minimal-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media(max-width: 600px) {
    .minimal-form {
        grid-template-columns: 1fr;
    }
}

.form-group-minimal {
    display: flex;
    flex-direction: column;
}

.form-group-minimal input,
.form-group-minimal select,
.form-group-minimal textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    color: var(--dark-blue);
    transition: border-color 0.3s;
}

.form-group-minimal input:focus,
.form-group-minimal select:focus,
.form-group-minimal textarea:focus {
    outline: none;
    border-bottom-color: var(--orange-color);
}

.form-group-minimal input::placeholder,
.form-group-minimal textarea::placeholder {
    color: #94a3b8;
}

.form-group-minimal select:invalid {
    color: #94a3b8;
}

.product-category {
    padding-top: 80px;
    margin-bottom: 20px;
}
.product-category-header {
    text-align: left;
    margin-bottom: 40px;
}

.product-category-header .section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-category-header .category-desc {
    font-size: 16px;
    color: #666;
    margin: 0;
    border-left: 4px solid var(--orange-color);
    padding-left: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.product-card {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-container {
    width: 100%;
    height: 250px;
    background-color: #f8fafc;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.btn-product-enquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(11, 26, 48, 0.2);
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

.btn-product-enquiry i {
    margin-right: 8px;
    font-size: 15px;
}

.btn-product-enquiry:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 26, 48, 0.15);
}

@media(max-width: 768px) {
    .subnav-container {
        justify-content: flex-start;
    }
}
