/* =================================================================
   Visa Club Consultants - Premium Immigration Advisory Website
   Design Philosophy: Luxury restraint, authoritative clarity, diplomatic gravitas
   ENHANCED VERSION 2.0 - Fully Responsive with Media & Interactivity
   ================================================================= */

/* =================================================================
   CSS RESET & BASE STYLES
   ================================================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #2d3748;
    background-color: #fafbfc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* =================================================================
   TYPOGRAPHY
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a2332;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.125rem;
    margin-bottom: 1.375rem;
}

h3 {
    font-size: 1.625rem;
    margin-bottom: 1.125rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: #3d4852;
}

a {
    color: #1a2332;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1eae45;
}

strong {
    font-weight: 600;
    color: #1a2332;
}

/* =================================================================
   LAYOUT STRUCTURE
   ================================================================= */

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

.section {
    padding: 6.5rem 0;
}

.content-block {
    margin-bottom: 3.5rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

/* =================================================================
   HEADER & NAVIGATION - FIXED AND RESPONSIVE
   ================================================================= */

.site-header {
    background-color: #1a2332;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.85;
}

.logo-icon {
    font-size: 1.5rem;
    color: #1eae45;
}

.logo a:hover {
    color: #1eae45;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 0.875rem;
    color: #cbd5e0;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    border-bottom-color: #1eae45;
}

.nav-cta {
    background-color: #1eae45 !important;
    color: #ffffff !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 4px;
    border-bottom: 2px solid #1eae45 !important;
}

.nav-cta:hover {
    background-color: #179a37 !important;
    border-bottom-color: #179a37 !important;
    color: #ffffff !important;
}

/* Dropdown Menu Styles - Desktop Only */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
}

.main-nav .dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.main-nav .dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a2332;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    width: 300px;
    max-height: 450px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.25s ease;
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #0d1117;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #1eae45;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #179a37;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 0.875rem 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    color: #e5e7eb !important;
    font-size: 0.9rem !important;
    border-bottom: none !important;
    white-space: nowrap;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
    border-left: 3px solid transparent;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    background-color: rgba(30, 174, 69, 0.15);
    color: #ffffff !important;
    padding-left: 1.75rem !important;
    border-left-color: #1eae45;
}

.dropdown-view-all {
    margin-top: 0.5rem;
    padding-top: 0;
    border-top: 2px solid rgba(30, 174, 69, 0.3);
    width: 100%;
}

.dropdown-view-all a {
    color: #1eae45 !important;
    font-weight: 700;
    font-size: 1rem !important;
    text-align: center;
    background-color: rgba(30, 174, 69, 0.05);
    padding: 1.125rem 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    width: 100%;
    display: block;
    border-left: none !important;
    box-sizing: border-box;
}

.dropdown-view-all a:hover {
    background-color: rgba(30, 174, 69, 0.25) !important;
    color: #ffffff !important;
    border-left: none !important;
    padding: 1.125rem 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* =================================================================
   MOBILE HAMBURGER MENU & SIDEBAR
   ================================================================= */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
    flex-direction: column;
    gap: 0.375rem;
}

.hamburger-line {
    width: 1.75rem;
    height: 0.1875rem;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

/* Mobile sidebar overlay */
.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 35, 50, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* =================================================================
   HERO SECTION WITH VIDEO BACKGROUND
   ================================================================= */

.hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 50, 0.92) 0%, rgba(45, 55, 72, 0.88) 100%),
        url('https://images.unsplash.com/photo-1535531298052-7457bcdae809?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: #ffffff;
    padding: 10rem 0 9rem;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(160, 134, 107, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 134, 107, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 920px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(160, 134, 107, 0.15);
    color: #e5e7eb;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(160, 134, 107, 0.3);
}

.hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 2.75rem;
    max-width: 840px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.75rem;
    flex-wrap: wrap;
}

.btn-secondary-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
    text-decoration: none;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =================================================================
   PAGE HERO WITH IMAGE BACKGROUND
   ================================================================= */

