/* ===== MODERN CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --navy-primary: #001f3f;
    --navy-dark: #001529;
    --navy-light: #003366;
    --gold-accent: #ffd700;
    --gold-light: #ffed4e;
    --gold-dark: #ffb700;
    
    /* Neutral Colors */
    --white: #ffffff;
    --soft-white: #f9fafb;
    --light-gray: #e8e8e8;
    --gray: #8a8a8a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    
    /* Gradient Colors */
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffc107 100%);
    --gradient-navy: linear-gradient(135deg, #001f3f 0%, #003366 50%, #004d7a 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--soft-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Ensure images and media are responsive */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Prevent horizontal overflow on all sections */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.section-padding {
    padding: 100px 0;
}

.section-padding-large {
    padding: 120px 0;
}

.section-padding-small {
    padding: 80px 0;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 20px;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    animation: loading 1.5s ease-in-out infinite;
}

.loader-text {
    color: var(--gold-accent);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 31, 63, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-accent);
}

.btn-nav {
    padding: 0.7rem 1.8rem;
    background: var(--gradient-gold);
    color: var(--navy-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 20px 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-navy);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00c6ff 0%, transparent 70%);
    bottom: -10%;
    left: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: 10s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--gold-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.brand-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold-accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Page Specific Styles */
.hero-page {
    min-height: 60vh;
    padding: 180px 0 100px;
}

.hero-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle-black {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold-accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.hero-description-black {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-primary);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: var(--gradient-gold);
    color: #001f3f;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold-accent);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-down 1.5s ease-in-out infinite;
}

/* ===== GLASS CARD EFFECT ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold);
    border-radius: 24px;
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition);
    z-index: -1;
}

.glass-card:hover .card-glow {
    opacity: 0.5;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #ffd700;
    color: #001f3f;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 31, 63, 0.1);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 31, 63, 0.1);
    color: var(--navy-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 31, 63, 0.1);
}

.section-label.light,
.section-badge.light {
    background: #ffd700;
    color: #001f3f;
    border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #001f3f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title.light {
    color: #001f3f;
}

.section-title-alt {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-description {
    font-size: 1.1rem;
    color: #001f3f;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    padding: 3rem;
    position: relative;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--gradient-navy);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.2);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: var(--gold-accent);
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 20px;
    animation: pulse-subtle 3s ease-in-out infinite;
}

.mission-card h2,
.vision-card h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.card-number {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: rgba(0, 31, 63, 0.05);
    line-height: 1;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    position: relative;
    text-align: center;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: rgba(0, 31, 63, 0.05);
    line-height: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    background: var(--gradient-navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.icon-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.1;
    transition: var(--transition);
}

.service-card:hover .icon-circle {
    opacity: 0.2;
    transform: scale(1.2);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold-dark);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: var(--section-padding) var(--container-padding);
    background: var(--gradient-navy);
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
}

.why-choose::after {

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: #001f3f;
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--navy-primary);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #001f3f;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 1rem;
    color:#001f3f;
}

.quote {
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    font-family: var(--font-display);
    color: var(--gold-accent);
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold-accent);
    border-radius: 20px;
    position: relative;
}

.quote i {
    font-size: 2rem;
    opacity: 0.5;
}

/* ===== HOW WE WORK SECTION ===== */
.how-we-work {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--gold-accent) 10%, var(--gold-accent) 90%, transparent 100%);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.step-number span {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--navy-primary);
}

.number-glow {
    position: absolute;
    inset: -5px;
    background: var(--gradient-gold);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse-subtle 2s ease-in-out infinite;
}

.step-content {
    flex: 1;
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(0, 31, 63, 0.05);
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--gold-accent);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy-primary);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding) var(--container-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 3rem;
    position: relative;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.quote-icon i {
    font-size: 1.2rem;
    color: var(--navy-primary);
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.stars i {
    color: var(--gold-accent);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--gold-accent);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: var(--section-padding) var(--container-padding);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-navy);
}

.orb-cta-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ffd700 0%, transparent 70%);
    top: -20%;
    left: -10%;
    filter: blur(100px);
    opacity: 0.3;
}

.orb-cta-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00c6ff 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-light {
    background: var(--white);
    color: var(--navy-primary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy-primary);
    color: var(--white);
}

