/* ============================================
   ForexBridge - Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --navy: #1A3C6E;
    --navy-dark: #0F2647;
    --gold: #F5A623;
    --gold-hover: #E09500;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --gray: #6B7B8D;
    --dark-gray: #333333;
    --text: #444444;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-left a:hover {
    color: var(--gold);
}

.top-bar-left i {
    margin-right: 6px;
}

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.top-bar-right a:hover {
    color: var(--gold);
}

/* --- Header --- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo svg {
    display: block;
}

/* --- Navigation --- */
.main-nav ul {
    display: flex;
    gap: 8px;
}

.main-nav a {
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    border-radius: 6px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background-color: rgba(245, 166, 35, 0.08);
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.92) 0%, rgba(15, 38, 71, 0.85) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
    padding: 100px 0 80px;
    color: var(--white);
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: var(--gold);
}

.hero .subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- Currency Converter Widget --- */
.converter-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 40px;
    max-width: 600px;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.converter-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--navy);
}

.converter-fields {
    display: flex;
    align-items: center;
    gap: 16px;
}

.converter-field {
    flex: 1;
}

.converter-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.converter-field .input-group {
    display: flex;
    border: 2px solid #E0E6ED;
    border-radius: 8px;
    overflow: hidden;
}

.converter-field input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--navy);
    outline: none;
    width: 100%;
    min-width: 0;
}

.converter-field select {
    border: none;
    border-left: 2px solid #E0E6ED;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    background: var(--light-gray);
    cursor: pointer;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.converter-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    padding-top: 20px;
}

.converter-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 14px;
    font-style: italic;
}

/* --- Section Styles --- */
.section {
    padding: 80px 0;
}

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

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

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy) 0%, #2A5CAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

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

.step-card {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

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

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

.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
}

.step-card:last-child .step-connector {
    display: none;
}

/* --- 4-Step Grid (How It Works Page) --- */
.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card-detailed {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.step-card-detailed:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.step-card-detailed .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #2A5CAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 32px;
    color: var(--gold);
}

.step-card-detailed .step-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(26, 60, 110, 0.06);
    line-height: 1;
}

.step-card-detailed h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card-detailed p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 14px;
}

.testimonial-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.testimonial-author h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

/* --- Partners Strip --- */
.partners-strip {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #E8ECF0;
}

.partners-strip h3 {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 80px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
}

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.95) 0%, rgba(15, 38, 71, 0.9) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover no-repeat;
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* --- About Page --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(135deg, var(--navy) 0%, #2A5CAE 100%);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    color: var(--white);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image i {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-image h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.about-image p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card h3 i {
    color: var(--gold);
}

.mv-card p {
    line-height: 1.8;
    color: var(--text);
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.why-card i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
}

.compliance-box {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.compliance-box i {
    font-size: 48px;
    color: var(--gold);
    flex-shrink: 0;
}

.compliance-box h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}

.compliance-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--navy) 0%, #2A5CAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 36px;
    color: var(--gold);
}

.team-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 13px;
    color: var(--gray);
}

/* --- Services Page --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card .service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy) 0%, #2A5CAE 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.service-card .badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.corridors-section {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    color: var(--white);
}

.corridors-section h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 12px;
}

.corridors-section > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.corridors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.corridor-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 16px;
    transition: var(--transition);
}

.corridor-item:hover {
    background: rgba(255, 255, 255, 0.18);
}

.corridor-item .flag {
    font-size: 32px;
    margin-bottom: 8px;
}

.corridor-item h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* --- FAQs Page --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question i {
    color: var(--gold);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: var(--light-gray);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--text);
    line-height: 1.8;
    font-size: 15px;
}

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

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 26px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group label .required {
    color: #E74C3C;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E6ED;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: var(--dark-gray);
    transition: var(--transition);
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

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

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 14px;
    color: var(--gray);
}

.contact-info-item a:hover {
    color: var(--gold);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* --- Alert Messages --- */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* --- Footer --- */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-col h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-list li i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-list li span,
.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-compliance {
    font-size: 12px !important;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .corridors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-bottom: 1px solid var(--light-gray);
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .converter-widget {
        padding: 24px 20px;
    }

    .converter-fields {
        flex-direction: column;
    }

    .converter-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    /* Grids */
    .features-grid,
    .testimonials-grid,
    .services-grid,
    .mission-vision,
    .why-cards,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid-4 {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .corridors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Page Banner */
    .page-banner h1 {
        font-size: 28px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Service card */
    .service-card {
        flex-direction: column;
    }

    /* Compliance box */
    .compliance-box {
        flex-direction: column;
        text-align: center;
    }

    /* Partners */
    .partners-logos {
        gap: 24px;
    }

    /* CTA */
    .cta-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .corridors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 6px;
    }
}
