/* ================================
   艾利德律师事务所 - iLEAD LAW GROUP
   Professional Law Firm Website
   ================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Deep Navy & Gold */
    --primary-color: #0a1628;
    --primary-light: #1a2d4a;
    --primary-dark: #050c15;
    --secondary-color: #c9a227;
    --secondary-light: #ddb94a;
    --secondary-dark: #a68a1f;
    --accent-color: #2563eb;

    /* Text Colors */
    --text-dark: #1a202c;
    --text-body: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0a1628;

    /* Border Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Font Families */
    --font-heading: 'Noto Serif SC', 'Microsoft YaHei', serif;
    --font-body: 'Roboto', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1280px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ================================
   Top Bar
   ================================ */
.top-bar {
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 14px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--secondary-color);
}

.top-bar-left a {
    color: var(--text-white);
}

.top-bar-left a:hover {
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
}

.top-bar-right a:hover,
.top-bar-right a.lang-active {
    color: var(--text-white);
    background: var(--secondary-color);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ================================
   Main Header
   ================================ */
.main-header {
    background: var(--bg-white);
    padding: 15px 0;
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: none;
}

.main-header.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 12px 18px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary-color);
    background: var(--bg-light);
}

nav ul li a.nav-cta {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 8px;
}

nav ul li a.nav-cta:hover {
    background: var(--secondary-dark);
    color: var(--text-white);
}

/* Dropdown Menu */
.has-dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    padding: 12px 0;
    border: 1px solid var(--border-color);
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

nav ul li .dropdown a {
    padding: 12px 20px;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

nav ul li .dropdown a i {
    width: 20px;
    color: var(--secondary-color);
}

nav ul li .dropdown a:hover {
    background: var(--bg-light);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ================================
   Hero Section - Full Screen
   ================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=1080&fit=crop') center center / cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 45, 74, 0.88) 50%, rgba(10, 22, 40, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
    padding: 40px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--secondary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .title-line {
    display: block;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.hero-feature i {
    color: var(--secondary-color);
    font-size: 18px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    opacity: 0.7;
    font-size: 13px;
}

.hero-scroll a:hover {
    opacity: 1;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

.btn-block {
    width: 100%;
}

/* ================================
   Trust Badges Section
   ================================ */
.trust-badges {
    background: var(--bg-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: var(--transition);
}

.badge-item:hover {
    opacity: 1;
}

.badge-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.badge-item:hover img {
    filter: grayscale(0%);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 22px;
}

.badge-item span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   Stats Section
   ================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--secondary-color);
    font-size: 24px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   Section Headers
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light .section-title,
.section-header.light .section-desc {
    color: var(--text-white);
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Services Section
   ================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.service-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-image {
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.3));
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.service-badge {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 26px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 8px;
}

.service-features li i {
    color: var(--secondary-color);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
}

.service-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ================================
   Why Choose Us Section
   ================================ */
.why-us-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-tag {
    text-align: left;
}

.why-us-content .section-title {
    text-align: left;
    font-size: 38px;
}

.why-us-desc {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature {
    display: flex;
    gap: 20px;
}

.why-feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 22px;
    flex-shrink: 0;
}

.why-feature-content h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.why-feature-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.why-us-image {
    position: relative;
}

.why-us-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-us-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    padding: 40px 30px;
}

.overlay-content {
    color: var(--text-white);
    text-align: center;
}

.overlay-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.overlay-text {
    font-size: 16px;
    opacity: 0.9;
}

.image-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}

.image-badge i {
    font-size: 28px;
}

.image-badge span {
    font-size: 13px;
    font-weight: 600;
}

/* ================================
   Industry Section
   ================================ */
.industry-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 28px;
}

.industry-stat {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.industry-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ================================
   Testimonials Section
   ================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.author-location {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 5px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--secondary-color);
    color: var(--text-white);
}

.btn-outline-gold i {
    font-size: 18px;
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--bg-light);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 15px;
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=600&fit=crop') center center / cover no-repeat;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(26, 45, 74, 0.9));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.8;
}

