:root {
    --primary-color: #F46C26;
    /* DATA RECOVERY DOCTOR Orange */
    --secondary-color: #2D2D2D;
    /* Dark Gray */
    --text-color: #444;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --card-bg: linear-gradient(145deg, #ffffff, #fdf5f0);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 20px 40px rgba(244, 108, 38, 0.15);
    --header-height: 80px;
    /* New Brand Colors */
    --brand-red: #E31E24;
    --brand-blue: #0076BE;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: var(--header-height);
    overflow-x: hidden;
    /* Prevent horizontal scroll from full-width elements */
    /* Prevent fixed header overlap */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
header {
    background: var(--white);
    position: fixed;
    /* Changed to fixed for transition */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding-top: 5px;
    padding-bottom: 5px;
}

header.scrolled .top-bar {
    display: none;
    /* Hide top bar on scroll */
}

.top-bar {
    background-color: var(--light-bg);
    border-bottom: 1px solid #eee;
    padding: 0;
    /* Padding handled by accent or container */
    font-size: 13px;
    color: #666;
    /* overflow: hidden; REMOVED to allow dropdowns to show */
    position: relative;
    z-index: 1001;
    /* Ensure above other header elements if needed */
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.top-bar-right-accent {
    position: relative;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* No left border radius needed as it starts from "Need Help" */
}

.top-bar-right-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 2000px;
    /* Extension to screen edge */
    height: 100%;
    background: inherit;
}

.top-bar-right-accent a,
.top-bar-right-accent span,
.top-bar-right-accent .dropdown-trigger {
    color: var(--white) !important;
    margin: 0;
}

.top-bar-right-accent a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

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

/* Top Bar Dropdowns */
.top-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.top-dropdown .dropdown-trigger {
    cursor: pointer;
    font-size: 13px;
    color: #666;
    margin-left: 0;
}

.top-dropdown:hover .dropdown-trigger {
    color: var(--primary-color);
}

.top-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    /* Align right to prevent overflow */
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    border-radius: 4px;
    z-index: 1100;
    padding: 10px 0;
    text-align: left;
}

.top-dropdown:hover .top-dropdown-menu {
    display: block;
    animation: fadeIn 0.3s;
}

.top-dropdown-menu a {
    display: block;
    padding: 8px 15px;
    color: #444;
    font-size: 13px;
    margin: 0;
    text-decoration: none;
    transition: background 0.2s;
}

/* Fix for invisible text inside accent wrapper */
.top-bar-right-accent .top-dropdown-menu a {
    color: #444 !important;
}

.top-dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

.top-bar-right-accent .top-dropdown-menu a:hover {
    color: var(--primary-color) !important;
}

/* Country Menu Specific */
.country-menu {
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
}

.country-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Scrollbar for country menu */
.country-menu::-webkit-scrollbar {
    width: 6px;
}

.country-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.country-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.country-menu::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.main-header {
    height: 70px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* New Left Group */
.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Space between Logo and Nav */
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 18px;
    color: var(--secondary-color);
    cursor: pointer;
}

.status-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.status-link:hover {
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-icon {
        height: 35px;
    }

    .logo-text-img {
        height: 28px;
    }
}

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

.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    transition: color 0.3s;
    text-decoration: none;
    padding: 10px 0;
}

.nav-links>li>a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Mega Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-top: 4px solid var(--primary-color);
    min-width: 700px;
    /* Wider for better spacing */
    z-index: 1001;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns for Data Recovery */
    gap: 40px;
    border-radius: 0 0 4px 4px;
}

.dropdown:hover .dropdown-menu {
    display: grid;
}

.dropdown-menu.two-col {
    grid-template-columns: repeat(2, 1fr);
    min-width: 450px;
}

.dropdown-menu.five-col {
    grid-template-columns: repeat(5, 1fr);
    min-width: 1100px;
    /* Wider for 5 columns */
    left: -200px;
    /* Adjust positioning to center better */
}

.dropdown-col h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.dropdown-col a.rich-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
    border-radius: 6px;
    padding-left: 10px;
    /* Reset padding */
}

.dropdown-col a.rich-link::before {
    display: none;
    /* Remove chevron for rich links */
}

.dropdown-col a.rich-link i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
    min-width: 25px;
    text-align: center;
}

.dropdown-col a.rich-link div {
    display: flex;
    flex-direction: column;
}

