/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --kyc-white: #FCFCFD;
    --kyc-stone: #F5F7FA;
    --kyc-slate: #2D3748;
    --kyc-steel: #4A5568;
    --kyc-ocean: #000000;
    --kyc-teal: #f97c0e;
    --kyc-mint: #81E6D9;
    --kyc-gold: #D4AF37;
    --kyc-silver: #E8E9EB;
    
    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, #000000 0%, #f97c0e 100%);
    --gradient-subtle: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Shadows */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-xl: 40px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--kyc-white);
    color: var(--kyc-slate);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--kyc-ocean);
    margin-bottom: 1rem;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--kyc-ocean);
    opacity: 0.5;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--kyc-slate) 0%, var(--kyc-ocean) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--kyc-steel);
    font-weight: 300;
    line-height: 1.8;
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(252, 252, 253, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(232, 233, 235, 0.8);
    transition: all var(--transition-fast);
}

.nav-scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-subtle);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--kyc-ocean);
}

.nav-logo span {
    color: var(--kyc-teal);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--kyc-steel);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-link.active {
    color: var(--kyc-ocean);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kyc-ocean);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--kyc-ocean);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-ocean);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(10, 94, 139, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 94, 139, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--kyc-ocean);
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-ocean);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(10, 94, 139, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 94, 139, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--kyc-ocean);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--kyc-silver);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-secondary:hover {
    border-color: var(--kyc-ocean);
    background: rgba(10, 94, 139, 0.05);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-subtle);
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background: 
        radial-gradient(circle at 20% 50%, var(--kyc-ocean) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--kyc-teal) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--kyc-mint) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--kyc-ocean);
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-headline {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    opacity: 0;
        margin-top: 17px;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-headline span {
    display: block;
    font-weight: 300;
    color: var(--kyc-teal);
}

.hero-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--kyc-teal), transparent);
    margin: 3rem 0;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--kyc-teal);
}

.hero-divider::before { left: 0; }
.hero-divider::after { right: 0; }

.hero-description {
    font-size: 1.3rem;
    color: var(--kyc-steel);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-ocean);
    color: white;
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .separator {
    opacity: 0.5;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 600px;
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-large);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-large);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ocean);
    opacity: 0.1;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-stats {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--kyc-white);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-large);
    z-index: 2;
    width: 280px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--kyc-ocean);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--kyc-steel);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content {
    padding-left: 2rem;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--kyc-slate);
}

.about-text {
    color: var(--kyc-steel);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-ocean);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--kyc-slate);
}

.feature-content p {
    color: var(--kyc-steel);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== products PAGE STYLES ===== */
.products-categories {
    margin-bottom: 6rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 1rem 2rem;
    background: var(--kyc-stone);
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--kyc-steel);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.category-tab.active,
.category-tab:hover {
    background: var(--gradient-ocean);
    color: white;
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--kyc-white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-medium);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-ocean);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--kyc-slate);
}

.service-description {
    color: var(--kyc-steel);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--kyc-steel);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--kyc-teal);
    font-size: 0.8rem;
}

.service-cta {
    color: var(--kyc-ocean);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-fast);
}

.service-cta:hover {
    gap: 1rem;
}

.service-detail {
    display: none;
}

.service-detail.active {
    display: block;
}

/* ===== JOURNEY PAGE STYLES ===== */
.journey-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    margin-bottom: 6rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.step::after {
    content: '';
    position: absolute;
    top: 100px;
    left: 50px;
    width: 2px;
    height: calc(100% + 4rem);
    background: var(--kyc-silver);
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-content {
    padding: 1rem 0;
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--kyc-slate);
}

.step-description {
    color: var(--kyc-steel);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.step-features {
    list-style: none;
    margin-bottom: 2rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--kyc-steel);
}

.step-features li i {
    color: var(--kyc-teal);
    font-size: 1rem;
}

/* ===== TRUST GRID STYLES (Home Page) ===== */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-content {
    padding-right: 2rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.trust-badge {
    background: var(--kyc-white);
    padding: 2rem;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-medium);
    border: 1px solid rgba(10, 94, 139, 0.1);
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--kyc-ocean);
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--kyc-ocean);
    margin-bottom: 1rem;
}

.badge-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--kyc-steel);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kyc-ocean);
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.trust-logo {
    background: var(--kyc-white);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-medium);
    padding: 1.5rem;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-fast);
}

.trust-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trust-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.trust-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== TRUST PAGE STYLES ===== */
.accreditations {
    margin-bottom: 6rem;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.accreditation-card {
    background: var(--kyc-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-medium);
}

.accreditation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.accreditation-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.accreditation-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--kyc-slate);
}

