/*
Theme Name: IVALS SIX GROUP
Theme URI: https://ivalssix.com
Author: IVALS SIX GROUP
Author URI: https://ivalssix.com
Description: A professional recruitment agency theme for IVALS SIX GROUP - connecting talents across borders.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ivals-six
Tags: one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options
*/

/* ========================================
   CSS Variables / Design System
   ======================================== */
:root {
    --primary: #1a2744;
    --primary-light: #2d3f5e;
    --primary-foreground: #ffffff;
    --secondary: #f59e0b;
    --secondary-foreground: #1a2744;
    --accent: #0d9488;
    --accent-foreground: #ffffff;
    --background: #f8fafc;
    --foreground: #1a2744;
    --card: #ffffff;
    --card-foreground: #1a2744;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --radius: 0.75rem;
    --shadow-soft: 0 4px 20px -4px rgba(26, 39, 68, 0.1);
    --shadow-elevated: 0 12px 40px -8px rgba(26, 39, 68, 0.15);
    --gradient-hero: linear-gradient(135deg, #1a2744 0%, #2d3f5e 50%, #0d7377 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   Header Topbar
   ======================================== */
.header-topbar {
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topbar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.topbar-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.topbar-item a:hover {
    color: var(--secondary);
}

.topbar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.topbar-social a:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
    transform: scale(1.1);
}

.topbar-social svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .header-topbar {
        display: none;
    }
}

/* ========================================
   Header / Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-hero);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1rem;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.main-navigation a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--primary);
}

.header-cta {
    display: flex;
    gap: 0.75rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    .main-navigation,
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--card);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }
    
    .main-navigation.active ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: var(--shadow-elevated);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-hero {
    background: var(--gradient-accent);
    color: var(--secondary-foreground);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

.btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-foreground);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.hero-blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(245, 158, 11, 0.2);
}

.hero-blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(13, 148, 136, 0.2);
    animation-delay: 2s;
}

.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-circle-1 {
    width: 800px;
    height: 800px;
}

.hero-circle-2 {
    width: 600px;
    height: 600px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 8rem 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-foreground);
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

@media (min-width: 640px) {
    .hero-stat-number {
        font-size: 2.25rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.375rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 6rem 0;
}

.section-muted {
    background: var(--muted);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title .text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content {
    space-y: 2rem;
}

.about-text {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mission-box {
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 1rem;
    border: 1px solid var(--border);
    margin-top: 2rem;
}

.mission-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.mission-box p {
    color: var(--muted-foreground);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-elevated);
    border-color: rgba(245, 158, 11, 0.3);
}

.value-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    padding: 0.75rem;
    background: rgba(26, 39, 68, 0.1);
    border-radius: 0.75rem;
    transition: background 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(245, 158, 11, 0.2);
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.value-card:hover .value-icon svg {
    color: var(--secondary);
}

.value-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.value-description {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.services-column-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.services-column-icon {
    padding: 0.5rem;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 0.5rem;
}

.services-column-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary);
}

.services-column-icon.accent {
    background: rgba(13, 148, 136, 0.2);
}

.services-column-icon.accent svg {
    color: var(--accent);
}

.services-column-title {
    font-size: 1.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card {
    padding: 1.25rem;
    background: var(--card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-elevated);
    border-color: rgba(245, 158, 11, 0.3);
}

.service-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    padding: 0.625rem;
    background: rgba(26, 39, 68, 0.1);
    border-radius: 0.5rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(245, 158, 11, 0.2);
}

.service-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.service-card:hover .service-icon svg {
    color: var(--secondary);
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.custom-solutions-box {
    padding: 1.5rem;
    background: var(--gradient-hero);
    border-radius: 1rem;
    color: var(--primary-foreground);
    margin-top: 1.5rem;
}

.custom-solutions-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.custom-solutions-box p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ========================================
   Industries Section
   ======================================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.industry-card:hover {
    box-shadow: var(--shadow-elevated);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-4px);
}

.industry-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.industry-icon.secondary {
    background: rgba(245, 158, 11, 0.2);
    color: var(--secondary);
}

.industry-icon.accent {
    background: rgba(13, 148, 136, 0.2);
    color: var(--accent);
}

.industry-icon.primary {
    background: rgba(26, 39, 68, 0.2);
    color: var(--primary);
}

.industry-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.industry-roles {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ========================================
   Destinations Section
   ======================================== */
.source-countries {
    margin-bottom: 3rem;
}

.source-countries h3 {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.source-countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.source-country {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card);
    border-radius: 9999px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.source-country-flag {
    font-size: 1.5rem;
}

.source-country-name {
    font-weight: 500;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.flow-arrow-line {
    height: 1px;
    width: 4rem;
    background: var(--border);
}

.flow-arrow-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-foreground);
}

.flow-arrow-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.destinations-title {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.destination-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.destination-card:hover {
    box-shadow: var(--shadow-elevated);
    border-color: rgba(245, 158, 11, 0.3);
}

.destination-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    flex-direction: row; 
}

.destination-flag {
    font-size: 2.5rem;
}

.destination-name {
    font-size: 1.25rem;
}

.destination-specialty {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.destination-specialty strong {
    color: var(--foreground);
}

/* ========================================
   Why Choose Section
   ======================================== */
.why-choose-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.why-choose-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.why-choose-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.why-choose-blob-1 {
    top: -10rem;
    right: -10rem;
    width: 20rem;
    height: 20rem;
    background: rgba(245, 158, 11, 0.2);
}

.why-choose-blob-2 {
    bottom: -10rem;
    left: -10rem;
    width: 20rem;
    height: 20rem;
    background: rgba(13, 148, 136, 0.2);
}

.why-choose-content {
    position: relative;
    z-index: 10;
}

.why-choose-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.why-choose-header .section-label {
    color: var(--secondary);
}

.why-choose-header .section-title {
    color: var(--primary-foreground);
}

.why-choose-header .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.reasons-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reason-card {
    text-align: center;
}

.reason-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.reason-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-foreground);
    transition: color 0.3s ease;
}

.reason-card:hover .reason-icon svg {
    color: var(--secondary);
}

.reason-title {
    font-size: 1.25rem;
    color: var(--primary-foreground);
    margin-bottom: 0.75rem;
}

.reason-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

.contact-icon {
    padding: 0.75rem;
    background: rgba(26, 39, 68, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--muted-foreground);
}

.social-box {
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 1rem;
}

.social-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-link {
    padding: 0.75rem;
    background: var(--card);
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-form-wrapper {
    background: var(--card);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.contact-form-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1);
}

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

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-foreground);
}

.footer-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* ========================================
   Directors Section
   ======================================== */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .directors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.director-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.director-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
}

.director-photo-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.director-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 25px -5px rgba(245, 158, 11, 0.3);
}

.director-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--muted) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--secondary);
    box-shadow: 0 8px 25px -5px rgba(245, 158, 11, 0.3);
}

.director-photo-placeholder svg {
    color: var(--muted-foreground);
}

.director-info {
    margin-bottom: 1rem;
}

.director-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.director-position {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.director-company {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.director-bio {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.director-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.director-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    transition: all 0.2s ease;
}

.director-social-link:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* ========================================
   WordPress Specific
   ======================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
