/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b263b;
    --accent-color: #c9a961;
    --gold-color: #b8860b;
    --dark-color: #0a0e1a;
    --light-color: #f5f5f5;
    --text-color: #2c2c2c;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --gray-dark: #1e1e1e;
    --gray-medium: #3a3a3a;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary-color);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.logo-text h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
    margin: 0;
}

.logo-text span {
    color: var(--gray-medium);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 3px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a1628;
    background-image: url('../images/storefront.jpg'), url('images/storefront.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(13, 27, 42, 0.4) 0%, rgba(13, 27, 42, 0.65) 100%),
        radial-gradient(circle at 30% 40%, rgba(201, 169, 97, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(201, 169, 97, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(13, 27, 42, 0.3) 0%, transparent 50%, rgba(13, 27, 42, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    background: rgba(13, 27, 42, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.1s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    height: 180px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: 
        drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5))
        drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3))
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-logo-img:hover {
    transform: scale(1.08);
    filter: 
        drop-shadow(0 12px 40px rgba(0, 0, 0, 0.6))
        drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4))
        drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3));
    border-color: rgba(201, 169, 97, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    letter-spacing: -1px;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(13, 27, 42, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.7),
        0 1px 5px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.25);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8965a 0%, #a67a0a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.35);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   Features Section
   =================================== */
.features {
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(13, 27, 42, 0.08);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.2);
    border: 2px solid rgba(201, 169, 97, 0.2);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

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

/* ===================================
   Services Preview
   =================================== */
.services-preview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2c3e50 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.service-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* ===================================
   Services Detail
   =================================== */
.services-detail {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 27, 42, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.service-detail-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 25px;
    padding: 3.5rem;
    margin-bottom: 3.5rem;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(13, 27, 42, 0.08);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--gold-color) 50%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.service-detail-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-detail-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(201, 169, 97, 0.3);
}

.service-detail-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-detail-card:hover::after {
    opacity: 1;
}

.service-detail-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 15px rgba(201, 169, 97, 0.3));
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(201, 169, 97, 0.4));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-detail-content {
    position: relative;
    z-index: 1;
}

.service-detail-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 1rem;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service-detail-card:hover .service-detail-content h2::after {
    width: 100px;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-features li {
    padding: 1rem 1.5rem;
    padding-right: 3rem;
    position: relative;
    color: var(--text-color);
    font-size: 1.05rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    transform: translateX(-5px);
    border-color: rgba(201, 169, 97, 0.2);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
    background: rgba(201, 169, 97, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-features li:hover::before {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.service-benefits {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.03) 0%, rgba(201, 169, 97, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2.5rem;
    border: 2px solid rgba(201, 169, 97, 0.15);
    position: relative;
    overflow: hidden;
}

.service-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.service-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
}

.service-benefits ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.service-benefits ul li {
    padding: 0.8rem 1rem;
    padding-right: 2.5rem;
    position: relative;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-benefits ul li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-benefits ul li::before {
    content: '▶';
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-benefits ul li:hover::before {
    transform: translateY(-50%) translateX(-3px);
    color: var(--gold-color);
}

/* Money Transfer Services */
.money-transfer-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
}

.transfer-service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(13, 27, 42, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.transfer-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.transfer-service-item:hover::before {
    transform: scaleX(1);
}

.transfer-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 169, 97, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.transfer-service-logo {
    width: 100%;
    max-width: 400px;
    height: 180px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 27, 42, 0.08);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.transfer-service-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.transfer-service-item:hover .transfer-service-logo {
    transform: scale(1.05);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(201, 169, 97, 0.2);
}

.transfer-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.transfer-service-item:hover .transfer-logo {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transform: scale(1.02);
}

.transfer-service-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.transfer-service-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.transfer-features {
    list-style: none;
    padding: 0;
    text-align: right;
    width: 100%;
}

.transfer-features li {
    padding: 0.8rem 0;
    padding-right: 2rem;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
}

.transfer-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===================================
   About Page
   =================================== */
.page-header {
    background: linear-gradient(135deg, #0a1628 0%, #1b263b 50%, #2c3e50 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content {
    padding: 5rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    background: var(--light-color);
    border-radius: 15px;
    padding: 3rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.image-placeholder svg {
    width: 100px;
    height: 100px;
}

.history {
    background: var(--light-color);
    padding: 5rem 0;
}

.history-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: 100px;
    top: 0;
    bottom: -3rem;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 3px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.vision-mission {
    padding: 5rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vm-card {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2c3e50 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
}

.vm-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.vm-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.values {
    background: var(--light-color);
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(13, 27, 42, 0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

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

/* ===================================
   Why Choose Section
   =================================== */
.why-choose {
    background: var(--white);
    padding: 5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), var(--gold-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

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

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: block;
}

.contact-info-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info-section > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-top: 3px solid var(--accent-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.contact-details a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
    padding-right: 10px;
}

.contact-details p {
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 1.05rem;
}


.map-section {
    padding: 5rem 0;
    background: var(--white);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    background: linear-gradient(135deg, #0a1628 0%, #1b263b 50%, #2c3e50 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: 
        drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3))
        drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 10px;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: 
        drop-shadow(0 4px 15px rgba(255, 255, 255, 0.4))
        drop-shadow(0 6px 25px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-desc {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-address {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info li a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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


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

    .timeline-item {
        flex-direction: column;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-year {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }

    .logo-text h2 {
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.75rem;
    }

    .hero-logo-img {
        height: 140px;
        max-width: 300px;
        padding: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-icon {
        font-size: 4rem;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .service-benefits ul {
        grid-template-columns: 1fr;
    }

    .money-transfer-services {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transfer-service-item {
        padding: 1.5rem;
    }

    .footer-logo-img {
        height: 80px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo-link {
        gap: 0.7rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text h2 {
        font-size: 1rem;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

    .hero {
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 1.2rem;
        border-radius: 12px;
        margin: 0 0.5rem;
    }

    .hero-logo-img {
        height: 120px;
        max-width: 250px;
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-detail-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .service-detail-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-features li {
        padding: 0.8rem 1rem;
        padding-right: 2.5rem;
        font-size: 0.95rem;
    }

    .service-benefits {
        padding: 1.5rem;
    }

    .service-benefits ul {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        height: 70px;
        max-width: 180px;
    }
}
