/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #0a2540;
    --primary-light: #1a3b5c;
    --primary-dark: #051a2b;
    --secondary: #2f7fc1;
    --accent: #f0b90b;
    --accent-light: #ffd966;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    font-size: clamp(0.95rem, 2vw, 1rem);
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== Language Switcher ===== */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gray-300);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--gray-200);
}

.lang-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
    }
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(47, 127, 193, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 127, 193, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-800);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .whatsapp-float .tooltip {
        display: none;
    }
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

@media (min-width: 769px) {
    .header .container {
        height: 80px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 35px;
    width: auto;
}

@media (min-width: 769px) {
    .logo img {
        height: 45px;
    }
}

.logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

@media (min-width: 769px) {
    .logo span {
        font-size: 1.5rem;
    }
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        gap: 1.2rem;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

@media (min-width: 769px) {
    .nav-menu a {
        font-size: 1rem;
    }
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-menu a::after {
        bottom: -3px;
    }
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .hero {
        padding: 160px 0 100px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(47,127,193,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 769px) {
    .hero .container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }
}

.hero-content h1 {
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (min-width: 769px) {
    .hero-content h1 {
        margin-bottom: 1.5rem;
    }
}

.hero-content .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(47, 127, 193, 0.2);
    z-index: -1;
}

.hero-content p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 100%;
}

@media (min-width: 769px) {
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 90%;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-stats {
        justify-content: center;
    }
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 769px) {
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin: 0;
}

@media (min-width: 769px) {
    .stat-item p {
        font-size: 0.9rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

@media (min-width: 481px) {
    .hero-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 769px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.hero-card {
    background: var(--white);
    padding: 1.2rem 0.8rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

@media (min-width: 769px) {
    .hero-card {
        padding: 1.5rem 1rem;
    }
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.hero-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
    .hero-card i {
        font-size: 2rem;
    }
}

.hero-card span {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.8rem;
    display: block;
}

@media (min-width: 769px) {
    .hero-card span {
        font-size: 0.9rem;
    }
}

/* ===== Sections ===== */
.section {
    padding: 50px 0;
}

@media (min-width: 769px) {
    .section {
        padding: 80px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

@media (min-width: 769px) {
    .section-header {
        margin: 0 auto 4rem;
    }
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

@media (min-width: 769px) {
    .section-header h2::after {
        width: 60px;
    }
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-600);
}

@media (min-width: 769px) {
    .section-header p {
        font-size: 1.1rem;
    }
}

/* ===== Cards Grid ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 769px) {
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

.card {
    background: var(--white);
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

@media (min-width: 769px) {
    .card {
        padding: 2rem 1.5rem;
    }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

@media (min-width: 769px) {
    .card i {
        font-size: 2.5rem;
    }
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 769px) {
    .card h3 {
        font-size: 1.3rem;
    }
}

.card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

@media (min-width: 769px) {
    .card p {
        font-size: 0.95rem;
    }
}

/* ===== About Page Specific ===== */
.about-hero {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

@media (min-width: 769px) {
    .about-hero {
        padding: 160px 0 60px;
    }
}

.about-hero h1,
.about-hero p {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 481px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 769px) {
    .value-item {
        padding: 2rem;
    }
}

.value-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

@media (min-width: 769px) {
    .value-item i {
        font-size: 2.5rem;
    }
}

/* ===== Category Page ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.8rem;
    margin: 2rem 0;
}

@media (min-width: 769px) {
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        margin: 3rem 0;
    }
}

.category-tag {
    background: var(--gray-100);
    padding: 0.8rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    cursor: default;
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .category-tag {
        padding: 1rem;
        font-size: 1rem;
    }
}

.category-tag:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--secondary);
}

.category-tag i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.category-tag:hover i {
    color: var(--white);
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 769px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        margin: 3rem 0;
    }
}

.contact-info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 769px) {
    .contact-info-card {
        padding: 2rem;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--gray-100);
    border-radius: 10px;
    transition: var(--transition);
}

@media (min-width: 769px) {
    .contact-info-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }
}

.contact-info-item:hover {
    background: var(--secondary);
    color: var(--white);
}

.contact-info-item:hover i,
.contact-info-item:hover a {
    color: var(--white);
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--secondary);
    width: 25px;
}

@media (min-width: 769px) {
    .contact-info-item i {
        font-size: 1.5rem;
        width: 30px;
    }
}

.contact-info-item a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    word-break: break-word;
}

.contact-form {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 769px) {
    .contact-form {
        padding: 2rem;
    }
}

.form-group {
    margin-bottom: 1rem;
}

@media (min-width: 769px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: var(--primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(47, 127, 193, 0.1);
}

/* ===== FAQ Section ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 769px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

@media (min-width: 769px) {
    .faq-item {
        padding: 2rem;
    }
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

@media (min-width: 769px) {
    .faq-item h4 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }
}

.faq-item h4 i {
    color: var(--secondary);
}

.faq-item p {
    font-size: 0.95rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

@media (min-width: 769px) {
    .cta-banner {
        padding: 60px 0;
    }
}

.cta-banner h2,
.cta-banner p {
    color: var(--white);
}

.cta-banner h2 {
    font-size: 1.8rem;
}

@media (min-width: 769px) {
    .cta-banner h2 {
        font-size: 2.5rem;
    }
}

.cta-banner p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
    .cta-banner p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

.cta-banner .btn {
    background: var(--white);
    color: var(--primary);
    margin-top: 0.5rem;
    display: inline-block;
}

@media (min-width: 769px) {
    .cta-banner .btn {
        margin-top: 1rem;
    }
}

.cta-banner .btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

@media (min-width: 769px) {
    .footer {
        padding: 60px 0 20px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 481px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media (min-width: 769px) {
    .footer-col h4 {
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }
}

.footer-col p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

@media (min-width: 769px) {
    .footer-links li {
        margin-bottom: 0.8rem;
    }
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .footer-bottom {
        padding-top: 2rem;
        font-size: 1rem;
    }
}

/* ===== Investment Page Styles ===== */
.investment-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 40px 0;
    margin: 30px 0;
    border-radius: 30px;
}

@media (min-width: 769px) {
    .investment-highlight {
        padding: 60px 0;
        margin: 40px 0;
    }
}

.investment-highlight h2,
.investment-highlight p {
    color: white;
}

.investment-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    margin: 30px 0;
}

@media (min-width: 481px) {
    .investment-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .investment-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 50px 0;
    }
}

.investment-stat-item {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 769px) {
    .investment-stat-item {
        padding: 30px;
    }
}

.investment-stat-item h3 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

@media (min-width: 769px) {
    .investment-stat-item h3 {
        font-size: 3rem;
    }
}

.investment-stat-item p {
    color: var(--gray-600);
    font-size: 1rem;
}

@media (min-width: 769px) {
    .investment-stat-item p {
        font-size: 1.1rem;
    }
}

.investment-opportunities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 769px) {
    .investment-opportunities {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 50px 0;
    }
}

.opportunity-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.opportunity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media (min-width: 769px) {
    .opportunity-card img {
        height: 250px;
    }
}

.opportunity-content {
    padding: 20px;
}

@media (min-width: 769px) {
    .opportunity-content {
        padding: 30px;
    }
}

.opportunity-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

@media (min-width: 769px) {
    .opportunity-content h3 {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
}

.opportunity-content .badge {
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

@media (min-width: 769px) {
    .opportunity-content .badge {
        padding: 5px 15px;
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
}

/* ===== Recruitment Page Styles ===== */
.recruitment-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 40px;
    text-align: center;
}

@media (min-width: 769px) {
    .recruitment-hero {
        padding: 160px 0 60px;
    }
}

.recruitment-hero h1,
.recruitment-hero p {
    color: white;
}

.job-openings {
    margin: 40px 0;
}

@media (min-width: 769px) {
    .job-openings {
        margin: 60px 0;
    }
}

.job-category {
    margin-bottom: 30px;
}

@media (min-width: 769px) {
    .job-category {
        margin-bottom: 50px;
    }
}

.job-category h3 {
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

@media (min-width: 769px) {
    .job-category h3 {
        padding-bottom: 15px;
        margin-bottom: 30px;
        font-size: 1.5rem;
    }
}

.job-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--secondary);
}

@media (min-width: 769px) {
    .job-card {
        padding: 25px;
        margin-bottom: 20px;
    }
}

.job-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.job-card h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

@media (min-width: 769px) {
    .job-card h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
}

.job-meta {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    color: var(--gray-600);
    flex-wrap: wrap;
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .job-meta {
        gap: 20px;
        margin: 15px 0;
        font-size: 1rem;
    }
}

.job-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 481px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin: 50px 0;
    }
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

@media (min-width: 769px) {
    .benefit-item {
        padding: 30px;
    }
}

.benefit-item i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

@media (min-width: 769px) {
    .benefit-item i {
        font-size: 3rem;
        margin-bottom: 20px;
    }
}

.benefit-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

@media (min-width: 769px) {
    .benefit-item h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }
}

/* ===== Privacy & Terms Pages - Redesigned ===== */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 30px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 769px) {
    .legal-content {
        padding: 50px;
    }
}

.legal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

@media (min-width: 769px) {
    .legal-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
}

.legal-header h1 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.legal-header .last-updated {
    color: var(--gray-500);
    font-style: italic;
    font-size: 0.95rem;
    display: inline-block;
    background: var(--gray-100);
    padding: 5px 15px;
    border-radius: 50px;
}

.legal-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 769px) {
    .legal-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

@media (min-width: 769px) {
    .legal-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-left: 20px;
    }
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--secondary);
    border-radius: 4px;
}

.legal-section h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

@media (min-width: 769px) {
    .legal-section h3 {
        font-size: 1.3rem;
        margin: 25px 0 10px;
    }
}

.legal-section p {
    color: var(--gray-700);
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul, 
.legal-section ol {
    margin: 15px 0 15px 20px;
}

@media (min-width: 769px) {
    .legal-section ul, 
    .legal-section ol {
        margin: 15px 0 15px 30px;
    }
}

.legal-section li {
    margin-bottom: 8px;
    color: var(--gray-700);
    line-height: 1.6;
}

.legal-section .highlight-box {
    background: var(--gray-100);
    padding: 15px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
    margin: 20px 0;
}

@media (min-width: 769px) {
    .legal-section .highlight-box {
        padding: 20px;
        margin: 25px 0;
    }
}

.legal-section .highlight-box p:last-child {
    margin-bottom: 0;
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

@media (min-width: 481px) {
    .legal-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.legal-contact-item {
    background: var(--gray-100);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.legal-contact-item:hover {
    transform: translateY(-5px);
    background: var(--secondary);
    color: white;
}

.legal-contact-item:hover a {
    color: white;
}

.legal-contact-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.legal-contact-item:hover i {
    color: white;
}

.legal-contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.legal-contact-item a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    word-break: break-word;
}

.legal-footer-note {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 20px;
    text-align: center;
}

@media (min-width: 769px) {
    .legal-footer-note {
        margin-top: 40px;
        padding: 30px;
    }
}

.legal-footer-note p {
    color: white;
    margin-bottom: 0;
}

.legal-footer-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.legal-footer-note a:hover {
    text-decoration: underline;
}

/* ===== Responsive Grid Utilities ===== */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 481px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 481px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 481px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Image Styles ===== */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.image-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-card img {
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Mobile Touch Optimizations ===== */
@media (max-width: 768px) {
    .btn,
    .nav-menu a,
    .category-tag,
    .contact-info-item {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active,
    .nav-menu a:active,
    .category-tag:active {
        opacity: 0.7;
    }
    
    .whatsapp-float:active {
        transform: scale(0.95);
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .whatsapp-float,
    .footer,
    .cta-banner {
        display: none;
    }
    
    body {
        padding: 0;
        margin: 0;
    }
    
    .legal-content {
        box-shadow: none;
        padding: 0;
    }
}