/* ==========================================================================
   IKON Global Advisors - Complete Stylesheet
   Version: 2.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables / Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Primary Colors */
    --color-primary: #1F3C88;
    --color-primary-dark: #152a5f;
    --color-primary-light: #2a4fa3;
    
    /* Secondary Colors */
    --color-secondary: #2563eb;
    --color-accent: #00B04F;
    --color-accent-dark: #008a3e;
    
    /* Neutral Colors */
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-muted: #9ca3af;
    --color-white: #ffffff;
    --color-background: #f7f9fb;
    --color-background-alt: #f1f5f9;
    --color-border: #e5e7eb;
    --color-border-light: #f3f4f6;
    
    /* Feedback Colors */
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    
    /* WhatsApp */
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    
    /* Header */
    --header-height: 80px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { margin-bottom: var(--space-4); }

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover { color: var(--color-primary); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol { list-style: none; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

section {
    padding: var(--space-20) 0;
}

.site-main {
    min-height: 60vh;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-main {
    flex: 1 0 auto;
}
.site-footer {
    flex-shrink: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-3);
}

.section-header p {
    color: var(--color-text-light);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.5;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn-block { width: 100%; }

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: var(--color-background);
    color: var(--color-primary);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
    background: var(--color-whatsapp-dark);
    border-color: var(--color-whatsapp-dark);
    color: var(--color-white);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-secondary);
    padding: 0;
    font-weight: 600;
}

.btn-link:hover {
    color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
    position: relative;
    z-index: 1000;
}

.header-top {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: var(--space-6);
}

.header-top-left a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-white);
    opacity: 0.9;
    transition: opacity var(--transition-fast);
    font-size: var(--text-xs);
}

.header-top-left a:hover {
    opacity: 1;
}

.header-top-left svg {
    opacity: 0.8;
}

/* Utility Navigation (PwC Style) */
.utility-nav {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.utility-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-xs);
    transition: all var(--transition-fast);
}

.utility-nav a:hover {
    color: var(--color-white);
}

.utility-nav .nav-divider {
    color: rgba(255, 255, 255, 0.4);
}

.header-main {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header-main.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
    z-index: 1000;
}

/* Header Actions (PwC Style) */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: scale(1.05);
}

/* Search Toggle */
.search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    border-radius: var(--radius-full);
}

.search-toggle:hover {
    background: var(--color-background);
    color: var(--color-primary);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 100%;
    max-width: 700px;
    padding: var(--space-8);
    text-align: center;
}

.search-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.search-close:hover {
    opacity: 1;
}

.search-overlay form {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.search-overlay input {
    flex: 1;
    padding: var(--space-5);
    font-size: var(--text-xl);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    color: var(--color-white);
}

.search-overlay input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-overlay input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.popular-searches {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.popular-searches span {
    margin-right: var(--space-3);
}

.popular-searches a {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin: 0 var(--space-1);
    transition: all var(--transition-fast);
}

.popular-searches a:hover {
    background: var(--color-accent);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo img {
    height: 50px;
    width: auto;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.btn-whatsapp-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.btn-whatsapp-small:hover {
    background: var(--color-whatsapp-dark);
    transform: scale(1.1);
}

/* Navigation */
.main-navigation .primary-menu {
    display: flex;
    gap: var(--space-1);
}

.main-navigation .primary-menu > li {
    position: relative;
}

.main-navigation .primary-menu > li > a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.main-navigation .primary-menu > li > a:hover,
.main-navigation .primary-menu > li.current-menu-item > a {
    color: var(--color-primary);
}

/* Dropdown */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 100;
    padding: var(--space-2) 0;
    border: 1px solid var(--color-border-light);
}

.main-navigation .primary-menu > li:hover > .sub-menu,
.main-navigation .primary-menu > li:hover > .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    color: var(--color-text);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.main-navigation .sub-menu li a:hover {
    background: var(--color-background);
    color: var(--color-primary);
}

.main-navigation .sub-menu li a .flag {
    font-size: 1.1em;
}

/* Locations Menu Styling */
.locations-menu {
    min-width: 220px;
}

.locations-menu .menu-heading {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--color-background);
}

.locations-menu .menu-divider {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-2) 0;
}

/* Mega Menu (PwC Style) */
.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 700px;
    background: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
    border-top: 3px solid var(--color-primary);
    overflow: hidden;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.mega-menu-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
    min-width: 900px;
}