.footer-top {
    padding: 80px var(--container-padding) 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list i {
    color: var(--gold-accent);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--gold-accent);
    color: var(--navy-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    padding: 2rem var(--container-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-credits i {
    color: var(--gold-accent);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-credits a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-credits a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.back-to-top i {
    color: var(--navy-primary);
    font-size: 1.2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 215, 0, 0);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
    100% {
        opacity: 0;
        transform: translateY(12px) translateX(-50%);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Large (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1024px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        max-width: 768px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-grid {
        gap: 2rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 15px;
    }
    
    .container {
        max-width: 100%;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 50px;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Why Choose Section */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    /* Process Section */
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-content:hover {
        transform: translateX(0) translateY(-5px);
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    /* CTA Section */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
    
    .section-label {
        font-size: 0.85rem;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
        --container-padding: 12px;
        font-size: 14px;
    }
    
    html {
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero {
        padding: 90px 12px 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    /* Services */
    .service-card {
        padding: 1.5rem 1.2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    /* Why Choose */
    .feature-item {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    /* Mission Vision */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    /* Process Steps */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-top {
        padding: 60px 12px 30px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 1.5rem 12px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    /* Cards & Boxes */
    .quote {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    /* Social Links */
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 375px) {
    :root {
        --section-padding: 40px;
        --container-padding: 10px;
        font-size: 13px;
    }
    
    html {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .service-card,
    .feature-item,
    .testimonial-card {
        padding: 1rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--navy-primary);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--navy-primary);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    color: var(--navy-primary);
    font-weight: 500;
    margin: 0.5rem 0;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--gold-accent);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--soft-white);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-dark);
}

.feature-item i {
    color: #001f3f;
    font-size: 1.2rem;
}

.social-connect {
    margin-top: 3rem;
}

.social-connect h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--navy-primary);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--navy-primary);
    margin-right: 0.8rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--gray);
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.8);
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-placeholder {
    padding: 4rem;
    text-align: center;
    background: var(--glass-bg);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
}

/* Quick CTA */
.quick-cta {
    padding: 60px 0;
}

.cta-box {
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--text-light);
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-detail-card {
    padding: 3rem;
    position: relative;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-detail-card:hover .service-icon-large {
    background: var(--gradient-gold);
    color: var(--navy-primary);
    transform: scale(1.1) rotate(5deg);
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--navy-primary);
}

.service-detail-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
    color: var(--text-dark);
}

.service-features i {
    color: var(--gold-accent);
    font-size: 1rem;
}

/* Why Services Section */
.why-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--navy-primary);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--navy-primary);
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-paragraph {
    margin: 1rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

.story-image {
    position: relative;
}

.image-placeholder {
    padding: 2rem;
    border-radius: 20px;
    background: #001f3f;
}

.story-img {
    width: 100%;
    border-radius: 15px;
}

.story-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-gold);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--navy-primary);
    box-shadow: var(--card-shadow);
}

.story-badge i {
    font-size: 2rem;
}

.story-badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.story-badge span {
    font-size: 0.9rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: var(--soft-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mv-card {
    padding: 3rem;
    position: relative;
    text-align: center;
}

.mv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--navy-primary);
}

.mv-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--navy-primary);
    color: var(--gold-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy-primary);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--navy-primary);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--navy-primary);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-accent);
    display: inline-block;
    margin-left: 0.2rem;
}

.stat-label {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-grid {
    margin-top: 3rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 31, 63, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-accent);
}

.why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.why-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
}

.why-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-message {
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
}

.team-icon {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.team-message h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy-primary);
}

.team-message p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* CTA Content Center */
.cta-content-center {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Button Sizes */
.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Responsive Styles for New Pages */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .contact-form-wrapper,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid,
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-page {
        padding: 140px 0 80px;
    }
    
    .hero-page-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (481px - 768px) */
@media (max-width: 768px) {
    .hero-page {
        padding: 120px 0 60px;
    }
    
    .hero-page-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-black {
        font-size: 1.5rem;
    }
    
    .hero-description-black {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards,
    .why-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-number {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .service-detail-card,
    .mv-card,
    .contact-form {
        padding: 2.5rem 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .hero-page {
        padding: 100px 0 50px;
    }
    
    .hero-page-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle-black {
        font-size: 1.2rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
    }
    
    .service-detail-card,
    .mv-card,
    .contact-form {
        padding: 2rem 1.2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}
