/* ============================================
   V2 - Modern (Corporate Professional)
   Navy/Dark Blue + Amber accent
   ============================================ */

:root {
    --navy: #1a2332;
    --navy-light: #243044;
    --navy-dark: #0f1620;
    --accent: #e8a838;
    --accent-hover: #d4952e;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Labels & Titles */
.v2-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
}

.v2-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.v2-text {
    color: var(--gray-600);
    margin-bottom: 16px;
    max-width: 540px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
}

.brand-logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--navy-light);
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu-overlay a {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

/* Hero V2 */
.hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 60%, #2a4060 100%);
    overflow: hidden;
}

.hero-v2-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    object-fit: contain;
    opacity: 0.08;
    z-index: 1;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
}

.hero-v2-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(232, 168, 56, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(232, 168, 56, 0.05) 0%, transparent 50%);
}

.hero-v2-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-v2-badge {
    display: inline-block;
    background: rgba(232, 168, 56, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(232, 168, 56, 0.25);
}

.hero-v2-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--accent);
}

.hero-v2-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 560px;
}

.hero-v2-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons V2 */
.btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

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

.btn-v2-primary:hover {
    background: var(--accent-hover);
    color: var(--navy);
}

.btn-v2-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-v2-ghost:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-v2-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-v2-dark:hover {
    background: var(--navy-light);
    color: var(--white);
}

.btn-v2-accent {
    background: var(--accent);
    color: var(--navy);
}

.btn-v2-accent:hover {
    background: var(--accent-hover);
    color: var(--navy);
}

.btn-v2-full {
    width: 100%;
    justify-content: center;
}

.hero-v2-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* About V2 */
.about-v2 {
    padding: 100px 0;
    background: var(--white);
}

.about-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-v2-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.v2-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.v2-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.about-v2-visual {
    position: relative;
    height: 400px;
}

.about-v2-card {
    position: absolute;
    background: var(--navy);
    color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-v2-card:first-child {
    top: 0;
    left: 0;
    width: 220px;
}

.about-v2-card-accent {
    bottom: 0;
    right: 0;
    width: 240px;
    background: var(--accent);
    color: var(--navy);
}

.about-v2-card-number {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.about-v2-card-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Services V2 */
.services-v2 {
    padding: 100px 0;
    background: var(--off-white);
}

.services-v2-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-v2-header .v2-text {
    margin: 0 auto;
}

.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-v2-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-v2-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.service-v2-card-lg {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.service-v2-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
}

.service-v2-card-lg:hover .service-v2-number {
    color: var(--accent);
}

.service-v2-icon-box {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-v2-icon-box svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.service-v2-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-v2-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.service-v2-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

/* Solutions V2 */
.solutions-v2 {
    padding: 100px 0;
    background: var(--white);
}

.solutions-v2-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.solutions-v2-left .v2-text {
    margin-bottom: 30px;
}

.solution-v2-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-200);
}

.solution-v2-item:last-child {
    border-bottom: none;
}

.solution-v2-tag {
    display: inline-block;
    background: rgba(232, 168, 56, 0.15);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.solution-v2-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.solution-v2-item p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Partners V2 */
.partners-v2 {
    padding: 50px 0;
    background: var(--gray-100);
    text-align: center;
}

.partners-v2-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.partners-v2-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-v2 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 1px;
}

/* Contact V2 */
.contact-v2 {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-v2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-v2-details {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-v2-item {
    display: flex;
    gap: 15px;
}

.contact-v2-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-v2-item strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-v2-item p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.map-v2-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-v2-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

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

.form-v2-group {
    margin-bottom: 20px;
}

.form-v2-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-v2-group input,
.form-v2-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s;
    background: var(--off-white);
}

.form-v2-group input:focus,
.form-v2-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

/* Footer V2 */
.footer-v2 {
    background: var(--navy-dark);
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.5);
}

.footer-v2-content {
    text-align: center;
}

.footer-v2-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-v2-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
}

.brand-name-light {
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}

.footer-v2-brand p {
    margin-top: 8px;
    font-size: 14px;
}

.footer-v2-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.footer-v2-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-v2-copy {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .v2-title {
        font-size: 34px;
    }

    .hero-v2-title {
        font-size: 44px;
    }

    .services-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-v2-card-lg {
        grid-column: span 2;
    }

    .solutions-v2-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-overlay.show {
        display: flex;
    }

    .hero-v2-title {
        font-size: 34px;
    }

    .hero-v2-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .about-v2-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-v2-visual {
        height: 250px;
    }

    .services-v2-grid {
        grid-template-columns: 1fr;
    }

    .service-v2-card-lg {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .contact-v2-wrapper {
        grid-template-columns: 1fr;
    }

    .form-v2-row {
        grid-template-columns: 1fr;
    }

    .v2-title {
        font-size: 28px;
    }

    .about-v2-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-v2-title {
        font-size: 28px;
    }

    .hero-v2-actions {
        flex-direction: column;
    }

    .btn-v2 {
        width: 100%;
        justify-content: center;
    }

    .contact-v2-form-wrap {
        padding: 25px;
    }
}
