/* ============================
   COLOR VARIABLES
   ============================ */
:root {
  /* Primary */
  --color-navy: #0B1E39;
  --color-blue: #1E88E5;
  --color-white: #FFFFFF;

  /* Accent */
  --color-gold: #CDA349;

  /* Neutrals */
  --color-light-gray: #F5F7FA;
  --color-medium-gray: #6B7280;
  --color-charcoal: #2D2D2D;
}

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

html {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    color: var(--color-charcoal);
    background-color: var(--color-light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 0;
}

p {
    margin: 0 0 1em;
    color: var(--color-charcoal);
}

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


/* Top Header */
.top-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-light-gray);
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    height: 40px;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-link {
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 5px 8px;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: var(--color-navy);
}

.lang-link.active {
    color: var(--color-medium-gray);
    opacity: 0.7;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    display: flex;
    align-items: center;
    background: var(--color-light-gray);
    border-radius: 20px;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: var(--color-navy);
    background: var(--color-white);
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px 10px;
    font-size: 14px;
    width: 150px;
    color: var(--color-charcoal);
}

.search-input::placeholder {
    color: var(--color-medium-gray);
}

.search-btn {
    background: none;
    border: none;
    color: var(--color-medium-gray);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--color-navy);
}

.linkedin-link {
    color: #0077b5;
    font-size: 24px;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #005885;
}

/* Main Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    height: 192px;
    background: var(--color-navy);
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--color-gold);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: visible;
    flex-shrink: 0;
    padding: 0;
}

.nav-logo img {
    height: 134px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link.active {
    color: #87CEEB !important; /* Light blue for better visibility */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
    background-color: #87CEEB; /* Light blue underline for active state */
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 232px; /* Account for top header + navbar height + gold border (40px + 192px + 4px) */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Focus on the middle of the image */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--color-white);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 200px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: #b88c32;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(205, 163, 73, 0.3);
}

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    max-width: 1200px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-light-gray);
}

.about-welcome {
    text-align: left;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-welcome h2 {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-welcome p {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--color-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--color-medium-gray);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 4px 4px 0 0;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    color: white;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--color-medium-gray);
    line-height: 1.6;
}

/* New Services List Layout */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-navy), var(--color-blue), var(--color-gold));
    opacity: 0.8;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    border-color: #cbd5e1;
}

.service-item:hover::before {
    opacity: 1;
    height: 5px;
}

.service-item .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
    position: relative;
}

.service-item .service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-blue), var(--color-gold));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(30, 58, 138, 0.4);
}