.cta-features i {
    color: var(--secondary-color);
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box h3,
.contact-form-box h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-intro,
.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-text a {
    color: var(--text-body);
}

.contact-text a:hover {
    color: var(--secondary-color);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Contact Form */
.contact-form-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ================================
   Footer
   ================================ */
.main-footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

.footer-credit {
    margin-top: 8px;
}

.footer-credit a {
    color: var(--secondary-color);
}

/* ================================
   Back to Top Button
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: none;
    border-radius: 12px;
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-dark);
    transform: translateY(-5px);
}

/* ================================
   Animations
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ================================
   Page Headers (for inner pages)
   ================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--text-white);
}

.breadcrumb span {
    opacity: 0.5;
}

/* ================================
   Team Section
   ================================ */
.team {
    padding: var(--section-padding) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ================================
   Video Section
   ================================ */
.videos {
    padding: var(--section-padding) 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* ================================
   Service Detail Page
   ================================ */
.service-detail {
    padding: var(--section-padding) 0;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    margin: 50px 0 20px;
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary-light);
    margin: 35px 0 15px;
}

.service-content p {
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.service-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-content ul li {
    color: var(--text-body);
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.service-sidebar {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    margin-top: 50px;
}

.service-sidebar h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-sidebar ul {
    list-style: none;
    padding: 0;
}

.service-sidebar ul li {
    margin-bottom: 12px;
}

.service-sidebar ul li a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.service-sidebar ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* ================================
   About Page
   ================================ */
.about-page {
    padding: var(--section-padding) 0;
}

.about-intro-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 18px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
}

.about-image-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 14px;
    opacity: 0.9;
}

.mission-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 18px;
    color: var(--text-body);
    line-height: 2;
}

.values-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 45px 35px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text-white);
    font-size: 32px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.service-areas-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-area-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.service-area-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-area-card .area-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 28px;
}

.service-area-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ================================
   Services List Page
   ================================ */
.services-list-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-list-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    border: 1px solid var(--border-color);
}

.service-list-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.service-list-image {
    width: 200px;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.service-list-content {
    padding: 30px;
    flex: 1;
}

.service-list-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-list-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ================================
   Team Page
   ================================ */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.team-photo-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 80px;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    font-size: 14px;
}

.team-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary-color);
    color: var(--text-white);
}

/* ================================
   Videos Page
   ================================ */
.videos-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--primary-color);
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 60px;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.video-info .video-date {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================
   Contact Page
   ================================ */
.contact-page-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: var(--secondary-color);
}

.contact-map-wrapper {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-card .form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 36px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-image {
        order: -1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12.5px);
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .top-bar {
        padding: 8px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    .top-bar-left {
        display: none;
    }

    .top-bar .container {
        justify-content: flex-end;
    }

    .main-header {
        top: 36px;
        padding: 12px 0;
    }

    .main-header.scrolled {
        top: 36px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        display: none;
        border-top: 1px solid var(--border-color);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 15px;
        border-radius: 8px;
    }

    nav ul li .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    nav ul li:hover .dropdown {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-scroll {
        display: none;
    }

    .badges-grid {
        gap: 25px;
    }

    .badge-item img,
    .badge-icon {
        height: 40px;
        width: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .service-image {
        min-height: 200px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-box {
        padding: 25px;
    }

    .image-badge {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        justify-content: center;
    }
}

/* ================================
   Team Page - New Styles
   ================================ */
.team-intro-section {
    padding: 80px 0 60px;
    background: var(--bg-white);
}

.team-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-intro-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
}

.team-members-section {
    padding: 60px 0 var(--section-padding);
    background: var(--bg-light);
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.team-member-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    opacity: 0;
    transition: var(--transition);
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.member-info {
    padding: 35px;
    text-align: center;
}

.member-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.member-divider {
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.member-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.member-expertise span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.team-strengths-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strength-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.strength-card:hover {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary-color);
    font-size: 32px;
}

.strength-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.strength-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ================================
   Videos Page - New Styles
   ================================ */
.videos-intro-section {
    padding: 80px 0 60px;
    background: var(--bg-white);
}

.videos-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.videos-intro-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

.videos-grid-section {
    padding: 60px 0 var(--section-padding);
    background: var(--bg-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-categories-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--bg-light);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-card:hover {
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 30px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ================================
   Contact Page - New Styles
   ================================ */
.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    display: block;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-map {
    margin-top: 35px;
}

.contact-map h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-map h4 i {
    color: var(--secondary-color);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.why-contact-section .section-header h2 {
    color: var(--text-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 32px;
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.why-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.contact-faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.faq-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
}

.faq-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--secondary-color);
}

.btn-full {
    width: 100%;
}

/* ================================
   Service Detail Pages
   ================================ */
.service-intro-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-intro-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-intro-content h1 span {
    color: var(--secondary-color);
}

.service-intro-content .lead {
    font-size: 20px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-intro-image {
    position: relative;
}

.service-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.service-intro-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 16px;
    z-index: -1;
}

/* Service Intro Centered Layout */
.service-intro-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-intro-centered .section-badge {
    display: inline-block;
    margin-bottom: 15px;
}

.service-intro-centered h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 25px;
}

.service-intro-centered h2 span {
    color: var(--secondary-color);
}

.service-intro-centered .intro-text {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 35px;
}

.service-highlights-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-bottom: 35px;
}

.service-highlights-centered .highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-body);
}

.service-highlights-centered .highlight i {
    color: var(--secondary-color);
    font-size: 18px;
}

@media (max-width: 768px) {
    .service-intro-centered h2 {
        font-size: 32px;
    }

    .service-highlights-centered {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Service Why Section */
.service-why-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--secondary-color);
    font-size: 32px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Service Offerings Section */
.service-offerings-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offering-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.offering-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 26px;
    margin-bottom: 20px;
}

.offering-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offering-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--text-white);
}

