/* ============================================
   RAZAK PRIMA UTAMA (RPU) - Company Profile
   Design System: Deep Corporate Blue
   ============================================ */

/* --- CSS Variables --- */
:root {
    --color-navy: #0B1F3F;
    --color-blue: #1E4FA0;
    --color-blue-light: #3B7DD8;
    --color-bg: #FFFFFF;
    --color-bg-soft: #F4F7FB;
    --color-text: #1A1A1A;
    --color-text-muted: #5B6472;
    --color-border: #E2E8F0;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 4px 20px rgba(11, 31, 63, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(11, 31, 63, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Label --- */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 12px;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-muted);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background: var(--color-blue);
    color: #fff;
    border-color: var(--color-blue);
}

.btn-primary:hover {
    background: var(--color-blue-light);
    border-color: var(--color-blue-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 79, 160, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-cta-light {
    background: #fff;
    color: var(--color-navy);
    border-color: #fff;
    font-size: 16px;
    padding: 16px 40px;
}

.btn-cta-light:hover {
    background: var(--color-bg-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ============================================
   A. NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 31, 63, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-abbr {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-blue-light);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue-light);
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-blue-light);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   B. HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a3a6e 50%, var(--color-blue) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(59, 125, 216, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 79, 160, 0.2) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 31, 63, 0.4) 0%,
        rgba(11, 31, 63, 0.6) 50%,
        rgba(11, 31, 63, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   C. TENTANG KAMI
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--color-bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.pull-quote {
    background: var(--color-navy);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 32px;
    position: relative;
    border-left: 4px solid var(--color-blue-light);
}

.pull-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--color-blue-light);
    opacity: 0.3;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.pull-quote p {
    color: rgba(255,255,255,0.9);
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
}

.about-img-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-muted);
    overflow: hidden;
}

.about-img-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.4;
}

.about-img-placeholder span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-blue);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    z-index: -1;
}

/* Vision & Mission */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vision-mission-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.vision-mission-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vm-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-blue);
}

.vision-mission-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.vision-mission-card p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.vision-mission-card ul {
    list-style: disc;
    padding-left: 20px;
}

.vision-mission-card ul li {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.vision-mission-card ul li:last-child {
    margin-bottom: 0;
}

/* ============================================
   D. LAYANAN UTAMA
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-blue);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Highlight Card */
.service-highlight {
    background: linear-gradient(135deg, var(--color-navy) 0%, #1a3a6e 100%);
    border-color: transparent;
    color: #fff;
}

.service-highlight .service-icon {
    background: rgba(255,255,255,0.1);
}

.service-highlight .service-icon svg {
    color: var(--color-blue-light);
}

.service-highlight:hover .service-icon {
    background: rgba(255,255,255,0.2);
}

.service-highlight h3 {
    color: #fff;
}

.service-highlight p {
    color: rgba(255,255,255,0.8);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-blue-light);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ============================================
   E. KEUNGGULAN KOMPETITIF
   ============================================ */
.advantages {
    padding: 100px 0;
    background: var(--color-bg-soft);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--color-bg);
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.advantage-item:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateX(8px);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-blue);
}

.advantage-text h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.advantage-text p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   F. GALERI / PORTOFOLIO
   ============================================ */
.portfolio {
    padding: 100px 0;
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-text-muted);
    transition: transform 0.5s ease;
}

.gallery-img-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

.gallery-img-placeholder span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.5;
}

.gallery-item:hover .gallery-img-placeholder {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 63, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Stats Section */
.stats-section {
    background: var(--color-navy);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-blue-light);
    line-height: 1;
    margin-top: -8px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
}

/* Project Table */
.project-table-section {
    max-width: 1000px;
    margin: 0 auto;
}

.table-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 32px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.project-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-bg);
    min-width: 700px;
}

.project-table thead {
    background: var(--color-navy);
}

.project-table th {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 24px;
    text-align: left;
    letter-spacing: 0.3px;
}

.project-table td {
    padding: 18px 24px;
    font-size: 14px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    line-height: 1.6;
}

.project-table tbody tr:last-child td {
    border-bottom: none;
}

.project-table tbody tr:hover {
    background: var(--color-bg-soft);
}

.project-table td strong {
    color: var(--color-blue);
    font-weight: 600;
}

/* ============================================
   G. TIM MANAJEMEN
   ============================================ */
.team {
    padding: 100px 0;
    background: var(--color-bg-soft);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.team-avatar {
    margin-bottom: 28px;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid var(--color-bg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.avatar-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.team-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-blue);
    background: var(--color-bg-soft);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.team-info p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ============================================
   H. CLOSING CTA BANNER
   ============================================ */
.cta-banner {
    background: var(--color-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 125, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 79, 160, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ============================================
   I. FOOTER
   ============================================ */
.footer {
    background: var(--color-bg);
    padding: 80px 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-col a {
    color: var(--color-blue);
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--color-blue-light);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile: 768px */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 80px 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .about {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .advantages {
        padding: 60px 0;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .advantage-icon {
        margin: 0 auto;
    }

    .portfolio {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 40px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-number {
        font-size: 42px;
    }

    .team {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer {
        padding: 60px 0 0;
    }
}

/* Small Mobile: 480px */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .team-card {
        padding: 32px 24px;
    }
}

/* --- Image Styling Updates --- */

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Remove old placeholder styles for gallery since we use real images now */
.gallery-item .gallery-img-placeholder {
    display: none;
}