.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0 6rem;
    position: relative;
    color: #ffffff;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85) 0%, rgba(45, 55, 72, 0.85) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e0;
    line-height: 1.6;
}

/* =================================================================
   TRUST BAR
   ================================================================= */

.trust-bar {
    background-color: #ffffff;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: #5a6b7d;
    line-height: 1.5;
}

/* =================================================================
   STATISTICS SECTION - DARK WITH NUMBERS
   ================================================================= */

.stats-section {
    background: #0a0f1a;
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(160, 134, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 600;
    color: #1eae45;
    margin-bottom: 1rem;
    line-height: 1;
    text-align: center;
    width: 100%;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e0;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-weight: 600;
    min-height: 2.8rem;
    text-align: center;
    width: 100%;
}

.stat-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 220px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

/* =================================================================
   SECTION HEADERS
   ================================================================= */

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1eae45;
    margin-bottom: 1rem;
}

/* =================================================================
   TWO COLUMN LAYOUTS
   ================================================================= */

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.column-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.column-highlight {
    position: sticky;
    top: 100px;
}

.highlight-box {
    background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.tag {
    background-color: #e5e7eb;
    color: #3d4852;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* =================================================================
   IMAGE + TEXT SECTION
   ================================================================= */

.image-text-section {
    padding: 6rem 0;
}

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

.image-text-grid.reverse {
    direction: rtl;
}

.image-text-grid.reverse > * {
    direction: ltr;
}

.image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-text-image {
    position: relative;
}

.image-text-image img {
    width: 100%;
    max-width: 600px;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.text-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.text-container p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
}

/* =================================================================
   EXPERT PREVIEW CARDS
   ================================================================= */

.expert-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.expert-card {
    background-color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: #1eae45;
}

.expert-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expert-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.expert-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5a6b7d;
    margin-bottom: 0;
}

/* =================================================================
   STRENGTHS GRID
   ================================================================= */

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

.strength-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.strength-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #1eae45;
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.strength-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.strength-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3d4852;
    margin-bottom: 0;
}

/* =================================================================
   WHY CHOOSE - VISUAL SPLIT SECTION
   ================================================================= */

.why-choose-visual {
    background-color: #f7f8fa;
}

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