.dropdown-col a.rich-link strong {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.dropdown-col a.rich-link span {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    line-height: 1.3;
}

.dropdown-col a.rich-link:hover {
    background-color: #fcece4;
    /* Light orange bg */
    padding-left: 10px;
    /* No slide */
}

.dropdown-col a.rich-link:hover strong {
    color: var(--primary-color);
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.cta-btn:hover {
    background-color: #d95a1a;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/images/hero-lab.jpg');
    /* Fallback */
    background-color: #0f1c2d;
    /* Dark navy fallback */
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}


/* Section Common */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* Professional Service Detail Design */

/* Breadcrumbs */
.breadcrumbs-container {
    background-color: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.breadcrumbs-container a {
    color: #6c757d;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs-container a:hover {
    color: var(--primary-color);
}

.breadcrumbs-container .sep {
    margin: 0 8px;
    color: #adb5bd;
    font-size: 10px;
}

.breadcrumbs-container .current {
    color: #343a40;
    font-size: 13px;
    font-weight: 600;
}

/* Sticky Section Navigation */
.section-nav-wrapper {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0;
}

.section-nav .nav-item {
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.section-nav .nav-item:hover,
.section-nav .nav-item.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: #fff5f0;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Add breathing room on sides */
}

.service-page-layout {
    display: flex;
    gap: 60px;
    /* Increased gap for less clutter */
    margin-bottom: 80px;
    align-items: flex-start;
    /* Crucial for sticky sidebar */
    position: relative;
}

.service-content {
    flex: 7;
}

.service-sidebar {
    flex: 3;
    position: sticky;
    top: 100px;
    /* More offset from top */
    align-self: flex-start;
    height: fit-content;
}

/* Typography & General */
.service-content h1 {
    font-size: 30px;
    color: #2b2b2b;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.section-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 50px 0;
}

/* Hero Image Wrapper */
.service-hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-hero-image img {
    display: block;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

/* Sub Services Cards */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.sub-service-card {
    background: var(--card-bg);
    border: 1px solid #eee;
    padding: 30px 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    box-shadow: var(--card-shadow);
}

.sub-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-top-color: var(--primary-color);
}

.sub-service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.sub-service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Problems List */
.problems-list {
    margin-top: 25px;

}

.problem-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    /* Card style for problems too */
    border: 1px solid #f0f0f0;
    border-radius: 6px;
}

.problem-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 2px;
    background: #fff5f0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.problem-item h4 {
    font-size: 17px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

/* Errors */
.red-bullets.error-list {
    margin-top: 20px;
    padding: 20px;
    background: #fff0f0;
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.red-bullets li {
    color: #d32f2f;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.red-bullets li::before {
    content: "•";
    margin-right: 8px;
    font-size: 18px;
}

/* Process Steps */
.process-steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-top-color: var(--primary-color);
}

.step-num {
    background: var(--primary-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(244, 108, 38, 0.4);
}

.step-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.step-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

/* Experience Box */
.experience-box {
    background: linear-gradient(135deg, #fdfbf9 0%, #fff 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.experience-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.stat-item {
    border-right: 1px solid #eee;
}

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

.stat-item strong {
    font-size: 32px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-weight: 800;
}

/* Reviews */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.review-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-card p {
    font-size: 14px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reviewer {
    font-weight: 700;
    font-size: 13px;
    color: #333;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* FAQ */
.faq-list {
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    padding: 15px 0;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    padding-bottom: 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    display: none;
}

.faq-item:hover .faq-answer {
    display: block;
}

/* Sidebar Form - Enhanced */
.enquiry-form-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-top: 5px solid var(--primary-color);
}

.enquiry-form-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.enquiry-form-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.enquiry-form-card input,
.enquiry-form-card textarea {
    background: #fdfdfd;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.enquiry-form-card input:focus,
.enquiry-form-card textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: #fff;
}

.enquiry-form-card textarea {
    height: 80px;
    resize: none;
}

.full-width {
    width: 100%;
}

.cta-btn.full-width {
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(244, 108, 38, 0.3);
}

.privacy-note {
    text-align: center;
    margin-top: 15px !important;
    font-size: 11px !important;
    color: #888;
}

.sidebar-box {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-box h4 {
    margin-bottom: 15px;
}

.check-list li {
    margin-bottom: 10px;
    list-style: none;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f9f9f9;
}

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

.check-list i {
    color: #28a745;
    margin-right: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.section-title p {
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-top-color: var(--primary-color);
}

.service-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin: 0 auto 25px;
    background: #fff5f0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #d95a1a;
    transform: translateX(3px);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Business Section */
.bg-light {
    background-color: #fdf5f0;
    /* Soft DATA RECOVERY DOCTOR Pearl */
}

.bg-white-highlight {
    background-color: #ffffff;
}

.bg-brand-highlight {
    background: linear-gradient(135deg, #fffcf9 0%, #fdf5f0 100%);
}

/* Scenarios */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.scenario-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.scenario-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scenario-item i {
    font-size: 30px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.scenario-item span {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Why Us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: left;
    border-top: 4px solid transparent;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
    border-top-color: var(--primary-color);
}

.why-card i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Media Logos */
.media-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.6;
    font-size: 24px;
    font-weight: bold;
}


/* Stats */
.stats-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    margin: 20px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info strong {
    display: block;
    color: var(--secondary-color);
}

.client-info span {
    font-size: 13px;
    color: #888;
}

/* Clients */
.clients-section {
    text-align: center;
}

/* Product Landing Page Styles */
.product-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-hero h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.product-hero .hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.product-hero .hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-hero .hero-badges img {
    height: 40px;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.product-features-section {
    padding: 80px 0;
}

.feature-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-box {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* 3-Step Process */
.process-section {
    background: #fdfbf9;
    padding: 80px 0;
    text-align: center;
}

.process-steps-visual {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    position: relative;
}

.process-steps-visual::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.process-step-item {
    position: relative;
    z-index: 1;
    background: #fdfbf9;
    padding: 0 20px;
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(244, 108, 38, 0.2);
}

/* Tech Specs */
.tech-specs {
    padding: 80px 0;
    background: #fff;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.spec-column {
    padding: 40px;
}

.spec-column:first-child {
    border-right: 1px solid #eee;
    background: #fafafa;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    display: flex;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.spec-list li strong {
    width: 140px;
    color: #333;
    flex-shrink: 0;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.comparison-table {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f4f4f4;
    font-weight: 700;
    color: #333;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    padding-left: 40px;
    font-weight: 600;
}

.check-icon {
    color: #28a745;
}

.cross-icon {
    color: #dc3545;
}

/* Footer Header with Gradient */
.footer-header {
    background: linear-gradient(90deg, #d32f2f 0%, #b71c1c 100%);
    /* Red gradient */
    padding: 25px 0;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h2 {
    color: #fff;
    font-size: 36px;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    display: inline-block;
    line-height: 1;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 5px 0 0 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-badges img {
    background: #fff;
    padding: 4px;
    border-radius: 4px;
    opacity: 0.9;
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr repeat(6, 1fr) 1.2fr;
    /* Optimized columns */
    gap: 25px;
    margin-bottom: 20px;
}

@media (max-width: 1300px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .footer-col-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col-large {
        grid-column: span 2;
    }

    .footer-header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

.footer-col {
    min-width: 0;
    word-wrap: break-word;
}

.footer-col h4 {
    color: #333;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

/* Reach Us Specifics */
.footer-col-large p {
    color: #555 !important;
    line-height: 1.6;
}

.footer-col-large strong {
    color: #333;
}

/* Newsletter Box */
.newsletter-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.newsletter-box h5 {
    color: #333;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
}

.newsletter-box input {
    background: #fdfdfd;
    border: 1px solid #ddd;
    color: #333;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f9f9f9;
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social a i {
    color: #777;
    font-size: 18px;
    transition: color 0.2s;
}

.footer-social a:hover i {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    margin: 4px 0;
    font-size: 12px;
    color: #888;
}

/* Custom Tabs for Tech Specs */
.custom-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    gap: 10px;
}

.tab-link {
    padding: 12px 25px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: #666;
    font-size: 16px;
    transition: all 0.3s;
}

.tab-link:hover {
    color: var(--primary-color);
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

.tab-pane {
    max-width: 900px;
    margin: 0 auto;
}

/* Accordion for FAQ */
.accordion-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #fff;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fafafa;
    color: #555;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    padding: 20px;
    max-height: 1000px;
    /* Accommodate content */
    border-top: 1px solid #eee;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ========================
   ENHANCED FOOTER STYLES
   ======================== */

.footer-header {
    background: linear-gradient(90deg, #1a2530 0%, #2c3e50 100%);
    padding: 30px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand h2 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #fff;
}

.footer-brand p {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.footer-brand span {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
    text-align: center;
    min-width: 80px;
}

.badge-item i {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.badge-item span {
    font-size: 10px;
    display: block;
    line-height: 1.2;
}

/* Footer Grid */
.footer-main {
    background-color: #f8f9fa;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e9ecef;
}

.footer-grid {
    display: flex;
    /* Changed from grid to flex for uneven columns */
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 140px;
    /* Ensures columns wrap decently */
}

/* Specific widths for layout matching */
.footer-col-large {
    flex: 2;
    /* Takes double space */
    min-width: 280px;
    margin-right: 20px;
}

.footer-col h4 {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

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

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

.footer-col ul li a {
    color: #555;
    font-size: 13px;
    transition: all 0.2s;
    text-decoration: none;
}

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

/* Text-only lists (locations) */
.footer-col ul.text-list li {
    color: #666;
    font-size: 13px;
    cursor: default;
}

/* Contact Info */
.company-address {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-methods {
    font-size: 13px;
    margin-bottom: 20px;
}

.contact-methods a {
    color: #333;
    font-weight: 600;
}

/* Newsletter */
.newsletter-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.newsletter-box h5 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.input-group {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.input-group input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.input-group button.cta-btn {
    padding: 8px 15px;
    font-size: 12px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.privacy-check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 11px;
    color: #777;
    margin-top: 8px;
}

.privacy-check input {
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #2c3e50;
    color: #adb5bd;
    padding: 30px 0;
    font-size: 13px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top */
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-info p {
    margin-bottom: 5px;
    line-height: 1.5;
}

.copyright-info a {
    color: #fff;
    text-decoration: underline;
}

.legal-links a {
    color: #adb5bd;
    margin: 0 5px;
    font-size: 12px;
}

.legal-links a:hover {
    color: #fff;
}

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

.footer-social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s;
}

.footer-social-icons a:hover {
    background: var(--primary-color);
}

.security-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 10px;
}

.disclaimer-text {
    text-align: center;
    font-size: 11px;
    color: #6c757d;
    margin-top: 15px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        gap: 20px;
    }

    .footer-col {
        min-width: 45%;
        /* 2 columns per row */
        flex: auto;
    }

    .footer-col-large {
        min-width: 100%;
        /* Full width */
    }
}

@media (max-width: 768px) {
    .footer-header-content {
        justify-content: center;
        text-align: center;
    }

    .footer-col {
        min-width: 100%;
        /* Stack everything */
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .legal-links {
        margin: 10px 0;
    }
}

/* =========================================
   PREMIUM UI ENHANCEMENTS (2026)
   ========================================= */

:root {
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 1rem;
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Fluid Typography */
html {
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: #374151;
    /* Slate 700 */
    background-color: #FAFAFA;
    /* Slightly warmer white */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.025em;
    /* Tight tracking for modern feel */
    color: #111827;
    /* Gray 900 */
}

/* Modern Container */
.container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

/* HERO UPGRADE */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(244, 108, 38, 0.15), transparent 40%);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    color: #ffffff !important;
    /* Force white text */
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    opacity: 0.9;
    color: #ffffff !important;
    /* Force white text */
}

/* CARD MODERNIZATION */
.service-card,
.step-card,
.why-card,
.testimonial-card,
.sub-service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card:hover,
.step-card:hover,
.why-card:hover,
.testimonial-card:hover,
.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(244, 108, 38, 0.2);
}

.service-icon,
.step-num,
.why-card i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* BUTTONS */
.cta-btn {
    box-shadow: 0 4px 6px -1px rgba(244, 108, 38, 0.4);
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(244, 108, 38, 0.5);
}

/* MOBILE NAVIGATION OVERRIDES */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        /* JS will toggle this */
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .dropdown-menu {
        position: static;
        /* Stack in mobile */
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        min-width: 100%;
        display: none;
        /* Click to show */
    }

    .dropdown.active .dropdown-menu {
        display: grid;
        grid-template-columns: 1fr !important;
        /* Force 1 col */
        gap: 20px;
    }

    .mobile-menu-toggle {
        display: block !important;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    .header-left {
        gap: 15px;
    }

    .top-bar .container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* SCROLL ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE GRID FIXES */
.services-grid,
.why-us-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Better mobile fitting */
    gap: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}


/* =========================================
   PREMIUM FORMS & DETAILS (2026)
   ========================================= */

/* Global Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    background-color: #fff;
    font-size: 15px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(244, 108, 38, 0.1);
}

/* Enhanced Cards */
.sidebar-box,
.enquiry-form-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.enquiry-form-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #111827;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Footer Polish */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-header {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 40px 0;
}

.footer-brand h2 {
    color: white;
    letter-spacing: 0.5px;
}

/* Utility Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 100px 0 60px;
    background: #fff;
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pricing-hero p {
    max-width: 800px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card img {
    height: 60px;
    margin-bottom: 25px;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Who We Are Section */
.who-we-are {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.who-we-content {
    position: relative;
    z-index: 2;
}

.who-we-are h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}

/* FAQ Section */
.pricing-faq {
    padding: 80px 0;
    background: #fdfdfd;
}

.faq-row {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.faq-left {
    flex: 1;
    min-width: 300px;
}

.faq-right {
    flex: 1.5;
    min-width: 400px;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: 0.3s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #666;
    font-size: 15px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

/* Support CTA Box */
.urgent-support-section {
    padding: 60px 0;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.support-cta-box {
    background: #001529;
    /* Deep Navy from screenshot */
    color: var(--white);
    padding: 40px 60px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
}

.support-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.support-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.support-text h4 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--white) !important;
}

.support-text p {
    opacity: 0.9;
    color: var(--white) !important;
}

.support-action .cta-btn {
    background: var(--white) !important;
    color: #001529 !important;
    font-weight: 700 !important;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.support-action .cta-btn:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .support-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}