.mega-menu-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    min-width: 700px;
}

.mega-menu-column {
    padding: var(--space-6);
    border-right: 1px solid var(--color-border-light);
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-column h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-column ul {
    padding: 0;
    margin: 0;
}

.mega-menu-column li {
    margin-bottom: var(--space-1);
}

.mega-menu-column a {
    display: block;
    padding: var(--space-2) 0;
    color: var(--color-text);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.mega-menu-column a:hover {
    color: var(--color-primary);
    padding-left: var(--space-2);
}

.mega-menu-footer {
    padding: var(--space-4) var(--space-6);
    background: var(--color-background);
    border-top: 1px solid var(--color-border-light);
}

.mega-menu-footer .view-all {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
}

.mega-menu-footer .view-all:hover {
    color: var(--color-primary-dark);
}

.main-navigation .sub-menu li:last-child a {
    border-bottom: none;
}

.main-navigation .sub-menu li a:hover {
    background: var(--color-background);
    color: var(--color-secondary);
    padding-left: var(--space-5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.hamburger {
    display: block;
    width: 24px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Header CTA */
.header-cta .btn {
    padding: var(--space-2) var(--space-5);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-20) 0 var(--space-16);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,43,73,0.95) 0%, rgba(26,43,73,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-5);
}

.hero-text h1 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: var(--space-5);
    line-height: 1.15;
    font-weight: 700;
}

.hero-text > p {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    line-height: 1.7;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.hero-stats .stat-label {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Featured Services (PwC Cards) */
.featured-services-section {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.featured-card {
    position: relative;
    padding: var(--space-8);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-white);
    overflow: hidden;
    transition: all var(--transition-base);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.featured-tax {
    background: linear-gradient(135deg, #1a2b49 0%, #2d4a7c 100%);
}

.featured-assurance {
    background: linear-gradient(135deg, #0d7377 0%, #14a3a8 100%);
}

.featured-advisory {
    background: linear-gradient(135deg, #d85c27 0%, #e8834a 100%);
}

.featured-business {
    background: linear-gradient(135deg, #5c3d2e 0%, #8b5e3c 100%);
}

.featured-card .card-content {
    position: relative;
    z-index: 2;
}

.featured-card h3 {
    color: var(--color-white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.featured-card p {
    opacity: 0.9;
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.featured-card .card-link {
    font-weight: 600;
    font-size: var(--text-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.featured-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.featured-card:hover {
    transform: translateY(-5px);
}

/* Why Us Section */
.why-us-section {
    padding: var(--space-20) 0;
    background: var(--color-background);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-12);
    align-items: center;
}

.why-us-content .section-label {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.why-us-content h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-5);
}

.why-us-content > p {
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
}

.why-list li {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    align-items: flex-start;
}

.why-list li svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list li span {
    line-height: 1.6;
}

.why-list li strong {
    color: var(--color-text);
}

.why-us-image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

/* Services Tabs */
.services-tabs {
    margin-top: var(--space-10);
}

.tabs-nav {
    display: flex;
    gap: var(--space-2);
    border-bottom: 2px solid var(--color-border);
    margin-bottom: var(--space-8);
}

.tab-btn {
    padding: var(--space-4) var(--space-6);
    background: none;
    border: none;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-light);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-primary);
}

.tab-btn.active {
    color: var(--color-primary);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.tab-item a {
    display: block;
    padding: var(--space-4) var(--space-5);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tab-item a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Insights Section */
.insights-section {
    padding: var(--space-20) 0;
    background: var(--color-white);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.insight-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.insight-featured {
    grid-row: span 3;
}

.insight-featured .insight-image {
    height: 200px;
}

.insight-content {
    padding: var(--space-5);
}

.insight-category {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.insight-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.insight-card:hover h3 {
    color: var(--color-primary);
}

.insight-featured h3 {
    font-size: var(--text-xl);
}

.insight-card p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.insight-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
}

/* Country Card Update */
.country-card .country-link {
    display: block;
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-top: var(--space-2);
    opacity: 0;
    transform: translateY(5px);
    transition: all var(--transition-fast);
}

.country-card:hover .country-link {
    opacity: 1;
    transform: translateY(0);
}

/* Legacy Hero Styles (Keep for compatibility) */
.hero-tagline {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-left h1 {
    color: var(--color-white);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-5);
    line-height: 1.15;
}

.hero-left > p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.hero-features {
    margin-bottom: var(--space-6);
    padding: 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
    opacity: 0.95;
}

.hero-features li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-right {
    position: relative;
    z-index: 1;
}

.hero-stats .stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-white);
}

.hero-stats .stat-label {
    font-size: var(--text-sm);
    opacity: 0.85;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 90%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Trust Bar */
.trust-bar {
    background: var(--color-white);
    padding: var(--space-8) 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
}

.trust-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: var(--text-base);
    color: var(--color-text);
    margin-bottom: 2px;
}

.trust-item span {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Trust Bar Legacy
   -------------------------------------------------------------------------- */
.trust-bar-section {
    background: var(--color-white);
    padding: var(--space-12) 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: var(--radius-xl);
    margin-left: var(--container-padding);
    margin-right: var(--container-padding);
    max-width: calc(var(--container-max) - var(--container-padding) * 2);
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.trust-item-legacy {
    text-align: center;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
}

.trust-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-item h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.trust-item p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Services Section (EY Style)
   -------------------------------------------------------------------------- */
.services-section {
    background: var(--color-background);
    padding: var(--space-20) 0;
}

/* Service Categories - EY Style Layout */
.service-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.service-category {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-light);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg {
    color: var(--color-white);
}

.category-header h3 {
    font-size: var(--text-xl);
    margin: 0;
    color: var(--color-primary);
}

.service-category > p {
    color: var(--color-text-light);
    margin-bottom: var(--space-5);
    line-height: 1.7;
}

.service-list {
    margin-bottom: var(--space-5);
    padding: 0;
}

.service-list li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list a {
    color: var(--color-text);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.service-list a::before {
    content: '?';
    margin-right: var(--space-2);
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.service-list a:hover {
    color: var(--color-primary);
    padding-left: var(--space-2);
}

.service-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.category-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
}

.category-link:hover {
    color: var(--color-primary-dark);
}

/* Service Highlights Bar */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    background: var(--color-primary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-10);
}

.highlight-item {
    text-align: center;
    color: var(--color-white);
}

.highlight-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: var(--space-1);
}

.highlight-text {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* Legacy Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-5);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

/* --------------------------------------------------------------------------
   Countries Section
   -------------------------------------------------------------------------- */
.countries-section {
    background: var(--color-white);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-4);
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.country-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.country-flag {
    width: 60px;
    height: 45px;
    margin-bottom: var(--space-3);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-card h3 {
    font-size: var(--text-base);
    margin: 0;
    color: var(--color-text);
}

/* --------------------------------------------------------------------------
   Why Choose Us
   -------------------------------------------------------------------------- */
.why-choose-section {
    background: var(--color-background);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.why-choose-left h2 {
    margin-bottom: var(--space-6);
}

.why-choose-left p {
    color: var(--color-text-light);
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

.check-list {
    margin-bottom: var(--space-8);
}

.check-list li {
    padding: var(--space-2) 0;
    padding-left: var(--space-8);
    position: relative;
    color: var(--color-text);
}

.check-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.feature-box {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--space-2);
}

.feature-label {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   Process Section
   -------------------------------------------------------------------------- */
.process-section {
    background: var(--color-white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto var(--space-4);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 30px;
    height: 30px;
}

.process-step h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
}

.process-step p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-section {
    background: var(--color-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.testimonial-content p {
    color: var(--color-text);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--color-background);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: var(--text-sm);
    margin: 0;
}

.author-info span {
    font-size: var(--text-xs);
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   Team Section
   -------------------------------------------------------------------------- */
.team-section {
    background: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.team-card {
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--color-background);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h4 {
    margin-bottom: var(--space-1);
}

.team-role {
    display: block;
    color: var(--color-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.team-info p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin: 0;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
    padding: var(--space-20) 0;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-5);
    background: var(--color-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-background);
}

.faq-icon {
    font-size: var(--text-2xl);
    color: var(--color-secondary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-5) var(--space-5);
}

.faq-answer p {
    color: var(--color-text-light);
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --------------------------------------------------------------------------
   Quick Links Section (PwC Style)
   -------------------------------------------------------------------------- */
.quick-links-section {
    background: var(--color-primary);
    padding: 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.quick-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    background: transparent;
    color: var(--color-white);
    text-align: left;
    transition: all var(--transition-base);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link-card:last-child {
    border-right: none;
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.quick-link-card .link-title {
    font-size: var(--text-sm);
    font-weight: 500;
}

.quick-link-card .link-arrow {
    font-size: var(--text-lg);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.quick-link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --------------------------------------------------------------------------
   Footer (PwC Style)
   -------------------------------------------------------------------------- */
.site-footer {
    background: #1a1a1a;
    color: var(--color-white);
}

.footer-main {
    padding: var(--space-12) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.2fr;
    gap: 32px;
    align-items: flex-start;
}
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.footer-logo {
    margin-bottom: var(--space-4);
}

.footer-logo img {
    height: 40px;
}

.footer-tagline {
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.footer-about {
    opacity: 0.7;
    margin-bottom: var(--space-5);
    line-height: 1.7;
    font-size: var(--text-sm);
}

.footer-column h4 {
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    padding: 0;
}

.footer-column ul li {
    margin-bottom: var(--space-2);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.locations-list li a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.locations-list .flag {
    font-size: 1.1em;
}

.contact-list {
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.contact-list li svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-sm);
}

.btn-footer {
    margin-top: var(--space-5);
    width: 100%;
    text-align: center;
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-whatsapp:hover {
    background: var(--color-whatsapp);
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: var(--text-sm);
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: var(--space-6);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.footer-nav a:hover {
    color: var(--color-white);
}

.footer-disclaimer {
    font-size: var(--text-xs);
    opacity: 0.5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.newsletter-form {
    margin-top: var(--space-6);
}

.newsletter-form h5 {
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.newsletter {
    display: flex;
    gap: var(--space-2);
}

.newsletter input {
    flex: 1;
    padding: var(--space-3);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}

.newsletter .btn {
    padding: var(--space-3) var(--space-4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-5) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: var(--text-sm);
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: var(--space-6);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.footer-nav a:hover {
    color: var(--color-white);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    background: var(--color-whatsapp-dark);
    transform: scale(1.1);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Page Templates
   -------------------------------------------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-20) 0;
    color: var(--color-white);
    text-align: center;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.page-hero p {
    font-size: var(--text-xl);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Country Hero */
.country-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: var(--space-20) 0;
    color: var(--color-white);
    text-align: center;
}

.country-flag-large {
    width: 100px;
    height: 75px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.country-flag-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

/* Service Hero */
.service-hero {
    background: var(--color-primary);
    padding: var(--space-16) 0;
    color: var(--color-white);
    text-align: center;
}

.service-hero h1 {
    color: var(--color-white);
}

/* Who We Serve */
.who-we-serve {
    background: var(--color-background);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.serve-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.serve-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.serve-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.serve-card p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.features-grid .feature-box {
    text-align: center;
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.features-grid .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-4);
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
}

/* Contact Page */
.contact-section {
    padding: var(--space-20) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-methods {
    margin-bottom: var(--space-8);
}

.contact-method {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.method-icon {
    font-size: 2rem;
}

.method-details h4 {
    margin-bottom: var(--space-1);
}

.method-details a,
.method-details p {
    color: var(--color-text-light);
    margin: 0;
}

.global-offices h3 {
    margin-bottom: var(--space-4);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
}

.office {
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* Contact Form */
.contact-form-box {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-box h2 {
    margin-bottom: var(--space-2);
}

.contact-form-box > p {
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-message {
    margin-top: var(--space-4);
    padding: var(--space-3);
    border-radius: var(--radius-md);
    text-align: center;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

/* Blog */
.blog-section {
    padding: var(--space-16) 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-10);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-placeholder {
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-bg {
    font-size: 3rem;
}

.blog-content {
    padding: var(--space-5);
}

.blog-meta {
    margin-bottom: var(--space-2);
}

.blog-date {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.blog-content h2 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.blog-content h2 a {
    color: var(--color-primary);
}

.blog-content p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.read-more {
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: var(--space-6);
}

.sidebar-widget h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--color-secondary);
}

.sidebar-widget ul li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.sidebar-widget ul li a {
    color: var(--color-text);
    font-size: var(--text-sm);
}

.sidebar-cta {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
}

.sidebar-cta h3 {
    color: var(--color-white);
    border: none;
}

.sidebar-cta p {
    opacity: 0.9;
    margin-bottom: var(--space-4);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.pagination a,
.pagination span {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
}

.pagination a {
    background: var(--color-background);
    color: var(--color-text);
}

.pagination a:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.pagination .current {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* Service Page */
.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-10);
}

.service-main h2 {
    margin-bottom: var(--space-4);
}

.service-main h3 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.service-features {
    margin-bottom: var(--space-6);
}

.service-features li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
}

.service-features li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.countries-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.country-tag {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--color-background);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-text);
}

.country-tag img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.country-tag:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta-box {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--space-6);
}

.sidebar-cta-box h3 {
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.sidebar-cta-box p {
    opacity: 0.9;
    margin-bottom: var(--space-4);
}

.sidebar-cta-box .btn {
    display: block;
    margin-bottom: var(--space-3);
}

.sidebar-services {
    background: var(--color-background);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
}

.sidebar-services h4 {
    margin-bottom: var(--space-4);
}

.sidebar-services ul li {
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-services ul li a {
    color: var(--color-text);
    font-size: var(--text-sm);
}

/* Services Overview */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-full-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-card-header {
    padding: var(--space-6);
    color: var(--color-white);
    text-align: center;
}

.service-card-header .service-icon {
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto var(--space-4);
}

.service-card-header h3 {
    color: var(--color-white);
    margin: 0;
}

.service-card-body {
    padding: var(--space-6);
}

.service-features-list {
    margin: var(--space-4) 0;
}

.service-features-list li {
    padding: var(--space-1) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* Animations */
.service-card,
.country-card,
.testimonial-card,
.team-card,
.feature-box,
.process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate-in,
.country-card.animate-in,
.testimonial-card.animate-in,
.team-card.animate-in,
.feature-box.animate-in,
.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   PRICING SECTIONS - NEW STYLES
   ========================================================================== */

/* Service Hero Enhanced */
.service-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--space-20) 0 var(--space-16);
    text-align: center;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
}

.service-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto var(--space-8);
    font-size: var(--text-lg);
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.trust-badge {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Pricing Table Section */
.service-pricing,
.country-pricing {
    padding: var(--space-16) 0;
    background: var(--color-background);
}

.pricing-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: var(--space-4) var(--space-6);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background: var(--color-background);
}

.price-cell {
    text-align: right;
    color: var(--color-primary);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-lg);
}

.pricing-note p {
    margin: 0;
    color: var(--color-text);
}

/* Features Grid */
.service-features {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-background);
    border-radius: var(--radius-lg);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: bold;
}

.turnaround-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
    padding: var(--space-4) var(--space-6);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.turnaround-icon {
    font-size: var(--text-2xl);
}

/* Country Cards Grid */
.country-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.country-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.country-card .country-flag {
    width: 60px;
    height: 45px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.country-card .country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-card h3 {
    margin-bottom: var(--space-3);
    color: var(--color-primary);
}

.country-info {
    text-align: left;
    margin-bottom: var(--space-4);
    padding: var(--space-4);
    background: var(--color-background);
    border-radius: var(--radius-lg);
}

.country-info p {
    margin: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.country-pricing-list {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-4);
    margin-bottom: var(--space-4);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
}

.pricing-row strong {
    color: var(--color-primary);
}

/* Country Page Specific Styles */
.country-hero {
    background-size: cover;
    background-position: center;
    padding: var(--space-24) 0;
}

.country-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.country-flag-large {
    width: 120px;
    height: 90px;
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin: var(--space-8) 0;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-value {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    font-family: var(--font-heading);
}

.hero-stats .stat-label {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* Country Overview */
.country-overview {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-8);
}

.tax-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.tax-card {
    background: var(--color-background);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
}

.tax-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-2);
}

.tax-icon {
    font-size: var(--text-2xl);
}

.tax-card h3 {
    font-size: var(--text-base);
    margin: 0;
}

.tax-card p {
    margin: 0;
    color: var(--color-text-light);
}

.tax-rates-table {
    background: var(--color-background);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
}

.tax-rates-table h3 {
    margin-bottom: var(--space-4);
}

.tax-rates-table table {
    width: 100%;
}

.tax-rates-table td {
    padding: var(--space-3);
    border-bottom: 1px solid var(--color-border);
}

.tax-rates-table td:last-child {
    text-align: right;
    color: var(--color-primary);
}

/* Quick Contact Card */
.quick-contact-card {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
}

.quick-contact-card h3 {
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.quick-contact-card p {
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

.quick-contact-card .btn-primary {
    width: 100%;
    margin-bottom: var(--space-4);
    background: var(--color-white);
    color: var(--color-primary);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.contact-method {
    color: var(--color-white);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    opacity: 0.9;
}

.contact-method:hover {
    opacity: 1;
    color: var(--color-white);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.pricing-section {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--color-primary);
}

.pricing-header img {
    width: 40px;
    height: 40px;
}

.pricing-header h3 {
    margin: 0;
    color: var(--color-primary);
}

.pricing-items {
    margin-bottom: var(--space-4);
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

.item-price {
    color: var(--color-primary);
    font-weight: 600;
}

.item-features {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.pricing-disclaimer {
    text-align: center;
    margin-top: var(--space-8);
    padding: var(--space-5);
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1px dashed var(--color-border);
}

/* Services List */
.country-services {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-background);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text);
}

.service-tag .check {
    color: var(--color-accent);
    font-weight: bold;
}

/* Benefits Grid */
.why-choose-country {
    padding: var(--space-16) 0;
    background: var(--color-background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.benefit-card {
    background: var(--color-white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    margin-bottom: var(--space-3);
}

.benefit-card p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin: 0;
}

/* ==========================================================================
   INDUSTRIES PAGE STYLES
   ========================================================================== */
.industries-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.industry-category {
    margin-bottom: var(--space-12);
}

.category-title {
    font-size: var(--text-xl);
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-border);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-5);
}

.industry-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--transition-base);
}

.industry-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.industry-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--color-text);
}

.industry-card p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.industry-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
}

.industry-expertise {
    padding: var(--space-16) 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

/* ==========================================================================
   INSIGHTS PAGE STYLES
   ========================================================================== */
.insights-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.insights-filters {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: var(--space-1);
    overflow-x: auto;
    padding: var(--space-3) 0;
}

.filter-tab {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition-fast);
    color: var(--color-text-light);
}

.filter-tab:hover {
    background: var(--color-background);
    color: var(--color-primary);
}

.filter-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.insights-listing {
    padding: var(--space-12) 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

.insight-placeholder {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.insight-card .insight-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.insight-card .insight-content {
    padding: var(--space-5);
}

.insight-meta {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-xs);
}

.insight-meta .insight-category {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
}

.insight-meta .insight-date {
    color: var(--color-text-light);
}

.insight-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.insight-card:hover h3 {
    color: var(--color-primary);
}

.insight-featured h3 {
    font-size: var(--text-xl);
}

.insight-card p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
}

/* Newsletter */
.newsletter-section {
    padding: var(--space-12) 0;
    background: var(--color-background);
}

.newsletter-box {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
}

.newsletter-content h3 {
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.newsletter-content p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: var(--space-3);
}

.newsletter-form input {
    padding: var(--space-3) var(--space-4);
    border: none;
    border-radius: var(--radius-md);
    min-width: 280px;
}

/* ==========================================================================
   CAREERS PAGE STYLES
   ========================================================================== */
.careers-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.why-join {
    padding: var(--space-16) 0;
}

.open-positions {
    padding: var(--space-16) 0;
    background: var(--color-background);
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.position-card {
    background: var(--color-white);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--color-border-light);
}

.position-card:hover {
    border-color: var(--color-primary);
}

.position-info h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.position-meta {
    display: flex;
    gap: var(--space-4);
}

.meta-item {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.no-match {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--space-8);
}

.no-match h3 {
    margin-bottom: var(--space-2);
}

.no-match p {
    color: var(--color-text-light);
    margin-bottom: var(--space-4);
}

.life-at-ikon {
    padding: var(--space-16) 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.culture-item {
    text-align: center;
    padding: var(--space-5);
}

.culture-item h4 {
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.culture-item p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
}

/* ==========================================================================
   INDUSTRY PAGE STYLES
   ========================================================================== */
.industry-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: var(--space-4);
}

.industry-services {
    padding: var(--space-16) 0;
}

.why-industry {
    padding: var(--space-16) 0;
    background: var(--color-background);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

/* ==========================================================================
   RESPONSIVE - NEW PAGES
   ========================================================================== */
@media (max-width: 768px) {
    .locations-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .expertise-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
    
    .position-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .position-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-tabs {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .ad-container,
    .ad-placeholder,
    .social-share,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

