/* =========================================
   Ample Capital - Premium Blue Theme
   ========================================= */

:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #3399ff;
    --accent: #ffd700;
    --accent-dark: #cca300;
    --dark: #0a1628;
    --dark-2: #1a2942;
    --text: #1a2942;
    --text-light: #ffffff;
    --text-muted: #6b7c93;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
}

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

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
}

/* Typography */
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; letter-spacing: -2px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

/* =========================================
   Navigation
   ========================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 14px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-logo img {
    height: 42px;
}

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

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.9;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav.scrolled .nav-links a {
    color: var(--text);
}

.nav-cta {
    padding: 10px 24px !important;
    background: var(--accent) !important;
    color: var(--dark) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav.scrolled .menu-toggle span {
    background: var(--dark);
}

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

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

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

/* Mobile Menu - 天空海水渐变背景 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #4A90D9 0%, #7EC8E3 50%, #B8E4F0 100%);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    opacity: 1;
    color: var(--accent);
}

/* =========================================
   Hero Section - 天空海水渐变背景
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
   /* background: linear-gradient(180deg, #4A90D9 0%, #5BA3E0 30%, #7EC8E3 60%, #B8E4F0 100%);*/
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 100;
}

/* Blue Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: linear-gradient(180deg, #292d2d 0%, #1e1e1e 30%, rgb(100 180 230 / 22%) 60%, #3399ff52 100%);*/
}

/* 3D Wave Curves - 3D曲线波浪 */
.wave-curves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    z-index: 5;
}

.wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    animation: waveSlide 12s linear infinite;
}

.wave-svg:nth-child(2) {
    animation: waveSlide 8s linear infinite reverse;
    opacity: 0.6;
    bottom: 10px;
}

.wave-svg:nth-child(3) {
    animation: waveSlide 15s linear infinite;
    opacity: 0.4;
    bottom: 20px;
}

@keyframes waveSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 3D Wave SVG styling - 天空海水波浪 */
.wave-curve {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.wave-curve-1 {
    stroke: rgba(74, 144, 217, 0.7);
    filter: drop-shadow(0 0 15px rgba(74, 144, 217, 0.5));
}

.wave-curve-2 {
    stroke: rgba(126, 200, 227, 0.6);
    filter: drop-shadow(0 0 12px rgba(126, 200, 227, 0.4));
}

.wave-curve-3 {
    stroke: rgba(184, 228, 240, 0.5);
    filter: drop-shadow(0 0 10px rgba(184, 228, 240, 0.3));
}

/* Animated dots along waves */
.wave-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    animation: waveSlide 20s linear infinite;
}

.dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #eef106;
    border-radius: 50%;
    box-shadow: 0 0 12px #c2ee01, 0 0 25px rgba(126, 200, 227, 0.5);
}

.dot:nth-child(1) { top: 30%; left: 10%; animation: dotFloat 3s ease-in-out infinite; }
.dot:nth-child(2) { top: 45%; left: 25%; animation: dotFloat 4s ease-in-out infinite 0.5s; }
.dot:nth-child(3) { top: 60%; left: 40%; animation: dotFloat 3.5s ease-in-out infinite 1s; }
.dot:nth-child(4) { top: 35%; left: 55%; animation: dotFloat 4.5s ease-in-out infinite 1.5s; }
.dot:nth-child(5) { top: 50%; left: 70%; animation: dotFloat 3s ease-in-out infinite 2s; }
.dot:nth-child(6) { top: 40%; left: 85%; animation: dotFloat 4s ease-in-out infinite 0.8s; }

@keyframes dotFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-15px) scale(1.5); opacity: 1; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 40px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 1s ease 0.2s both;
}

