/* LNGaSolutions - Professional Styles */
:root {
    --deep-ocean: #0a1628;
    --midnight-blue: #122240;
    --steel-blue: #1e3a5f;
    --lng-cyan: #00d4aa;
    --lng-cyan-light: #33e0bc;
    --lng-cyan-dark: #00a885;
    --ice-white: #f0f7ff;
    --silver: #b8c5d6;
    --warm-white: #fafcff;
    --accent-gold: #c9a227;
    --text-primary: #0a1628;
    --text-secondary: #4a5e78;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--text-primary); line-height: 1.7; overflow-x: hidden; }

/* News Ticker */
.news-ticker { background: linear-gradient(90deg, var(--deep-ocean), var(--midnight-blue)); color: white; padding: 0.6rem 0; overflow: hidden; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; border-bottom: 1px solid rgba(0, 212, 170, 0.2); }
.ticker-label { position: absolute; left: 0; top: 0; bottom: 0; background: var(--lng-cyan); color: var(--deep-ocean); padding: 0.6rem 1.25rem; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; z-index: 10; display: flex; align-items: center; gap: 0.5rem; }
.ticker-label::after { content: ''; position: absolute; right: -20px; top: 0; bottom: 0; width: 40px; background: linear-gradient(90deg, var(--lng-cyan), transparent); }
.ticker-dot { width: 8px; height: 8px; background: var(--deep-ocean); border-radius: 50%; animation: tickerPulse 1.5s infinite; }
@keyframes tickerPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.ticker-wrapper { margin-left: 140px; overflow: hidden; }
.ticker-content { display: flex; animation: ticker 60s linear infinite; white-space: nowrap; }
.ticker-content:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; padding: 0 2.5rem; font-size: 0.85rem; color: var(--silver); }
.ticker-item::before { content: '◆'; color: var(--lng-cyan); margin-right: 0.75rem; font-size: 0.5rem; }
.ticker-item strong { color: white; margin-right: 0.5rem; }

/* Navigation */
.nav { position: fixed; top: 38px; left: 0; right: 0; z-index: 1000; padding: 1rem 2rem; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(10, 22, 40, 0.98); backdrop-filter: blur(20px); padding: 0.75rem 2rem; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); top: 0; }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--lng-cyan), var(--lng-cyan-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 1rem; letter-spacing: -1px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; color: white; letter-spacing: -0.5px; }
.logo-text span { color: var(--lng-cyan); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255, 255, 255, 0.9); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; position: relative; padding: 0.5rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--lng-cyan); transition: width 0.3s ease; }
.nav-links a:hover { color: var(--lng-cyan); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--lng-cyan); color: var(--deep-ocean); padding: 0.7rem 1.5rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--lng-cyan-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 26px; height: 2px; background: white; transition: all 0.3s ease; border-radius: 2px; }

/* Hero Section */
.hero { min-height: 100vh; background: linear-gradient(165deg, var(--deep-ocean) 0%, var(--midnight-blue) 50%, var(--steel-blue) 100%); position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 38px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 20% 80%, rgba(0, 212, 170, 0.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 40%); pointer-events: none; }
.hero-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(0, 212, 170, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 170, 0.02) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.6; }
.hero-container { max-width: 1400px; margin: 0 auto; padding: 9rem 2rem 5rem; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content { animation: fadeInUp 1s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0, 212, 170, 0.1); border: 1px solid rgba(0, 212, 170, 0.3); padding: 0.5rem 1rem; border-radius: 50px; color: var(--lng-cyan); font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--lng-cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4.5vw, 3.75rem); font-weight: 600; color: white; line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero h1 span { color: var(--lng-cyan); }
.hero-description { font-size: 1.1rem; color: var(--silver); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.8; }
.hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.stat { text-align: left; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--lng-cyan); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--silver); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--lng-cyan); color: var(--deep-ocean); padding: 1rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; font-size: 0.95rem; }
.btn-primary:hover { background: var(--lng-cyan-light); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0, 212, 170, 0.35); }
.btn-secondary { background: transparent; color: white; padding: 1rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; border: 2px solid rgba(255, 255, 255, 0.3); transition: all 0.3s ease; font-size: 0.95rem; }
.btn-secondary:hover { border-color: var(--lng-cyan); color: var(--lng-cyan); background: rgba(0, 212, 170, 0.1); }
.hero-visual { position: relative; animation: fadeInUp 1s ease 0.3s forwards; opacity: 0; }
.hero-image-container { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4); }
.hero-image { width: 100%; height: 480px; object-fit: cover; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--steel-blue), var(--midnight-blue)); }
.hero-image svg { width: 180px; height: 180px; }
.hero-image-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.9) 100%); }
.floating-card { position: absolute; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); padding: 1.25rem 1.5rem; border-radius: 14px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); animation: float 6s ease-in-out infinite; }
.floating-card-1 { bottom: 2rem; left: -2rem; animation-delay: 0s; }
.floating-card-2 { top: 2rem; right: -2rem; animation-delay: 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floating-card-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--lng-cyan), var(--lng-cyan-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; color: white; font-size: 1.1rem; }
.floating-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.floating-card p { font-size: 0.8rem; color: var(--text-secondary); }