.service-item:hover .service-icon::after {
    opacity: 1;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.75rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-content p {
    color: var(--color-medium-gray);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Strategic Advisory Section */
.advisory {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.advisory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(11, 30, 57, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(205, 163, 73, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Advisory Section Header */
.advisory .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.advisory .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    word-break: break-word;
    hyphens: auto;
}

.advisory .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 2px;
}

.advisory .section-header .advisory-subtitle {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.advisory .section-header .advisory-description {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    max-width: 1000px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.advisory .section-header .advisory-intro {
    font-size: 1.1rem;
    color: var(--color-medium-gray);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* Content Section Layout */
.content-section {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 60px 0;
    transition: all 0.3s ease;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Alternating background colors and layout - full width */
.content-section:nth-child(odd) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    flex-direction: row; /* Text left, Image right */
    border-left: 4px solid var(--color-gold);
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    flex-direction: row-reverse; /* Image left, Text right */
    border-right: 4px solid var(--color-navy);
}

.content-section.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 50px 70px 50px 50px;
    max-width: none;
    margin: 0;
    position: relative;
}

.content-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--color-gold);
    border-radius: 2px;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-text p strong {
    color: var(--color-navy);
    font-weight: 600;
}


.content-text h3 {
    color: var(--color-navy);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-charcoal);
}

.content-text p strong {
    color: var(--color-navy);
    font-weight: 600;
}


.content-image {
    flex: 1;
    text-align: center;
    padding: 0;
    max-width: none;
    margin: 0;
}

.content-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Scroll Animation Classes */
.content-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }
.content-section:nth-child(4) { animation-delay: 0.4s; }
.content-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advisory-subtitle {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.advisory-description {
    font-size: 1.2rem;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.advisory-intro {
    font-size: 1.1rem;
    color: var(--color-medium-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advisory-section {
    margin-bottom: 4rem;
}

.advisory-section h3 {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-card {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h4 {
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--color-charcoal);
    line-height: 1.6;
}

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

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.approach-card h4 {
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.approach-card p {
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.benefit-highlight {
    background: var(--color-light-gray);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    color: var(--color-charcoal);
}

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

.service-category {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-category h4 {
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-subtitle {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.service-category li {
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

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

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-card h4 {
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--color-charcoal);
    line-height: 1.6;
}

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

.client-type {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.client-type h4 {
    color: var(--color-navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.client-type p {
    color: var(--color-charcoal);
    line-height: 1.6;
}

.cta-section {
    background: #0B1E39;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

.cta-section h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.cta-section p {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(11, 30, 57, 0.15);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--color-medium-gray);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 8px 8px 20px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-navy);
}

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

/* Footer */
.footer {
    background: var(--color-navy);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid #6b7280;
    padding-top: 1rem;
    text-align: center;
    color: #ffffff;
}

.footer-bottom p {
    color: #ffffff !important;
}

/* Footer Social Links */
.footer-social {
    margin-top: 1.5rem;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #0077b5;
    border-radius: 8px;
    background: rgba(0, 119, 181, 0.1);
}

.footer-linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.footer-linkedin i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        padding: 5px 0;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-input {
        width: 120px;
    }
    
    .language-switcher {
        gap: 10px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 232px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
        max-height: calc(100vh - 232px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        color: var(--color-navy) !important;
    }

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

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

    /* Complete hero section mobile redesign */
    .hero {
        margin-top: 0 !important;
        height: 120vh !important; /* Make it taller to accommodate all content */
        min-height: 800px !important; /* Ensure minimum height */
        padding: 0 !important;
        position: relative !important;
        top: 0 !important;
        display: flex !important;
        align-items: flex-start !important; /* Start from top instead of center */
        justify-content: center !important;
    }

    .hero-background {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 280px 20px 40px 20px !important; /* Even more top padding to move content down further */
        text-align: center !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* Center the content vertically */
        align-items: center !important;
        min-height: 100vh !important; /* Full height for proper centering */
    }

    .hero-content .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    }

    .hero-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        color: var(--color-white) !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }

    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
        color: var(--color-white) !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    }

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

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

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

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .service-item .service-icon {
        margin: 0 auto;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-header {
        padding: 3px 0;
    }
    
    .search-input {
        width: 100px;
        font-size: 12px;
    }
    
    .lang-link {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .linkedin-link {
        font-size: 16px;
    }
    
    .nav-container {
        padding: 0 15px;
    }

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

    .advisory .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    /* Content Section Mobile Styles - Title, Image, Text Layout */
    .content-section {
        flex-direction: column !important;
        gap: 0;
        padding: 40px 20px;
        text-align: center;
        width: 100% !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        position: relative !important;
        overflow-x: hidden !important;
    }

    .content-section:nth-child(odd),
    .content-section:nth-child(even),
    .content-section.reverse {
        flex-direction: column !important;
        border: none;
    }

    .content-text {
        padding: 0;
        max-width: 100%;
        order: 3; /* Text comes last */
        display: flex;
        flex-direction: column;
    }

    .content-image {
        padding: 0;
        max-width: 100%;
        order: 2; /* Image comes second */
        margin: 20px 0;
        text-align: center;
    }

    .content-text h3 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
        order: 1; /* Title comes first */
    }

    .content-text h3::before {
        display: none; /* Hide the accent bar on mobile */
    }

    .content-text p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 15px;
        line-height: 1.6;
        order: 2; /* Text comes after title */
    }

    .content-image img {
        min-height: 250px;
        max-width: 100%;
        border-radius: 0;
        box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
        display: block;
        margin: 0 auto;
    }

    /* Mobile-specific spacing */
    .content-section:not(:last-child) {
        margin-bottom: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-navy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-navy);
}

/* ============================
   UTILITY CLASSES
   ============================ */
.bg-navy { background-color: var(--color-navy); color: var(--color-white); }
.bg-blue { background-color: var(--color-blue); color: var(--color-white); }
.bg-gold { background-color: var(--color-gold); color: var(--color-white); }
.bg-light { background-color: var(--color-light-gray); }
.bg-medium { background-color: var(--color-medium-gray); }
.bg-charcoal { background-color: var(--color-charcoal); color: var(--color-white); }

.text-navy { color: var(--color-navy); }
.text-blue { color: var(--color-blue); }
.text-gold { color: var(--color-gold); }
.text-light { color: var(--color-light-gray); }
.text-medium { color: var(--color-medium-gray); }
.text-charcoal { color: var(--color-charcoal); }
