/* ============================================
   PE.SOLUTION s.m. co — Main Stylesheet
   Corporate Dark Navy + Gold Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --navy-900: #0a0f1e;
    --navy-800: #0d1530;
    --navy-700: #111d3c;
    --navy-600: #162248;
    --navy-500: #1e2f5e;
    --gold-400: #c9a84c;
    --gold-500: #b8922e;
    --gold-300: #e0c06a;
    --gold-100: #f5e9c8;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Open Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 15, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gold-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Close icon (X) - hidden by default */
.close-icon {
    display: none;
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
}

/* When menu is open: hide hamburger, show X */
.nav-toggle.active .hamburger,
.nav-toggle.active .hamburger::before,
.nav-toggle.active .hamburger::after {
    display: none;
}

.nav-toggle.active .close-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, #1a2a5e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(30,47,94,0.6) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.22;
    mix-blend-mode: luminosity;
}

/* Placeholder gradient when no hero image is available */
.hero-overlay-placeholder {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(10,15,30,0.0) 0%, rgba(26,42,94,0.3) 100%),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.25;
    mix-blend-mode: luminosity;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-300);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.text-accent {
    color: var(--gold-400);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin-bottom: 44px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    border-color: var(--gold-400);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
    background: var(--navy-800);
    padding: 80px 0;
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold-400);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.1));
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.service-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
    border-radius: 3px;
    margin: 0 auto;
}

.section-desc {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   COMPANY SECTION
   ============================================ */
.company {
    padding: 100px 0;
    background: var(--white);
}

.company-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.company-intro-text .lead-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.company-intro-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.company-intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.company-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.company-intro-image:hover img {
    transform: scale(1.04);
}

.company-intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* ---- ΓΕΜΗ Section ---- */
.gemi-section {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.gemi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-300), var(--gold-400));
}

.gemi-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.gemi-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gemi-header > i {
    font-size: 1.8rem;
    color: var(--gold-400);
}

.gemi-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gemi-badge {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.gemi-header p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    width: 100%;
    margin-top: -8px;
    padding-left: 52px;
}

.gemi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gemi-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.gemi-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.25);
}

.gemi-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(201,168,76,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.gemi-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.gemi-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-400);
    opacity: 0.8;
}

.gemi-value {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    line-height: 1.5;
}

/* ---- Viewport meta fix for sections ---- */
section {
    max-width: 100%;
    overflow-x: hidden;
}

/* ---- Activities ---- */
.activities-section {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.activities-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activities-title i {
    color: var(--gold-500);
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: var(--transition);
}

.activity-item:hover {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-sm);
}

.activity-code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-500);
    background: rgba(201,168,76,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.activity-desc {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.activity-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    background: var(--gray-200);
    color: var(--gray-600);
    flex-shrink: 0;
}

.activity-badge.primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
}

/* ============================================
   BALANCE SHEETS SECTION
   ============================================ */
.balance-sheets {
    padding: 100px 0;
    background: var(--gray-100);
    position: relative;
}

.balance-sheets .section-title {
    color: var(--navy-800);
}

.balance-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.balance-table {
    width: 100%;
    border-collapse: collapse;
}

.balance-table thead {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
}

.balance-table thead th {
    padding: 20px 24px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.balance-table thead th i {
    color: var(--gold-400);
    margin-right: 8px;
}

.balance-table tbody tr {
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.balance-table tbody tr:last-child {
    border-bottom: none;
}

.balance-table tbody tr:hover {
    background: rgba(201,168,76,0.04);
}

.balance-table tbody td {
    padding: 20px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    vertical-align: middle;
}

.year-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.year-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-800);
    font-family: var(--font-heading);
}

.year-period {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.doc-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdf-icon {
    font-size: 1.4rem;
    color: #e74c3c;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.status-badge.published {
    background: rgba(40,167,69,0.1);
    color: var(--success);
}

.status-badge.pending {
    background: rgba(255,193,7,0.1);
    color: #d4a017;
}

.download-pending {
    color: var(--gray-400);
    font-size: 1.2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(201,168,76,0.2);
}

.btn-download:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.balance-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 24px;
}

.balance-note i {
    color: var(--gold-500);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.balance-note p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--navy-700);
    font-weight: 500;
}

.contact-card-content a:hover {
    color: var(--gold-500);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.map-wrapper {
    height: 420px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-900);
    padding: 50px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-legal {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3px;
    max-width: 300px;
    line-height: 1.4;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-info-item span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gemi-grid {
        grid-template-columns: 1fr;
    }

    .company-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    /* Slide-in drawer from right */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-900);
        border-left: 1px solid rgba(201,168,76,0.15);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    /* Logo inside drawer */
    .nav-menu::before {
        content: '';
        display: block;
        width: 80px;
        height: 80px;
        background: url('../img/logo.svg') center/contain no-repeat;
        border: 2px solid var(--gold-400);
        border-radius: 50%;
        margin-bottom: 28px;
        flex-shrink: 0;
        box-shadow: 0 0 20px rgba(201,168,76,0.2);
    }

    .nav-toggle {
        z-index: 1001;
    }

    .nav-link {
        font-size: 1.05rem;
        font-weight: 600;
        padding: 0 32px;
        width: 100%;
        text-align: center;
        color: rgba(255,255,255,0.75);
        letter-spacing: 0.5px;
        line-height: 3rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        background: transparent;
    }

    .nav-link:first-child {
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .nav-link:hover {
        background: transparent;
        color: var(--gold-400);
    }

    .nav-link.active {
        background: transparent;
        color: var(--gold-400);
        font-weight: 700;
    }

    .nav-link::after {
        display: none;
    }

    .hero-content {
        padding: 100px 24px 60px;
    }

    .hero-scroll {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gemi-section {
        padding: 30px 24px;
    }

    .activities-section {
        padding: 28px 20px;
    }

    .activity-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info {
        text-align: left;
    }

    .balance-table thead th:nth-child(2),
    .balance-table tbody td:nth-child(2) {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gemi-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