/* Section Styles */
section { padding: 6rem 2rem; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { display: inline-block; background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(0, 212, 170, 0.05)); color: var(--lng-cyan-dark); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.75rem); font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -0.5px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Services Section */
.services { background: var(--ice-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: white; border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s ease; border: 1px solid rgba(0, 0, 0, 0.06); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--lng-cyan), var(--lng-cyan-dark)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(0, 212, 170, 0.05)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.5rem; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-secondary); margin-bottom: 1.25rem; font-size: 0.95rem; }
.service-list { list-style: none; }
.service-list li { padding: 0.4rem 0; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; }
.service-list li::before { content: '→'; color: var(--lng-cyan); font-weight: 600; flex-shrink: 0; }

/* Training Section */
.training { background: linear-gradient(165deg, var(--deep-ocean), var(--midnight-blue)); color: white; position: relative; overflow: hidden; }
.training::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 90% 10%, rgba(0, 212, 170, 0.1) 0%, transparent 40%), radial-gradient(ellipse at 10% 90%, rgba(201, 162, 39, 0.05) 0%, transparent 40%); }
.training .section-tag { background: rgba(0, 212, 170, 0.2); color: var(--lng-cyan); }
.training .section-title { color: white; }
.training .section-subtitle { color: var(--silver); }
.training-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.training-features { display: grid; gap: 1.25rem; }
.training-feature { display: flex; gap: 1rem; padding: 1.25rem; background: rgba(255, 255, 255, 0.03); border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.3s ease; }
.training-feature:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(0, 212, 170, 0.3); }
.training-feature-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--lng-cyan), var(--lng-cyan-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.training-feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.training-feature p { color: var(--silver); font-size: 0.9rem; }
.training-clients { background: rgba(255, 255, 255, 0.03); border-radius: 20px; padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.08); }
.training-clients h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 0.5rem; }
.training-clients > p { color: var(--silver); margin-bottom: 1.5rem; font-size: 0.9rem; }
.client-logos { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.client-logo { background: rgba(255, 255, 255, 0.08); padding: 0.6rem 1rem; border-radius: 6px; font-size: 0.8rem; color: var(--silver); font-weight: 500; transition: all 0.3s ease; }
.client-logo:hover { background: rgba(0, 212, 170, 0.15); color: var(--lng-cyan); }
.training-stat { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; gap: 1rem; }
.training-stat-number { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 700; color: var(--lng-cyan); line-height: 1; }
.training-stat-text { color: var(--silver); font-size: 0.9rem; }

/* Track Record Section */
.track-record { background: white; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.project-card { background: var(--ice-white); border-radius: 14px; padding: 1.75rem; transition: all 0.3s ease; border: 1px solid transparent; }
.project-card:hover { transform: translateY(-4px); border-color: var(--lng-cyan); box-shadow: 0 15px 40px rgba(0, 212, 170, 0.1); }
.project-client { font-size: 0.8rem; color: var(--lng-cyan-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.4rem; }
.project-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.6rem; }
.project-description { color: var(--text-secondary); font-size: 0.9rem; }

/* News Section */
.news-section { background: var(--ice-white); }
.news-section .section-tag { background: rgba(201, 162, 39, 0.15); color: #a68523; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.news-card { background: white; border-radius: 16px; overflow: hidden; transition: all 0.3s ease; border: 1px solid rgba(0, 0, 0, 0.06); }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.news-card-image { height: 160px; background: linear-gradient(135deg, var(--steel-blue), var(--midnight-blue)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.news-card-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, rgba(0,212,170,0.1), rgba(201,162,39,0.1)); }
.news-card-image svg { width: 50px; height: 50px; opacity: 0.4; }
.news-card-content { padding: 1.5rem; }
.news-card-date { font-size: 0.75rem; color: var(--lng-cyan-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.news-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.4; }
.news-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.news-card-link { color: var(--lng-cyan-dark); font-weight: 600; font-size: 0.85rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.3s ease; }
.news-card-link:hover { color: var(--lng-cyan); }
.news-loading { text-align: center; padding: 3rem; color: var(--text-secondary); grid-column: 1 / -1; }
.news-loading-spinner { width: 40px; height: 40px; border: 3px solid var(--ice-white); border-top-color: var(--lng-cyan); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.news-footer { text-align: center; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }
.news-updated { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; }
.news-source-link { color: var(--lng-cyan-dark); font-weight: 600; text-decoration: none; transition: color 0.3s ease; }
.news-source-link:hover { color: var(--lng-cyan); }

/* About Section */
.about { background: var(--ice-white); }
.about-content { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: start; }
.about-image { position: relative; }
.about-image-main { width: 100%; height: 480px; background: linear-gradient(135deg, var(--steel-blue), var(--midnight-blue)); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.about-experience { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--lng-cyan); color: var(--deep-ocean); padding: 1.5rem 2rem; border-radius: 14px; box-shadow: 0 20px 50px rgba(0, 212, 170, 0.3); }
.about-experience-number { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 700; line-height: 1; }
.about-experience-text { font-weight: 600; font-size: 0.9rem; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1.25rem; line-height: 1.2; }
.about-text h2 span { color: var(--lng-cyan-dark); }
.about-text > p { color: var(--text-secondary); margin-bottom: 1.75rem; font-size: 1.05rem; }

/* Credentials */
.credentials-section { margin-bottom: 1.75rem; }
.credentials-section h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.credentials-section h3::before { content: ''; width: 4px; height: 22px; background: var(--lng-cyan); border-radius: 2px; }
.credential-card { background: white; border-radius: 14px; padding: 1.25rem; margin-bottom: 0.85rem; border: 1px solid rgba(0, 0, 0, 0.05); transition: all 0.3s ease; }
.credential-card:hover { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); border-color: var(--lng-cyan); }
.credential-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.6rem; }
.credential-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(0, 212, 170, 0.05)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.credential-title { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; margin-bottom: 0.2rem; }
.credential-subtitle { color: var(--lng-cyan-dark); font-size: 0.85rem; font-weight: 500; }
.credential-date { color: var(--text-secondary); font-size: 0.8rem; }
.credential-details { margin-left: 60px; padding-top: 0.4rem; }
.credential-badge { display: inline-flex; background: var(--lng-cyan); color: var(--deep-ocean); padding: 0.3rem 0.75rem; border-radius: 50px; font-size: 0.7rem; font-weight: 600; margin-right: 0.4rem; }
.credential-description { color: var(--text-secondary); font-size: 0.85rem; margin-top: 0.6rem; }

/* Certifications */
.certifications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.85rem; margin-top: 1.25rem; }
.certification-item { background: white; border-radius: 10px; padding: 1rem; text-align: center; border: 1px solid rgba(0, 0, 0, 0.05); transition: all 0.3s ease; }
.certification-item:hover { border-color: var(--lng-cyan); transform: translateY(-3px); }
.certification-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--lng-cyan), var(--lng-cyan-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.6rem; color: white; font-size: 1.1rem; }
.certification-title { font-weight: 600; color: var(--text-primary); font-size: 0.85rem; margin-bottom: 0.2rem; }
.certification-year { color: var(--text-secondary); font-size: 0.75rem; }
.leadership-roles { background: white; border-radius: 14px; padding: 1.25rem; border: 1px solid rgba(0, 0, 0, 0.05); }
.leadership-roles h4 { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.85rem; }
.leadership-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.leadership-item { background: var(--ice-white); padding: 0.45rem 0.85rem; border-radius: 6px; font-size: 0.8rem; color: var(--text-primary); font-weight: 500; }

/* Contact */
.contact { background: linear-gradient(165deg, var(--deep-ocean), var(--midnight-blue)); color: white; position: relative; }
.contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 170, 0.08) 0%, transparent 50%); }
.contact-container { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.contact .section-tag { background: rgba(0, 212, 170, 0.2); color: var(--lng-cyan); }
.contact .section-title { color: white; }
.contact .section-subtitle { color: var(--silver); margin-bottom: 2.5rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 1.75rem; transition: all 0.3s ease; }
.contact-card:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(0, 212, 170, 0.3); }
.contact-icon { width: 54px; height: 54px; background: linear-gradient(135deg, var(--lng-cyan), var(--lng-cyan-dark)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.3rem; }
.contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.contact-card p { color: var(--silver); font-size: 0.9rem; }
.contact-card a { color: var(--lng-cyan); text-decoration: none; transition: color 0.3s ease; }
.contact-card a:hover { color: var(--lng-cyan-light); }
.contact-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--lng-cyan); color: var(--deep-ocean); padding: 1.15rem 2.25rem; border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; }
.contact-cta:hover { background: var(--lng-cyan-light); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 212, 170, 0.35); }

/* Footer */
.footer { background: var(--deep-ocean); color: var(--silver); padding: 2.5rem 2rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--lng-cyan), var(--lng-cyan-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.85rem; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: white; }
.footer-text { font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { color: var(--silver); text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--lng-cyan); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-visual { order: 0; max-width: 500px; margin: 0 auto; }
    .hero-description { margin: 0 auto 2.5rem; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .floating-card-1 { left: 0; }
    .floating-card-2 { right: 0; }
    .training-content { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .about-image { max-width: 450px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto 2.5rem; }
}

@media (max-width: 768px) {
    .news-ticker { display: none; }
    .nav { top: 0; }
    .nav.scrolled { top: 0; }
    .hero { padding-top: 0; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--deep-ocean); flex-direction: column; padding: 1.5rem; gap: 1rem; }
    .nav-links.active { display: flex; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat { text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-image { height: 320px; }
    .about-image-main { height: 350px; }
    .about-experience { bottom: -1rem; right: 1rem; padding: 1rem 1.25rem; }
    .about-experience-number { font-size: 2.25rem; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .credential-details { margin-left: 0; margin-top: 0.75rem; }
    .certifications-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
}
