/* ========================================
   Said Accounting - Premium Light Theme
   ======================================== */

/* Proxima Nova Font */
@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('fonts/ProximaNova-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Color Scheme */
:root {
    --dark-bg: #2e2e38;
    --darker-bg: #1a1a24;
    --light-bg: #f5f6f8;
    --orange: #FF6B35;
    --orange-glow: rgba(255, 107, 53, 0.08);
    --orange-dark: #e55a28;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #71717a;
    --text-dark: #18181b;
    --whatsapp: #25D366;
    --whatsapp-dark: #1fb855;
    --border-color: rgba(0, 0, 0, 0.07);
    --border-hover: rgba(255, 107, 53, 0.3);
    --border-radius: 6px;
    --border-radius-sm: 4px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.05);
    --font-heading: 'Proxima Nova', 'Inter', sans-serif;
    --font-body: 'Proxima Nova', 'Inter', sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Subtitle */
.section-subtitle {
    color: var(--text-gray);
    font-size: 17px;
    margin-top: -40px;
    margin-bottom: 60px;
    max-width: 600px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background-color: transparent;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo-img {
    filter: none;
}

.navbar.scrolled .nav-links a {
    color: var(--text-gray);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    color: var(--text-dark);
    background-color: rgba(0, 0, 0, 0.04);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background-color: var(--text-dark);
}

.mobile-menu-btn.active .hamburger::before,
.mobile-menu-btn.active .hamburger::after {
    background-color: var(--text-dark);
}

.mobile-menu-btn.active ~ .nav-links.active ~ .logo-img,
.navbar:has(.nav-links.active) .logo-img {
    filter: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
    filter: brightness(0) invert(1);
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: background-color var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    left: 0;
    transition: transform var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.mobile-menu-btn.active .hamburger { background-color: transparent; }
.mobile-menu-btn.active .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active .hamburger::after { transform: rotate(-45deg) translate(5px, -5px); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all var(--transition);
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Nav Dropdowns */
.nav-links li {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    padding: 12px 0;
    z-index: 1001;
    max-height: 70vh;
    overflow-y: auto;
}

.nav-links li:hover > .nav-dropdown {
    display: block;
}

.nav-dropdown-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px 4px;
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 8px 20px !important;
    color: var(--text-gray) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 0 !important;
    white-space: nowrap;
    transition: all var(--transition);
}

.nav-dropdown a:hover {
    color: var(--orange) !important;
    background-color: var(--orange-glow) !important;
}

.navbar.scrolled .nav-dropdown a {
    color: var(--text-gray) !important;
}

.navbar.scrolled .nav-dropdown a:hover {
    color: var(--orange) !important;
    background-color: var(--orange-glow) !important;
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* Read More Link */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: 8px;
    transition: gap var(--transition);
}

.read-more:hover {
    gap: 10px;
}

.read-more svg {
    width: 14px;
    height: 14px;
}

/* Guides Section */
.guides-section {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.guides-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.guide-card {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.guide-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    margin-bottom: 16px;
    color: var(--orange);
}

.guide-icon svg {
    width: 22px;
    height: 22px;
}

.guide-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.guide-card .guide-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 107, 53, 0.08);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 12px;
    width: fit-content;
}

.guide-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.guide-card h3 a {
    color: inherit;
    text-decoration: none;
}

.guide-card h3 a:hover {
    color: var(--orange);
}

.guide-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 16px;
        min-width: auto;
        max-height: none;
        display: none;
    }
    .nav-links li.dropdown-open > .nav-dropdown {
        display: block;
    }
    .nav-dropdown a {
        color: var(--text-dark) !important;
        padding: 10px 16px !important;
    }
    .nav-dropdown-label {
        padding: 8px 16px 4px;
    }
    .guides-grid {
        grid-template-columns: 1fr;
    }
    .guides-section h2 {
        font-size: 32px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Dark Gradient Overlay - Cinematic */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(46, 46, 56, 0.4) 0%, rgba(46, 46, 56, 0.2) 40%, rgba(46, 46, 56, 0.6) 80%, rgba(255, 255, 255, 1) 100%),
        linear-gradient(90deg, rgba(46, 46, 56, 0.92) 0%, rgba(46, 46, 56, 0.7) 35%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 620px;
}

.tagline {
    font-size: 12px;
    color: var(--orange);
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.tagline::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--orange);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--orange), #ff9a6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 44px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slideshow Dots */
.slideshow-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all var(--transition);
    cursor: pointer;
}