.why-narrative p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.client-types {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.client-types h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.client-type-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.client-type-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.client-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.client-type-item strong {
    display: block;
    font-size: 1rem;
    color: #1a2332;
    margin-bottom: 0.25rem;
}

.client-type-item span:last-child {
    display: block;
    font-size: 0.9375rem;
    color: #5a6b7d;
    line-height: 1.5;
}

.why-guarantees {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-box,
.no-guarantee-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.guarantee-box {
    border-left: 4px solid #1eae45;
}

.no-guarantee-box {
    border-left: 4px solid #5a6b7d;
}

.guarantee-box h3,
.no-guarantee-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

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

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

.check-icon {
    color: #1eae45;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.guarantee-item span:last-child {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #3d4852;
}

.no-guarantee-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =================================================================
   PROCESS FLOW
   ================================================================= */

.process-section {
    background-color: #ffffff;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    width: 220px;
    height: 220px;
    text-align: center;
    padding: 1.25rem 1rem;
    background-color: #f7f8fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-step:hover {
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.step-number {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1eae45;
    margin-bottom: 1rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #5a6b7d;
    margin-bottom: 0;
}

.process-arrow {
    font-size: 1.5rem;
    color: #1eae45;
    flex-shrink: 0;
}

/* =================================================================
   VIP PREVIEW - ENHANCED
   ================================================================= */

.vip-preview-enhanced {
    background:
        linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(45, 55, 72, 0.92) 100%),
        url('../media/vip-services.jpg') center/cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.vip-preview-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(160, 134, 107, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.vip-visual {
    max-width: 800px;
}

.vip-badge {
    display: inline-block;
    background-color: rgba(160, 134, 107, 0.2);
    color: #e5e7eb;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(160, 134, 107, 0.4);
}

.vip-visual h2 {
    color: #ffffff;
    font-size: 2.375rem;
    margin-bottom: 1.5rem;
}

.vip-visual p {
    color: #cbd5e0;
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vip-feature span:last-child {
    font-size: 0.9375rem;
    color: #e5e7eb;
}

/* =================================================================
   FAQ GRID
   ================================================================= */

.faq-preview-interactive {
    background-color: #ffffff;
}

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

.faq-card {
    background-color: #f7f8fa;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.faq-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3d4852;
    margin-bottom: 0;
}

/* =================================================================
   TESTIMONIALS - SLIDING CAROUSEL
   ================================================================= */

.testimonial-section {
    background-color: #f7f8fa;
    padding: 6rem 0;
}

.testimonial-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-content {
    min-width: 100%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #1eae45;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 2rem;
    align-items: start;
}

.testimonial-profile {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1eae45;
}

.testimonial-text {
    flex: 1;
}

.quote-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    color: #1eae45;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

blockquote p {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1.5rem;
}

cite {
    font-size: 0.9375rem;
    color: #5a6b7d;
    font-style: normal;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-btn {
    background-color: #1eae45;
    color: #ffffff;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(160, 134, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background-color: #179a37;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(160, 134, 107, 0.5);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #1eae45;
    width: 30px;
    border-radius: 6px;
}

/* =================================================================
   BUTTONS & CALLS TO ACTION
   ================================================================= */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #1eae45;
    color: #ffffff;
    border-color: #1eae45;
}

.btn-primary:hover {
    background-color: #179a37;
    border-color: #179a37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(160, 134, 107, 0.3);
}

.btn-primary-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Button override for dark backgrounds */
.final-positioning .btn-primary-large {
    background-color: #1eae45;
    color: #ffffff;
    border: 2px solid #1eae45;
}

.final-positioning .btn-primary-large:hover {
    background-color: #179a37;
    border-color: #179a37;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #1a2332;
    border-color: #1a2332;
}

.btn-secondary:hover {
    background-color: #1a2332;
    color: #ffffff;
    transform: translateY(-2px);
}

.section-cta {
    margin-top: 2.75rem;
    text-align: center;
}

.section-cta.centered {
    text-align: center;
}

/* =================================================================
   SECTION COMPONENTS
   ================================================================= */

.diplomatic-club-intro {
    background-color: #f7f8fa;
}

.core-strengths {
    background-color: #ffffff;
}

.intro-text p,
.narrative-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
}

/* =================================================================
   CONTACT CTA SECTION
   ================================================================= */

.contact-cta-section {
    background-color: #f7f8fa;
    padding: 6.5rem 0;
}

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

.contact-cta-content h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-family: Georgia, "Times New Roman", serif;
}

.contact-cta-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

.contact-cta-content .btn-primary-large {
    display: inline-block;
    background-color: transparent;
    color: #1a2332;
    padding: 0.875rem 2.5rem;
    border: 2px solid #1a2332;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-cta-content .btn-primary-large:hover {
    background-color: #1a2332;
    color: #ffffff;
}

.contact-cta-image {
    position: relative;
}

.contact-cta-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* =================================================================
   FINAL POSITIONING
   ================================================================= */

.final-positioning {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.final-positioning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(160, 134, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.positioning-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.positioning-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

.positioning-content p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.final-statement {
    text-align: center;
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    padding: 1.5rem 2rem;
    background: rgba(160, 134, 107, 0.15);
    border-left: 4px solid #1eae45;
    border-radius: 4px;
}

.final-statement strong {
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

/* =================================================================
   PAGE HEADER (Internal Pages)
   ================================================================= */

.page-header {
    background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 5rem 0 4.5rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: #5a6b7d;
    max-width: 820px;
}

/* =================================================================
   EXPERT PROFILES
   ================================================================= */

.experts-section {
    max-width: 1000px;
    margin: 0 auto;
}

.expert-profile {
    margin-bottom: 4.5rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.expert-profile:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.expert-profile:last-child {
    margin-bottom: 0;
}

.expert-profile h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.expert-title {
    font-size: 1rem;
    color: #1eae45;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.5;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.expert-bio p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

/* =================================================================
   SERVICES GRID
   ================================================================= */

.services-section {
    max-width: 1100px;
    margin: 0 auto;
}

.service-category {
    margin-bottom: 3.5rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-category:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    font-size: 1.875rem;
    margin-bottom: 1.75rem;
    color: #1a2332;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-category h2::before {
    content: '→';
    color: #1eae45;
    font-size: 1.5rem;
}

.service-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

/* =================================================================
   FAQ SECTION
   ================================================================= */

.faq-section {
    background-color: #ffffff;
    max-width: 920px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #f7f8fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2332;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(160, 134, 107, 0.05);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1eae45;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-item.active {
    background-color: #ffffff;
    border-color: #1eae45;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-item h2,
.faq-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1.125rem;
    color: #1a2332;
}

.faq-item p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #3d4852;
    margin-bottom: 0;
}

/* =================================================================
   COUNTRIES SECTION
   ================================================================= */

.countries-section {
    max-width: 1000px;
    margin: 0 auto;
}

.country-region {
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.country-region:last-child {
    margin-bottom: 0;
}

.country-region h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a2332;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1eae45;
}

.country-region h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    margin-top: 2.25rem;
    color: #1a2332;
}

.country-region h3:first-of-type {
    margin-top: 0;
}

.region-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

/* =================================================================
   MEDIA & INSIGHTS
   ================================================================= */

.articles-section {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-article {
    margin-bottom: 4rem;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.insight-article:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.insight-article:last-child {
    margin-bottom: 0;
}

.insight-article h2 {
    font-size: 1.875rem;
    margin-bottom: 0.875rem;
    color: #1a2332;
}

.article-meta {
    font-size: 0.9375rem;
    color: #1eae45;
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.article-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

/* =================================================================
   CONTACT SECTION
   ================================================================= */

.contact-section {
    max-width: 920px;
    margin: 0 auto;
}

.contact-method {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-method:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

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

.contact-method h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1a2332;
}

.contact-method p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3d4852;
}

/* =================================================================
   CTA SECTIONS
   ================================================================= */

.cta-section {
    background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
    text-align: center;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.125rem;
    margin-bottom: 1.25rem;
}

.cta-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #3d4852;
    margin-bottom: 2rem;
}

/* Services CTA with Background Image */
.services-cta-bg {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.92) 0%, rgba(45, 55, 72, 0.88) 100%), url('../img/services-cta-bg.jpg') center/cover no-repeat;
    position: relative;
}

.services-cta-bg .cta-content h2 {
    color: #ffffff;
}

.services-cta-bg .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* =================================================================
   FOOTER
   ================================================================= */

.site-footer {
    background: linear-gradient(180deg, #1a2332 0%, #0f1520 100%);
    color: #e5e7eb;
    padding: 0;
}

/* Footer Top - Brand & CTA */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
}

.footer-brand-section {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #9ca3af;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: #1eae45;
    border-color: #1eae45;
    color: white;
    transform: translateY(-3px);
}

.footer-cta-section {
    background: linear-gradient(135deg, rgba(30, 174, 69, 0.15) 0%, rgba(30, 174, 69, 0.05) 100%);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(30, 174, 69, 0.3);
    text-align: center;
}

.footer-cta-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-cta-section p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1eae45;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background-color: #179a37;
    color: white;
    transform: translateY(-2px);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link-column h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-column ul li {
    margin-bottom: 0.6rem;
}

.footer-link-column ul li a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link-column ul li a:hover {
    color: #1eae45;
    padding-left: 5px;
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-block .contact-item i {
    color: #1eae45;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.footer-contact-block .contact-item div {
    display: flex;
    flex-direction: column;
}

.footer-contact-block .contact-item strong {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-contact-block .contact-item span {
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-contact-block .contact-item a {
    color: #9ca3af;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-contact-block .contact-item a:hover {
    color: #1eae45;
}

/* Team Credentials Bar */
.footer-credentials {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.credentials-title {
    text-align: center;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.credential-badge i {
    color: #1eae45;
    font-size: 0.7rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
}

.footer-bottom-left p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #6b7280;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #1eae45;
}

.footer-bottom-right {
    max-width: 400px;
}

.footer-disclaimer {
    color: #4b5563;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.5;
}

/* Legacy support */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 0.5rem;
    margin-top: 1.5rem;
    max-width: 100%;
}

.cert-badge {
    background-color: rgba(160, 134, 107, 0.15);
    color: #cbd5e0;
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.8125rem;
    border: 1px solid rgba(160, 134, 107, 0.3);
    white-space: nowrap;
}

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    color: white;
    padding: 1.25rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: #1eae45;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: #1eae45;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #179a37;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cookie-accept {
    background-color: #1eae45;
    color: white;
    border-color: #1eae45;
}

.cookie-accept:hover {
    background-color: #179a37;
    border-color: #179a37;
}

.cookie-decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 1.5rem;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-text i {
        font-size: 1.75rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

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

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

.footer-section ul li a {
    font-size: 0.9375rem;
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2d3748;
}

.footer-contact-info p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.footer-contact-info p strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.8125rem !important;
    color: #6b7280 !important;
}

/* =================================================================
   RESPONSIVE DESIGN - FULLY MOBILE OPTIMIZED
   ================================================================= */

@media (max-width: 1024px) {
    /* Prevent horizontal scrolling */
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 2rem;
    }

    /* Stats grid - 2 columns on tablet */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.75rem;
        margin-bottom: 0.75rem;
    }

    .stat-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .stat-description {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    /* Make header sticky on mobile and tablet */
    .site-header {
        position: sticky;
        top: 0;
    }

    /* Show hamburger menu on tablet */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Convert navigation to sidebar */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        padding-top: 1rem;
    }

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

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

    .main-nav li {
        border-bottom: 1px solid #e5e7eb;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 1.125rem 1.5rem;
        display: block;
        border-bottom: none !important;
        color: #1a2332 !important;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background-color: #f7f8fa;
        color: #1eae45 !important;
    }

    .nav-cta {
        margin: 1rem 1.5rem;
        display: block;
        text-align: center;
        border-radius: 4px !important;
    }

    /* Mobile Dropdown Styles */
    .main-nav .dropdown {
        position: relative;
    }

    .main-nav .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav .dropdown > a i {
        transition: transform 0.3s ease;
        color: #1a2332;
    }

    .main-nav .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .main-nav .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        overflow-x: hidden;
        transform: none;
        transition: all 0.3s ease;
        background-color: #f7f8fa;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .main-nav .dropdown-menu li {
        width: 100%;
        display: block;
        overflow: hidden;
    }

    .main-nav .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 800px;
        padding: 0.5rem 0;
    }

    .main-nav .dropdown-menu a {
        padding: 0.875rem 2.5rem !important;
        font-size: 0.9375rem !important;
        color: #4a5568 !important;
    }

    .main-nav .dropdown-menu a:hover {
        background-color: #e5e7eb;
        padding-left: 2.75rem !important;
    }

    .main-nav .dropdown-view-all {
        width: 100% !important;
        display: block !important;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid #cbd5e0;
        flex-shrink: 0;
    }

    .main-nav .dropdown-view-all a {
        color: #1eae45 !important;
        font-weight: 600;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        padding: 0.875rem 2.5rem !important;
    }

    .main-nav .dropdown-view-all a:hover {
        background-color: #e5e7eb;
        padding-left: 2.5rem !important;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .trust-grid,
    .expert-preview-grid,
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column-layout,
    .why-content-split,
    .image-text-grid,
    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-cta-image img {
        height: 400px;
    }

    .column-highlight {
        position: static;
    }

    .process-arrow {
        display: none;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Make sidebar 90% width on very small screens */
    .main-nav {
        width: 90% !important;
        max-width: 280px !important;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 6rem 0 5rem;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .trust-grid,
    .expert-preview-grid,
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .process-flow {
        flex-direction: column;
    }

    .process-step {
        min-width: 100%;
    }

    .testimonial-content {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    blockquote p {
        font-size: 1.0625rem;
    }

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

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-description {
        font-size: 0.8125rem;
    }

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

    /* New Footer Responsive */
    .footer-top {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 0;
    }

    .footer-brand-section {
        max-width: 100%;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-cta-section {
        width: 100%;
        padding: 1.75rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2.5rem 0;
    }

    .footer-credentials {
        padding: 1.5rem 0;
    }

    .credentials-grid {
        gap: 0.4rem;
    }

    .credential-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem 0;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-bottom-right {
        max-width: 100%;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .positioning-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .page-header h1,
    .page-hero h1 {
        font-size: 1.875rem;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .quote-mark {
        font-size: 3rem;
    }

    blockquote p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .image-text-grid,
    .contact-cta-grid {
        gap: 2rem;
    }

    .contact-cta-content h2 {
        font-size: 1.875rem;
    }

    .contact-cta-image img {
        height: 300px;
    }

    /* Footer 480px */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact-block {
        align-items: center;
    }

    .footer-contact-block .contact-item {
        justify-content: center;
    }

    .credential-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }

    .credential-badge i {
        display: none;
    }
}

/* =================================================================
   ACCESSIBILITY & PRINT STYLES
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .site-header,
    .site-footer,
    .hero-cta,
    .section-cta,
    .cta-section,
    .testimonial-controls {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }
}

/* =================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

/* =================================================================
   SCROLL TO TOP BUTTON
   ================================================================= */

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #1eae45;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #179a37;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(160, 134, 107, 0.4);
}

/* =================================================================
   GLASS/BLUR CARD EFFECTS
   ================================================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card-dark {
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* =================================================================
   SMOOTH ANIMATIONS & TRANSITIONS
   ================================================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

/* =================================================================
   PARALLAX & FLOATING EFFECTS
   ================================================================= */

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

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

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element-slow {
    animation: float 8s ease-in-out infinite;
}

/* Mobile Responsive for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    /* FAQ grid - single column on mobile */
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .faq-card {
        padding: 2rem 1.5rem;
    }
}

/* Mobile responsive for FAQ grid on tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =================================================================
   FONT AWESOME ICON STYLING
   ================================================================= */

.expert-flag i,
.strength-icon i,
.client-icon i,
.feature-icon i,
.faq-icon i {
    display: inline-block;
}

.expert-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1eae45;
}

.strength-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
    color: #1eae45;
}

.client-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    color: #1eae45;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #1eae45;
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: #1eae45;
}

/* =================================================================
   AWARDS CAROUSEL
   ================================================================= */

.awards-carousel-section {
    background-color: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.awards-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.awards-carousel-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.awards-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    padding: 1rem;
}

.award-item img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.award-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.award-item p {
    font-size: 0.75rem;
    color: #5a6b7d;
    line-height: 1.4;
    margin: 0;
    max-width: 180px;
}

/* Certification Logos */
.certifications-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    max-width: 150px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
}

.certification-item img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.certification-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.certification-item p {
    font-size: 0.7rem;
    color: #5a6b7d;
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .awards-carousel-track {
        gap: 2rem;
    }

    .certifications-row {
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .certification-item {
        min-width: 90px;
        max-width: 110px;
        padding: 0.5rem;
    }

    .certification-item img {
        height: 45px;
        max-width: 90px;
    }

    .certification-item p {
        font-size: 0.6rem;
    }

    /* Adjust floating buttons for mobile */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 20px;
        font-size: 1.125rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}
