@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary-dark: #0A0F1E;
    --secondary: #0D2B35;
    --accent-gold: #C9A84C;
    --surface: #FFFFFF;
    --bg-light: #F4F6FA;
    --text-primary: #1A1A2E;
    --text-muted: #6B7280;
    --border-light: #E5E7EB;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-dark {
    background-color: var(--primary-dark);
    color: var(--surface);
}

.section-dark h2, .section-dark h3 {
    color: var(--surface);
}

.section-dark p {
    color: #A0AEC0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-white {
    background-color: var(--surface);
}

/* Typography Utilities */
.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #B39540;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--surface);
    color: var(--surface);
}

.btn-outline:hover {
    background-color: var(--surface);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: var(--surface);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

header.scrolled .logo-text,
header.scrolled .nav-links a {
    color: var(--primary-dark);
}

header.scrolled .logo-tagline {
    color: var(--text-muted);
}

header.scrolled .hamburger span {
    background-color: var(--primary-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--surface);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #A0AEC0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--surface);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--surface);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.pexels.com/photos/12272848/pexels-photo-12272848.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    overflow: hidden;
    padding-top: 15rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 30, 0.90); /* Very dark corporate overlay */
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--surface);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #A0AEC0;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-brands {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.hero-brands span {
    color: #A0AEC0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--accent-gold);
}

.stat-item {
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ventures Section */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.venture-card {
    background-color: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.venture-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.venture-icon svg {
    width: 30px;
    height: 30px;
}

.industry-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--bg-light);
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.venture-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.venture-desc {
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.geo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.venture-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.venture-link:hover {
    gap: 0.8rem;
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background-color: var(--surface);
    padding: 3rem 2rem;
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
}

.values-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

/* Why FTS Group */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
}

.trust-item h4 {
    font-size: 1.2rem;
    font-family: var(--font-body);
}

.trust-item p {
    font-size: 0.95rem;
}

/* Leadership Section */
.leadership-content {
    display: flex;
    justify-content: center;
}

.founder-card {
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--border-light);
    max-width: 800px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.founder-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--bg-light);
    border: 3px solid var(--surface);
    box-shadow: 0 0 0 2px var(--accent-gold);
    overflow: hidden;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: var(--accent-gold);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--surface);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--accent-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #DEF7EC;
    color: #03543F;
    border: 1px solid #31C48D;
}

.form-message.error {
    display: block;
    background-color: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #F8B4B4;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
}

/* Footer */
footer {
    background: url('https://images.pexels.com/photos/6950103/pexels-photo-6950103.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    position: relative;
    color: var(--surface);
    padding: 4rem 0 2rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 30, 0.92);
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #A0AEC0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.footer-middle {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    flex-wrap: wrap;
}

.footer-venture {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-venture-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--surface);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
}

.footer-venture-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-venture h5 {
    color: var(--surface);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.footer-venture a {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #A0AEC0;
    font-size: 0.9rem;
}

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

.footer-copyright {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-desc {
    color: #A0AEC0;
    font-size: 0.85rem;
}

/* Other Pages (Privacy, Terms, etc.) */
.page-header {
    background-color: var(--primary-dark);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--surface);
}

.page-header h1 {
    color: var(--surface);
    font-size: 3rem;
}

.page-content {
    max-width: 800px;
    margin: 4rem auto;
}

.page-content h2 {
    margin: 2rem 0 1rem;
}

.page-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Animations & Overlays */
.js-typewriter {
    display: inline-block;
}

/* Page Redirect Overlay */
.redirect-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.redirect-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.redirect-content {
    background-color: var(--primary-dark);
    padding: 2.5rem 4rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--accent-gold);
}

.redirect-text {
    color: var(--surface);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.progress-container {
    width: 100%;
    height: 6px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--accent-gold);
    transition: width 3s linear;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ventures-grid, .mission-grid, .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    header.scrolled .nav-links {
        background-color: var(--surface);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        display: flex;
        justify-content: space-around;
        padding: 2rem;
    }
    
    .stat-item {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .ventures-grid, .mission-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-middle {
        flex-direction: column;
        gap: 2rem;
    }
    
    .leadership-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-brands {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 1.5rem;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