.dot.active {
    background-color: var(--orange);
    width: 28px;
    border-radius: 4px;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--orange);
    color: var(--white);
    padding: 15px 32px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.cta-button.cta-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.cta-button.whatsapp-btn {
    background-color: var(--orange);
}

.cta-button.whatsapp-btn:hover {
    background-color: var(--orange-dark);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.cta-button.email-btn {
    background-color: var(--dark-bg);
    border: none;
}

.cta-button.email-btn:hover {
    background-color: var(--darker-bg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    background: var(--white);
    padding: 36px 30px;
    text-align: center;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    background: var(--light-bg);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 120px 0;
    background-color: var(--white);
}

.services-header {
    margin-bottom: 60px;
}

.services-label {
    font-size: 12px;
    color: var(--orange);
    letter-spacing: 4px;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.services-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--orange);
}

.services-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.services-header h2 span {
    color: var(--orange);
}

/* Category Titles */
.bento-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.bento-category-title:first-of-type {
    margin-top: 0;
}

/* Services Bullet List */
.services-list {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px 36px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 8px;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-bullets li {
    position: relative;
    padding: 12px 0 12px 28px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.service-bullets li:last-child {
    border-bottom: none;
}

.service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.service-bullets li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
}

.bento-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bento-card:hover {
    border-color: var(--border-hover);
    background-color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bento-card:hover::after {
    transform: scaleX(1);
}

/* Featured card - spans 1 col, 2 rows */
.bento-featured {
    grid-row: span 2;
    background: var(--dark-bg);
    border-color: transparent;
}

.bento-featured .bento-card-content h3 {
    color: var(--white);
}

.bento-featured .bento-card-content p {
    color: rgba(255, 255, 255, 0.6);
}

.bento-featured .bento-icon {
    color: var(--orange);
}

.bento-featured:hover {
    background: var(--darker-bg);
    border-color: transparent;
}

/* Wide card - spans 2 cols */
.bento-wide {
    grid-column: span 2;
}

.bento-wide .bento-card-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.bento-wide .bento-card-content {
    flex: 1;
}

.bento-wide .bento-card-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.grant-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    transition: all var(--transition);
}

.bento-card:hover .grant-item {
    background: var(--light-bg);
}

.grant-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.grant-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Card contents */
.bento-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    margin-bottom: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

.bento-icon svg {
    width: 40px;
    height: 40px;
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bento-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Badge */
.bento-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 20px;
    width: fit-content;
}

.bento-badge-green {
    background: rgba(37, 211, 102, 0.1);
    color: #1a9e4a;
}

/* Checklist */
.bento-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.bento-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.bento-list li svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
    flex-shrink: 0;
}

/* Tags */
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.bento-tags span {
    padding: 5px 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    transition: all var(--transition);
}

.bento-card:hover .bento-tags span {
    border-color: var(--border-hover);
    color: var(--orange-dark);
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */
.who-we-are {
    padding: 120px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.who-we-are h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.who-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: start;
}

.who-image {
    position: relative;
}

.who-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.who-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--orange);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.35;
}

.who-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.who-text p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.who-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.check {
    color: var(--orange);
    flex-shrink: 0;
}

.check svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

.contact h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact .section-subtitle {
    margin-top: 0;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}

.contact-btn.whatsapp {
    background-color: var(--orange);
    color: var(--white);
}

.contact-btn.whatsapp:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.25);
}

