/* Font Variables */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --primary-color: #0F2C59; /* Deep Blue - Trust */
    --secondary-color: #D4AF37; /* Gold - Premium/Investment */
    --accent-color: #E8F1F5; /* Light Blue/Grey - Backgrounds */
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.text-danger { color: #e74c3c; }
.text-success { color: #2ecc71; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-sm {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-primary-sm {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: url('../img/hero.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 44, 89, 0.4), rgba(15, 44, 89, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #f0f0f0;
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 2.5rem;
}

/* Problem / Solution */
.row {
    display: flex;
    gap: 50px;
    align-items: center;
}

.col-lg-6 {
    flex: 1;
}

.feature-list {
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.solution-box {
    background-color: var(--accent-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    margin-top: 30px;
}

.solution-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.image-col {
    position: relative;
}

.rounded-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--white);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card h4 {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--secondary-color);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Team */
.team-row {
    justify-content: center;
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 400px;
    flex: 1;
}

.team-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-info .position {
    display: block;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.socials {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.socials a {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 10px;
}

.socials a:hover {
    color: var(--secondary-color);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    padding: 60px;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 30px;
}

.contact-form-box {
    padding: 60px;
    background: var(--white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    padding: 50px 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-links a {
    color: #888;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .row {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block; /* Need to implement hamburger JS if real */
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .stat-card {
        right: 0;
        left: 0;
        margin: auto;
        width: fit-content;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}
