/* Priority Plus Logistics - Modern 2026 Corporate Design */

:root {
    /* Brand Colors */
    --primary: #032B5A;
    --primary-dark: #021D40;
    --primary-light: #054996;
    --accent: #0A4C8A;
    --accent-light: #0D5FA9;

    /* Neutrals */
    --dark: #0f1f14;
    --text: #2d3a32;
    --text-muted: #5a6b5f;
    --text-light: #8a9a8e;
    --bg: #ffffff;
    --bg-subtle: #f5f9f6;
    --bg-blue-tint: #f0f4f8;
    --border: #d4e5d8;

    /* Functional */
    --success: #22c55e;
    --error: #ef4444;
    --white: #ffffff;

    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.75rem;
    --text-5xl: 4rem;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-blue: 0 8px 24px rgba(3, 43, 90, 0.15);

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 400ms ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
    opacity: 1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms var(--ease-out);
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 230, 240, 0.5);
    transition: all 300ms var(--ease-out);
}

.nav.scrolled {
    padding: 10px 48px;
    box-shadow: 0 4px 30px rgba(3, 43, 90, 0.08);
    border-bottom-color: transparent;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transform: scale(1.8);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-main {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-logo-sub {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 250ms var(--ease-out);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    padding: 10px 20px;
    background: var(--bg-blue-tint);
    border-radius: var(--radius-sm);
    transition: all 200ms var(--ease-out);
}

.nav-phone:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.nav-phone svg {
    width: 16px;
    height: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 200ms var(--ease-out);
}

.nav-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 32px 24px;
    z-index: 999;
    transform: translateX(100%);
    opacity: 0;
    transition: all 300ms var(--ease-out);
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-menu-links a {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color 200ms var(--ease-out);
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

.mobile-menu-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-base);
    color: var(--primary);
    font-weight: 500;
}

/* ==================== HERO SECTION (Home) ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(2, 29, 64, 0.75) 0%,
        rgba(10, 76, 138, 0.8) 50%,
        rgba(2, 29, 64, 0.85) 100%
    );
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 1000px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 36px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transform: scale(1.8);
}

.hero h1 {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: 400;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== PAGE HERO (Inner Pages) ==================== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 50%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: var(--text-lg);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: var(--text-sm);
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 200ms;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: var(--white);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 250ms var(--ease-out);
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 160px;
}

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

.btn-primary:hover {
    background: var(--bg-blue-tint);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

.btn-green:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==================== SECTION COMMON ==================== */
.section-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    background: var(--bg-blue-tint);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-lead {
    font-size: var(--text-lg);
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.highlight {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-blue-tint);
    border-radius: var(--radius-md);
    transition: all 300ms var(--ease-out);
}

.highlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blue);
}

.highlight-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.2;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--primary);
    font-weight: 600;
    font-size: var(--text-base);
    transition: gap 250ms var(--ease-out);
}

.about-link:hover {
    gap: 12px;
}

/* About Page - Story Section */
.about-story {
    padding: var(--section-padding) 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Stats Section */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--bg-subtle);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 300ms var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: var(--section-padding) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    padding: 48px 32px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 300ms var(--ease-out);
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-blue-tint);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin: 0 auto 24px;
    transition: all 300ms var(--ease-out);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
}

.value-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==================== MISSION & VISION ==================== */
.mission-vision {
    padding: var(--section-padding) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.mission-vision .container {
    position: relative;
    z-index: 1;
}

.mission-vision .section-header {
    margin-bottom: 60px;
}

.mission-vision .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.mission-vision .section-header h2 {
    color: var(--white);
}

.mission-vision .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 300ms var(--ease-out);
}

.mv-card:hover {
    transform: translateY(-4px);
}

.mv-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-blue-tint);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.mv-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mv-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-muted);
    line-height: 1.6;
}

.mv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
}

.services-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 64px;
}

.services-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 28px;
    padding: 20px 0 40px;
    pointer-events: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.services-slider-track::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    position: absolute;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 300ms var(--ease-out);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(3, 43, 90, 0.4);
    border-color: var(--primary);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.services-slider-track .service-card {
    flex: 0 0 calc((100% - 56px) / 3);
    width: calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
    scroll-snap-align: start;
}

.services-slider-track .service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(3, 43, 90, 0.15);
    transform: translateY(-6px);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 300ms var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(1);
    transition: background 300ms var(--ease-out);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(3, 43, 90, 0.12);
    border-color: var(--primary);
}

.service-card:hover::before {
    background: var(--primary-light);
}

/* Service card image header */
.service-card-image {
    margin: -40px -32px 24px -32px;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease-out);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Gradient placeholder for cards without photos */
.service-card-image.placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image.placeholder svg {
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.35);
    stroke-width: 1.2;
}

/* Learn more link on service cards */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    transition: gap 300ms var(--ease-out);
}