.contact-btn.email {
    background-color: var(--light-bg);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.contact-btn.email:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.contact-item .icon {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item .icon svg {
    width: 20px;
    height: 20px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-size: 14px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group .required { color: var(--orange); }
.form-group .optional { color: var(--text-gray); font-weight: 400; text-transform: none; letter-spacing: 0; }

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.08);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 4px;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg { color: var(--whatsapp); margin-bottom: 16px; }

.form-success h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-success p { color: var(--text-gray); font-size: 15px; }

/* ========================================
   VACANCIES SECTION
   ======================================== */
.vacancies {
    padding: 120px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

.vacancies h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.vacancies-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.vacancy-icon {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.vacancies-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.vacancies-content p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.vacancies-content .cta-button {
    margin-top: 24px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--dark-bg);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-text p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-featured {
        grid-row: span 1;
        grid-column: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .who-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .who-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .who-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 72px 20px 24px;
        gap: 2px;
        align-items: stretch;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 15px;
        font-weight: 600;
        padding: 14px 16px;
        color: var(--text-dark);
        border-radius: var(--border-radius-sm);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--orange);
        background-color: var(--orange-glow);
    }

    .logo-img { height: 40px; }
    .footer-logo-img { height: 32px; }

    .hero {
        min-height: 85vh;
    }

    .hero-gradient-overlay {
        background:
            linear-gradient(180deg, rgba(46, 46, 56, 0.3) 0%, rgba(46, 46, 56, 0.2) 30%, rgba(46, 46, 56, 0.7) 70%, rgba(255, 255, 255, 1) 100%),
            linear-gradient(90deg, rgba(46, 46, 56, 0.8) 0%, transparent 100%);
    }

    .hero-content h1 { font-size: 36px; }
    .hero-description { font-size: 15px; }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .cta-button {
        width: 100%;
        justify-content: center;
    }

    .slideshow-dots {
        bottom: 24px;
        right: 50%;
        transform: translateX(50%);
    }

    .stats-bar { margin-top: -40px; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item { padding: 24px 16px; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 11px; }

    .services h2,
    .who-we-are h2,
    .contact h2,
    .vacancies h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        margin-top: 0;
        margin-bottom: 40px;
        font-size: 15px;
    }

    .services,
    .who-we-are,
    .contact,
    .vacancies {
        padding: 80px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-featured,
    .bento-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .bento-wide .bento-card-inner {
        flex-direction: column;
        gap: 24px;
    }

    .bento-card { padding: 28px; }
    .bento-card h3 { font-size: 18px; }

    .services-header h2 { font-size: 32px; }

    .who-image::after {
        bottom: -10px;
        right: -10px;
        border-width: 2px;
    }

    .contact-form { padding: 28px 20px; }

    .contact-buttons { flex-direction: column; }
    .contact-btn { width: 100%; justify-content: center; }

    .vacancies-content { padding: 40px 24px; }
    .vacancies-content h3 { font-size: 22px; }

    .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 30px; }

    .tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================
   FOCUS & ACCESSIBILITY
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--orange);
    color: white;
    padding: 8px;
    z-index: 9999;
}

.skip-link:focus { top: 0; }

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--white);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ========================================
   FOOTER EXTENDED
   ======================================== */
.footer-info {
    text-align: center;
    margin-bottom: 8px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.7;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-info a:hover {
    color: var(--orange);
}

.footer-credentials {
    color: var(--orange) !important;
    font-weight: 600;
    font-size: 12px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.footer-services-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-services-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-services-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   INNER PAGE STYLES
   ======================================== */

/* Breadcrumbs */
.breadcrumbs {
    padding: 16px 0;
    font-size: 13px;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumbs a:hover {
    color: var(--orange);
}

.breadcrumbs span {
    margin: 0 8px;
    color: #ccc;
}

/* Page Hero (inner pages) */
.page-hero {
    background-color: var(--dark-bg);
    padding: 140px 0 70px;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    max-width: 600px;
    line-height: 1.7;
}

/* Page Content Layout */
.page-content {
    padding: 60px 0 100px;
}

.page-content .container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.page-main {
    min-width: 0;
}

.page-main h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-main h2:first-child {
    margin-top: 0;
}

.page-main h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-main p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.page-main ul, .page-main ol {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-main li {
    margin-bottom: 8px;
}

.page-main strong {
    color: var(--text-dark);
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    padding: 32px;
    color: var(--white);
}

.sidebar-cta h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-cta .cta-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.sidebar-links {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-top: 20px;
}

.sidebar-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-links a {
    display: block;
    padding: 8px 0;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: color var(--transition);
}

.sidebar-links a:last-child {
    border-bottom: none;
}

.sidebar-links a:hover {
    color: var(--orange);
}

/* Author Byline */
.author-byline {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.author-byline img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-byline .author-info {
    font-size: 13px;
    color: var(--text-gray);
}

.author-byline .author-name {
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

/* Last Updated Badge */
.last-updated {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.08);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* FAQ Section (for inner pages) */
.page-faq {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.page-faq h2 {
    margin-top: 0;
}

.page-faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.page-faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
    cursor: pointer;
}

.page-faq-item p {
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    background: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 28px;
}

/* Guide page specific */
.guide-content .page-main {
    max-width: 780px;
}

.guide-content .container {
    grid-template-columns: 1fr 300px;
}

/* Step list */
.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.step-list li {
    counter-increment: step-counter;
    padding-left: 48px;
    position: relative;
    margin-bottom: 24px;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Responsive inner pages */
@media (max-width: 1024px) {
    .page-content .container {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }

    .guide-content .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 110px 0 50px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .footer-services-links {
        gap: 12px;
    }
}