.accreditation-description {
    color: var(--kyc-steel);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-section {
    background: var(--gradient-subtle);
    padding: 6rem 0;
    border-radius: var(--radius-large);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--kyc-ocean);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--kyc-steel);
    font-weight: 500;
}

.partners {
    margin-top: 6rem;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background: var(--kyc-white);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-medium);
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-fast);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ===== TEAM PAGE STYLES ===== */
.team-categories {
    margin-bottom: 4rem;
}

.team-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.team-tab {
    padding: 1rem 2rem;
    background: var(--kyc-stone);
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--kyc-steel);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.team-tab.active,
.team-tab:hover {
    background: var(--gradient-ocean);
    color: white;
    transform: translateY(-2px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    position: relative;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--kyc-white);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ocean);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.team-member:hover .member-image::before {
    opacity: 0.1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--kyc-slate);
}

.member-role {
    color: var(--kyc-ocean);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-bio {
    color: var(--kyc-steel);
    font-size: 0.9rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    background: var(--kyc-stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kyc-steel);
    transition: all var(--transition-fast);
}

.member-social a:hover {
    background: var(--kyc-ocean);
    color: white;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.contact-info-card {
    background: var(--kyc-white);
    padding: 3rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: all var(--transition-medium);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--kyc-slate);
}

.contact-info-text {
    color: var(--kyc-steel);
    line-height: 1.8;
}

.contact-form-section {
    background: var(--gradient-subtle);
    padding: 6rem;
    border-radius: var(--radius-large);
    margin-bottom: 6rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form .form-group:nth-child(5),
.contact-form .form-group:nth-child(6) {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--kyc-slate);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--kyc-silver);
    border-radius: var(--radius-medium);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--kyc-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--kyc-ocean);
    box-shadow: 0 0 0 3px rgba(10, 94, 139, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    background: var(--gradient-ocean);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    grid-column: span 2;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 94, 139, 0.2);
}

.map-section {
    height: 500px;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--kyc-ocean) 0%, var(--kyc-teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--kyc-slate);
    color: var(--kyc-white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--kyc-mint);
}

.footer-text {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-headline {
        font-size: 4rem;
    }
    
    .about-grid {
        gap: 4rem;
    }
    
    .page-header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .step,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .trust-content {
        padding-right: 0;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-stats {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 2rem;
    }
    
    .step {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step::after {
        left: 40px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-group:nth-child(5),
    .contact-form .form-group:nth-child(6),
    .form-submit {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .about-stats {
        position: absolute !important;
        bottom: 10px !important;
        right: 10px !important;
        width: auto !important;
        margin-top: 0 !important;
        padding: 1.2rem 1.5rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges,
    .trust-logos {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 10rem 0 6rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .category-tabs,
    .team-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab,
    .team-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form-section {
        padding: 3rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .about-stats {
        position: absolute !important;
        bottom: 8px !important;
        right: 8px !important;
        width: auto !important;
        margin-top: 0 !important;
        padding: 1rem 1.2rem !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .about-visual {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* For image logo */
.logo-image {
    height: 40px; /* Adjust based on your logo */
    width: auto;
    display: block;
}

/* For logo with text side by side */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.logo-text span {
    color: #000000;
}

/* For SVG logo */
.logo-svg {
    display: block;
}

/* Navigation Logo */
.nav-logo-img {
    height: 40px; /* Adjust based on your logo */
    width: auto;
    display: block;
}

/* Footer Logo */
.footer-logo-img {
    height: 50px; /* Slightly larger for footer */
    width: auto;
    margin-bottom: 15px;
    display: block;
}


/* Social Media Links Styles */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000000;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background-color: #f97c0e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Specific colors for each platform on hover */
.social-link:nth-child(1):hover { background-color: #1877F2; } /* Facebook */
.social-link:nth-child(2):hover { background-color: #1DA1F2; } /* Twitter */
.social-link:nth-child(3):hover { background-color: #E4405F; } /* Instagram */
.social-link:nth-child(4):hover { background-color: #0077B5; } /* LinkedIn */

/* For dark footer backgrounds */
.footer .social-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer .social-link:hover {
    background-color: white;
    color: #000000;
}



/* Add this to your css/style.css file */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--kyc-white);
    color: var(--kyc-slate);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-large);
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    border-left: 4px solid var(--kyc-teal);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #4CAF50;
}

.notification.error {
    border-left-color: #ff4757;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification.success .notification-icon {
    color: #4CAF50;
}

.notification.error .notification-icon {
    color: #ff4757;
}