.service-process-section .section-header h2 {
    color: var(--text-white);
}

.service-process-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), rgba(201, 162, 39, 0.3));
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
    text-align: right;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px var(--primary-color);
}

.process-content {
    width: calc(50% - 60px);
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.process-step:nth-child(odd) .process-content {
    margin-right: 60px;
}

.process-step:nth-child(even) .process-content {
    margin-left: 60px;
}

.process-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.process-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Related Services Section */
.related-services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.related-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.related-card:hover .related-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--secondary-color);
}

.related-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 28px;
    transition: var(--transition);
}

.related-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.related-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.related-card .btn-link {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.related-card:hover .btn-link {
    gap: 10px;
}

/* ================================
   Footer Grid Layout
   ================================ */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-subtitle {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* ================================
   Additional Responsive Styles
   ================================ */
@media (max-width: 1200px) {
    .why-cards-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-intro-image {
        order: -1;
    }
    .strengths-grid,
    .categories-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .team-members-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step,
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: left;
        padding-left: 80px;
    }

    .process-number {
        left: 0;
        transform: none;
    }

    .process-content,
    .process-step:nth-child(odd) .process-content,
    .process-step:nth-child(even) .process-content {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .strengths-grid,
    .categories-grid,
    .faq-grid,
    .why-grid,
    .why-cards-grid,
    .related-grid,
    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-image img {
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .service-intro-content h1 {
        font-size: 32px;
    }

    .service-intro-image::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .member-info {
        padding: 25px;
    }

    .member-info h3 {
        font-size: 24px;
    }

    .strength-icon,
    .category-icon,
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* ================================
   Forms Download Page (fd- prefix)
   ================================ */

/* Stats Bar */
.fd-stats {
    background: var(--primary-color);
    padding: 0;
}

.fd-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.fd-stat-item {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
}

.fd-stat-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.fd-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
}

.fd-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* How To Steps */
.fd-howto {
    background: var(--bg-light);
    padding: 36px 0;
    border-bottom: 1px solid var(--border-color);
}

.fd-howto-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fd-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fd-step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.fd-step-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.fd-step-arrow {
    color: var(--text-muted);
    font-size: 12px;
    padding: 0 4px;
}

/* Section */
.fd-section {
    padding: 60px 0;
}

.fd-section.fd-section-alt {
    background: var(--bg-light);
}

/* Section Header */
.fd-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.fd-section-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
}

.fd-section-icon.fd-icon-green {
    background: linear-gradient(135deg, #065f46, #059669);
}

.fd-section-icon.fd-icon-purple {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
}

.fd-section-info {
    flex: 1;
}

.fd-section-info h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.fd-section-info h2 span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 12px;
}

.fd-section-info p {
    font-size: 15px;
    color: var(--text-light);
}

.fd-section-count {
    background: var(--bg-gray);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Form List */
.fd-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Form Item Row */
.fd-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.fd-section-alt .fd-item {
    border-color: #e2e8f0;
}

.fd-item:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.fd-item:hover .fd-btn {
    background: var(--secondary-color);
    color: #fff;
}

.fd-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.fd-item-icon.fd-icon-green {
    background: linear-gradient(135deg, #065f46, #059669);
    color: #6ee7b7;
}

.fd-item-icon.fd-icon-purple {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
    color: #c4b5fd;
}

.fd-item-body {
    flex: 1;
    min-width: 0;
}

.fd-item-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.fd-item-body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.fd-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fd-item-tags span {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-gray);
    padding: 3px 10px;
    border-radius: 4px;
}

.fd-item-action {
    flex-shrink: 0;
}

.fd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

/* Notice */
.fd-notice {
    padding: 30px 0;
}

.fd-notice-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 16px 24px;
}

.fd-notice-box i {
    font-size: 20px;
    color: #d97706;
    min-width: 24px;
}

.fd-notice-box p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* CTA */
.fd-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.fd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.fd-cta-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #fff;
    margin-bottom: 8px;
}

.fd-cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
}

.fd-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .fd-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .fd-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .fd-stats-grid {
        flex-wrap: wrap;
    }
    .fd-stat-item {
        flex: 1 0 40%;
        padding: 20px 10px;
    }
    .fd-stat-divider {
        display: none;
    }
    .fd-howto-steps {
        flex-wrap: wrap;
        gap: 12px;
    }
    .fd-step-arrow {
        display: none;
    }
    .fd-step {
        flex: 1 0 40%;
        justify-content: center;
    }
    .fd-section-header {
        flex-wrap: wrap;
    }
    .fd-section-count {
        order: -1;
        width: 100%;
        text-align: center;
    }
    .fd-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 14px;
    }
    .fd-item-action {
        width: 100%;
    }
    .fd-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
    .fd-cta-text h2 {
        font-size: 26px;
    }
    .fd-notice-box {
        flex-direction: column;
        text-align: center;
    }
}
