:root {
    --primary: #0f1115;
    --primary-light: #1c1f26;
    --primary-dark: #08090c;
    --accent: #d4af37; /* Warm Gold */
    --accent-light: #f3e5ab;
    --accent-hover: #c59f27;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #edcf6b 50%, #b8911b 100%);
    --dark-gradient: linear-gradient(180deg, #0d0f14 0%, #151821 100%);
    --card-gradient: linear-gradient(145deg, #ffffff 0%, #fcfbf9 100%);
    --bg: #f8f9fb;
    --bg-soft: #f4f5f8;
    --border: #e6e8ec;
    --border-dark: #262933;
    --text: #1a1d24;
    --text-muted: #686e7d;
    --text-light: #9ea5b3;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.25);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Header */
.site-header {
    background: rgba(15, 17, 21, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo span {
    color: var(--accent);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #b3b8c4;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-light);
}

.cta-header {
    background: var(--accent-gradient);
    color: #0f1115;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.45);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

/* Premium Hero Section */
.hero-section {
    position: relative;
    padding: 120px 24px 100px;
    background: var(--dark-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(15, 17, 21, 0) 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 860px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--accent-light);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-content h1 .gold-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 19px);
    color: #b5bac7;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-cta {
    background: var(--accent-gradient);
    color: #0f1115;
    padding: 16px 36px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5);
    color: #000;
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-light);
}

/* Hero Stats Bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h4 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: #8c93a4;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections General */
.section-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 90px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 38px;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.profile-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
}

.profile-img-container {
    width: 100%;
    aspect-ratio: 4/5;
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
}

.profile-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.profile-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
}

.profile-country {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--accent);
}

.profile-bio {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.5;
}

.btn-call {
    width: 100%;
    min-height: 48px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--accent-gradient);
    color: #0f1115;
    box-shadow: var(--shadow-glow);
}

/* Trustable Experience Section */
.trust-section {
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.trust-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.trust-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 17, 21, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 16px 20px;
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-badge-float i {
    font-size: 28px;
    color: var(--accent);
}

.trust-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.trust-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 28px;
}

.trust-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.trust-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.trust-checklist li i {
    color: #198754;
    font-size: 18px;
}

/* Feature Cards (Why Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 36px 30px;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.feature-icon-box i {
    font-size: 26px;
    color: var(--accent);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Reviews & Testimonials Section */
.reviews-section {
    background: var(--dark-gradient);
    color: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.reviews-section .section-header h2 {
    color: #ffffff;
}

.reviews-section .section-header p {
    color: #9ea5b3;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-stars {
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: #cfd4df;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.reviewer-name {
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
}

.reviewer-loc {
    font-size: 12px;
    color: var(--accent-light);
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Countries List */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.country-pill {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.country-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Contact Page / Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 30px;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    background: #ffffff;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 17, 21, 0.08);
}

.btn-submit {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    min-height: 48px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent-gradient);
    color: #0f1115;
}

/* Toast Message */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f1115;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

/* Footer */
.site-footer {
    background: #090a0d;
    color: #ffffff;
    padding: 80px 24px 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-brand h3 span {
    color: var(--accent);
}

.footer-brand p {
    color: #8c93a4;
    max-width: 400px;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-nav h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-link {
    color: #8c93a4;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--accent-light);
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    color: #686e7d;
    font-size: 13px;
    align-items: center;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-grid, .reviews-grid, .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0f1115;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 24px;
        gap: 18px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .cta-header {
        display: none;
    }
    
    .features-grid, .reviews-grid, .steps-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
}