.service-card-link:hover {
    gap: 10px;
}

.service-card-link svg {
    transition: transform 300ms var(--ease-out);
}

.service-card:hover .service-card-link svg {
    transform: translateX(2px);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-blue-tint);
    border-radius: var(--radius-lg);
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 300ms var(--ease-out);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.service-features li {
    font-size: var(--text-sm);
    color: var(--text);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-image {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 400ms var(--ease-out);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Services Page - Detailed Cards */
.services-detailed {
    padding: var(--section-padding) 0;
    background: var(--bg);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail-card:first-child {
    padding-top: 0;
}

.service-detail-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 600ms var(--ease-out);
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.03);
}

.service-detail-content .section-tag {
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-detail-content > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-content .service-features {
    margin-bottom: 32px;
}

/* Services - No-Image Detail Card */
.service-noimage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 60px;
}

.service-noimage-card {
    background: var(--bg-subtle);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 300ms var(--ease-out);
}

.service-noimage-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-noimage-card .service-icon {
    margin-bottom: 20px;
}

.service-noimage-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-noimage-card > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ==================== GALLERY ==================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms var(--ease-out);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 300ms var(--ease-out);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--bg-blue-tint);
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #f59e0b;
}

.testimonial-card blockquote p {
    font-size: var(--text-base);
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 50%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-banner p {
    font-size: var(--text-lg);
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-subtle);
    position: relative;
    color: var(--text);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-wrapper h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    font-size: var(--text-lg);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-field label span {
    color: var(--error);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 16px 20px;
    font-family: inherit;
    font-size: var(--text-base);
    color: var(--dark);
    background: var(--bg-subtle);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all 300ms var(--ease-out);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(3, 43, 90, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-light);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23032B5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 48px;
    cursor: pointer;
}

/* Form Validation States */
.form-field.error input,
.form-field.error textarea,
.form-field.error select {
    border-color: var(--error);
    background: #fef2f2;
}

.form-field .error-message {
    font-size: var(--text-xs);
    color: var(--error);
    margin-top: 6px;
    display: none;
}

.form-field.error .error-message {
    display: block;
}

/* Newsletter */
.newsletter {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.newsletter h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    font-family: inherit;
    font-size: var(--text-base);
    background: var(--bg-subtle);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all 200ms var(--ease-out);
}

.newsletter-form input:focus {
    outline: none;
    background: var(--bg);
    border-color: var(--primary);
}

.newsletter-section {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.newsletter-section .container {
    max-width: 600px;
    text-align: center;
}

.newsletter-section h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.newsletter-section > .container > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; width: 4px;
    background: var(--primary);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-blue-tint);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.contact-details a {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--dark);
    display: inline-block;
    transition: color 200ms ease;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-details p,
.contact-details address {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
}

/* Map Placeholder */
.map-section {
    margin-top: 60px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-subtle);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transform: scale(1.8);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-main {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
}

.footer-logo-sub {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 0.1em;
}

.footer-brand > p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all 200ms var(--ease-out);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column nav a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all 200ms var(--ease-out);
}

.footer-column nav a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-info p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 300ms var(--ease-out);
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ==================== ANIMATIONS ==================== */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== FOCUS STATES ==================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav {
        padding: 12px 24px;
    }

    .nav.scrolled {
        padding: 10px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: var(--text-4xl);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 400px;
    }

    .about-image::before {
        display: none;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-slider-container {
        padding: 0 48px;
    }
    
    .services-slider-track .service-card {
        flex: 0 0 calc(50% - 14px);
        width: calc(50% - 14px);
        max-width: calc(50% - 14px);
    }

    .service-card-image {
        height: 160px;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail-card:nth-child(even) {
        direction: ltr;
    }

    .service-noimage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
    }

    .nav-logo-text {
        display: none;
    }

    .hero {
        min-height: 600px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
        transform: scale(1.8);
    }

    .hero h1 {
        font-size: var(--text-3xl);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: var(--text-3xl);
    }

    .about-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .highlight {
        padding: 16px 8px;
    }

    .highlight-number {
        font-size: var(--text-2xl);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-slider-container {
        padding: 0;
    }
    
    .services-slider-track .service-card {
        flex: 0 0 85%;
        width: 85%;
        max-width: 85%;
    }

    .service-noimage-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-image img {
        height: 280px;
    }

    .service-noimage-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .mv-card {
        padding: 32px 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-card-image {
        margin: -32px -24px 20px -24px;
        height: 140px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .service-noimage-card {
        padding: 32px 24px;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==================== PRINT ==================== */
@media print {
    .nav,
    .hero-video-container,
    .mobile-menu,
    .footer-social,
    .contact-form,
    .newsletter,
    .whatsapp-float {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 40px 0;
    }

    .hero-content {
        color: var(--dark);
    }

    body {
        font-size: 11pt;
    }
}
