﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1e3a8a; /* Deep Corporate Blue */
    --secondary-color: #059669; /* Emerald Green */
    --accent-color: #d97706; /* Golden Amber */
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --bg-main: #f4f4f5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-soft: 0 10px 30px -5px rgba(30, 58, 138, 0.1);
    --shadow-hover: 0 20px 40px -5px rgba(30, 58, 138, 0.2);
    --radius-md: 12px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Header */
header {
    background: #ffffff;
    border-bottom: 2px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 4px; /* Corporate sharp edges */
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #172554;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-accent {
    background: var(--accent-color);
    color: #fff;
    width: 100%;
}

.btn-accent:hover {
    background: #b45309;
}

/* Hero */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.95), rgba(30, 58, 138, 0.7)), url('https://picsum.photos/seed/pobanohero/1920/1080') no-repeat center center/cover;
    color: var(--text-light);
    padding: 100px 0;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 25px;
    color: #ffffff;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: #e2e8f0;
    font-weight: 300;
}

/* Corporate Cards Section */
.random-section {
    padding: 80px 0;
    background: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.corporate-card {
    background: #ffffff;
    padding: 50px 30px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    text-align: center;
}

.corporate-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--secondary-color);
}

.corporate-card i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.corporate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.corporate-card p {
    color: #64748b;
    font-size: 1rem;
}

/* About & Features */
.about-section, .features-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.about-container, .features-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-container {
    flex-direction: row-reverse;
}

.about-text, .features-text {
    flex: 1;
}

.about-text h2, .features-text h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after, .features-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

.about-text p, .features-text p {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 20px;
}

.features-text ul {
    list-style: none;
    margin-top: 30px;
}

.features-text li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #1e293b;
}

.features-text i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.about-image, .features-image {
    flex: 1;
}

.about-image img, .features-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--primary-color);
    background-image: radial-gradient(circle at top right, #172554 0%, var(--primary-color) 70%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 40px;
    color: #64748b;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: #475569;
}

.checkbox-group a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 30px;
}

.form-success i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Timeline / Process */
.random-section-2 {
    padding: 100px 0;
    background: #ffffff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.timeline-step {
    padding: 30px 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-main);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 2px dashed var(--accent-color);
}

.timeline-step h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-step p {
    color: #64748b;
    font-size: 0.95rem;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.faq-container {
    max-width: 850px;
}

details {
    background: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

summary {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    outline: none;
    list-style-position: inside;
}

details p {
    margin-top: 15px;
    color: #475569;
    padding-left: 20px;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h4 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 9999;
    border: 1px solid #e2e8f0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    font-size: 0.95rem;
    color: #334155;
    flex: 1;
}

/* Legal Pages Wrapper */
.legal-wrapper {
    max-width: 900px;
    margin: 80px auto;
    background: #fff;
    padding: 70px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.legal-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--bg-main);
    padding-bottom: 20px;
}

.legal-wrapper h2 {
    margin: 40px 0 20px;
    font-size: 1.6rem;
}

.legal-wrapper p, .legal-wrapper ul {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #334155;
}

.legal-wrapper ul {
    margin-left: 25px;
}

/* Contact Page Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow-soft);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container, .features-container {
        flex-direction: column;
        gap: 50px;
    }
    .form-wrapper {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 20px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .legal-wrapper {
        padding: 40px 20px;
        margin: 40px 15px;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .cards-grid {
        margin-top: 0;
    }
}