.hero h1 {
    color: var(--text-light);
    margin-bottom: 24px;
    animation: fadeUp 1s ease 0.4s both;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.hero h1 span {
    color: var(--accent);
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto 40px;
    animation: fadeUp 1s ease 0.6s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    text-align: left !important;     /* 左对齐 */
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: #ffdf33;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--text-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Footer */
.hero-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    z-index: 10;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(0, 64, 128, 0.7);
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =========================================
   Sections Common
   ========================================= */
.section {
    padding: 100px 60px;
}

.section-gray {
    background: var(--bg-gray);
}

.section-dark {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-header h2 {
    margin-bottom: 18px;
    color: var(--dark);
}

.section-dark .section-header h2 {
    color: var(--text-light);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 450px;
    /*background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);*/
	background: url(/skin/new/d.jpg) no-repeat;
    background-size: cover;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--accent);
    color: var(--dark);
    padding: 24px 36px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .label {
    font-size: 0.8rem;
    font-weight: 600;
}

.about-content h2 {
    margin-bottom: 24px;
    color: var(--dark);
}

.about-content > p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature i {
    width: 44px;
    height: 44px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   Stats Section
   ========================================= */
.stats-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* =========================================
   Philosophy Section
   ========================================= */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
}

.pillar {
    background: var(--bg-white);
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

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

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 1.8rem;
}

.pillar h4 {
    margin-bottom: 14px;
    color: var(--dark);
}

.pillar p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   Focus Section
   ========================================= */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.focus-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.focus-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.focus-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2px;
}

.focus-item h4 {
    margin-bottom: 8px;
    color: var(--dark);
}

.focus-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 40px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: #2e415c;
    padding: 80px 60px 50px;
    color: var(--text-light);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.footer-brand .logo img {
    height: 44px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links h5 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav { padding: 18px 30px; }
    .nav.scrolled { padding: 12px 30px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    
    .mobile-menu { display: flex; }
    
    .section { padding: 80px 30px; }
    .stats-section { padding: 60px 30px; }
    .cta-section { padding: 80px 30px; }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual { order: -1; }
    
    .about-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
    
    .footer { padding: 60px 30px 40px; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; letter-spacing: -1px; }
    h2 { font-size: 1.8rem; }
    
    .hero-content { padding: 0 24px; }
    .hero-footer { padding: 0 24px; bottom: 20px; }
    .hero-scroll { display: none; }
    
    .hero-text { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .stat-number { font-size: 2.8rem; }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* =========================================
   Page Logo Display (Footer)
   ========================================= */
.page-logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.page-logo-display img {
    height: 60px;
    width: auto;
    opacity: 0.9;
}

/* =========================================
   Header / Navigation (Common)
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 60px;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3399ff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3399ff;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, #3399ff 0%, #1e90ff 100%) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #c3ad0f 0%, #ffee22 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 153, 255, 0.4);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Small (for subpages) */
.hero-small {
    height: 60vh;
    min-height: 400px;
}

.hero-small .hero-content {
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* =========================================
   Services Grid
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(51, 153, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(51, 153, 255, 0.1) 0%, rgba(30, 144, 255, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #3399ff;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.9rem;
    color: #6b7c93;
    line-height: 1.7;
}

/* =========================================
   Split Section
   ========================================= */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content .section-header {
    text-align: left;
    margin: 0 0 30px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-list i {
    color: #3399ff;
    font-size: 1.1rem;
    margin-top: 4px;
}

.feature-list strong {
    color: #fff;
}

/* Stats Grid (Dark Section) */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

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

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3399ff;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   Consultation Form
   ========================================= */
.consultation-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3399ff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(51, 153, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7c93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #3399ff 0%, #1e90ff 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-full:hover {
    background: linear-gradient(135deg, #4da6ff 0%, #3399ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(51, 153, 255, 0.35);
}

.btn-white {
    background: #fff;
    color: #0a1628;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* =========================================
   Contact Page
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3399ff;
    margin-bottom: 12px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(51, 153, 255, 0.1) 0%, rgba(30, 144, 255, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3399ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 0.9rem;
    color: #6b7c93;
    line-height: 1.6;
}

.contact-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.9rem;
    color: #6b7c93;
}

.map-section {
    padding: 0 60px 80px;
}

.map-placeholder {
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    color: #fff;
}

.map-content i {
    font-size: 4rem;
    color: #3399ff;
    margin-bottom: 24px;
}

.map-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.map-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.btn-outline {
   background: transparent;
    border: 2px solid #ffd333;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #3399ff;
    color: #fff;
}

/* CTA Section Override */
.cta-section {
   /* background: linear-gradient(135deg, #0a1628 0%, #1a2942 100%);
    padding: 100px 60px;
    text-align: center;*/
	background: url(/skin/new/b.png) no-repeat;
    background-position: 0px -180px;
    background-size: cover;
    padding: 100px 60px;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

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

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3399ff;
    margin-bottom: 24px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3399ff;
}

.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3399ff;
    margin-bottom: 24px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #3399ff;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   Responsive Additional
   ========================================= */
@media (max-width: 1024px) {
    .header {
        padding: 16px 30px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, #0a1628 0%, #1a2942 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        font-size: 1.3rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-form,
    .contact-form-container {
        padding: 30px 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 24px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .map-placeholder {
        padding: 50px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-logo-display img {
        height: 50px;
    }
}
