@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    --primary: #1E3A8A;         /* Deep Slate Blue */
    --primary-light: #2563EB;   /* Vibrant Royal Blue */
    --primary-rgb: 30, 58, 138;
    --secondary: #60A5FA;       /* Sleek Sky Blue */
    --accent: #10B981;          /* Organic Olive/Emerald Green */
    --accent-hover: #059669;
    --background: #F8FAFC;      /* Soft Slate White */
    --surface: #FFFFFF;
    --surface-glass: rgba(255, 255, 255, 0.85);
    
    --text: #1E293B;            /* Slate 800 */
    --text-muted: #64748B;      /* Slate 500 */
    --text-light: #F1F5F9;      /* Slate 100 */
    
    --border: #E2E8F0;          /* Slate 200 */
    --border-light: rgba(255, 255, 255, 0.4);
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(148, 163, 184, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(148, 163, 184, 0.1), 0 4px 6px -2px rgba(148, 163, 184, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(148, 163, 184, 0.15), 0 10px 10px -5px rgba(148, 163, 184, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(30, 58, 138, 0.12), 0 15px 30px -10px rgba(0, 0, 0, 0.04);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --header-height: 80px;
    --container-width: 1200px;
}

/* --- BASE & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 20%, var(--primary-light) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-alt {
    background-color: var(--surface);
}

.section-bg-gradient {
    background: linear-gradient(180deg, var(--background) 0%, rgba(226, 232, 240, 0.4) 100%);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--surface);
}

.btn-secondary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

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

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

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

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* --- HEADER & NAVIGATION --- */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background-color: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    font-weight: bold;
    font-size: 1.1rem;
}

.logo-icon::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--surface);
    border-radius: 50%;
    top: 4px;
    right: 4px;
}

.logo span {
    color: var(--text);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1010;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* Active Menu Toggle State */
.nav-active .nav-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-active .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav-active .nav-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.04) 0%, rgba(96, 165, 250, 0.05) 50%, rgba(16, 185, 129, 0.03) 100%);
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--secondary);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background-color: var(--accent);
    bottom: -100px;
    left: -100px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(30, 58, 138, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-box {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-light);
}

.hero-image-overlay-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-image-overlay-text h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.hero-image-overlay-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- TRUST BADGES --- */
.trust-badges {
    padding: 40px 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-badge-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-badge-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.trust-badge-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- SERVICES OVERVIEW --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(30, 58, 138, 0.15);
}

.service-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-card-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-card-olive .service-card-icon {
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--accent);
}

.service-card-body h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-card-body p {
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-bullet-list {
    margin-bottom: 30px;
}

.service-bullet-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.service-bullet-list li i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* --- WHITE-LABEL B2B PARTNERSHIP --- */
.white-label-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02) 0%, rgba(16, 185, 129, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.white-label-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.white-label-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.white-label-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.white-label-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.wl-feature-card {
    background-color: var(--surface);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}

.wl-feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wl-feature-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.wl-feature-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.wl-feature-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.white-label-images {
    position: relative;
    display: flex;
    justify-content: center;
}

.wl-image-main {
    width: 80%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.wl-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wl-badge-float {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: var(--primary);
    color: var(--surface);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

.wl-badge-float span {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--secondary);
}

.wl-badge-float p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- ABOUT PAGE DETAILS --- */
.about-hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
    padding: 160px 0 100px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-story-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.about-story-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-box {
    background-color: var(--surface);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform var(--transition-fast);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 480px;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.core-values {
    background-color: var(--surface);
    padding: 100px 0;
}

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

.value-card {
    padding: 40px;
    border-radius: var(--radius-md);
    background-color: var(--background);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.value-card:hover {
    background-color: var(--surface);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--surface);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.value-card:hover .value-icon {
    background-color: var(--accent);
    color: var(--surface);
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

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

/* --- SERVICES PAGE DETAILS --- */
.services-detail-section {
    padding: 100px 0;
}

.service-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-block:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-detail-block:nth-child(even) .service-detail-image-box {
    order: 2;
}

.service-detail-block:nth-child(even) .service-detail-content {
    order: 1;
}

.service-detail-image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 420px;
}

.service-detail-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.detail-features-list {
    margin-bottom: 30px;
}

.detail-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.detail-features-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

.detail-features-list li h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.detail-features-list li p {
    font-size: 0.925rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.services-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--surface);
    border-radius: var(--radius-lg);
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.services-cta-text {
    max-width: 60%;
}

.services-cta-text h3 {
    color: var(--surface);
    font-size: 2rem;
    margin-bottom: 12px;
}

.services-cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* --- CONTACT PAGE DETAILS --- */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {
    background-color: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-item-text address {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-panel {
    background-color: var(--surface);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.contact-form-panel p {
    color: var(--text-muted);
    margin-bottom: 36px;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-control {
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--background);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: var(--surface);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

/* Alert Notification Panel */
.alert-box {
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-hover);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* --- LEGAL & COMPLIANCE PAGES --- */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
    list-style: disc;
    color: var(--text-muted);
}

.legal-content ul li {
    margin-bottom: 8px;
}

/* --- FOOTER --- */
.footer {
    background-color: #0F172A; /* Slate 900 */
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--surface);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--surface);
    font-size: 1.05rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-address p {
    margin-bottom: 16px;
}

.footer-address strong {
    color: var(--surface);
    display: block;
    margin-bottom: 4px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
}

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

/* --- ANIMATIONS & INTERACTIVE STATES --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        min-height: auto;
    }
    
    .hero-image-box {
        height: 380px;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .white-label-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .white-label-images {
        order: -1;
    }
    
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-box {
        height: 350px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .service-detail-block:nth-child(even) .service-detail-image-box {
        order: unset;
    }
    
    .service-detail-block:nth-child(even) .service-detail-content {
        order: unset;
    }
    
    .service-detail-image-box {
        height: 300px;
    }
    
    .services-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
    
    .services-cta-text {
        max-width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--surface);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right var(--transition-normal);
        z-index: 1005;
        border-left: 1px solid var(--border);
    }
    
    .nav-active .nav-links {
        right: 0;
    }
    
    .nav-cta {
        display: none; /* Hide in header, can show inside drawer if needed */
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .legal-container {
        padding: 30px 20px;
    }
}

/* --- ACCESSIBILITY FOCUS STATES --- */
*:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* --- MODAL POPUP SYSTEM --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6); /* Translucent Slate 900 */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--surface);
    width: 90%;
    max-width: 480px;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    text-align: center;
    border: 1px solid var(--border);
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
}

.modal-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-card .btn {
    width: 100%;
}

/* --- B2B DYNAMIC CALCULATOR --- */
.calculator-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-top: 60px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

.calc-inputs-panel {
    padding: 40px;
}

.calc-outputs-panel {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: var(--surface);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calc-group {
    margin-bottom: 28px;
}

.calc-group label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
}

.calc-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.calc-option-btn {
    border: 1px solid var(--border);
    background-color: var(--background);
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-fast);
}

.calc-option-btn:hover {
    border-color: var(--primary-light);
    background-color: var(--surface);
}

.calc-option-btn.active {
    background-color: var(--primary);
    color: var(--surface);
    border-color: var(--primary);
}

.calc-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.calc-range-slider {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: var(--border);
    outline: none;
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    transition: transform var(--transition-fast);
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-slider-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 90px;
    text-align: right;
}

.calc-outputs-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.calc-outputs-header h3 {
    color: var(--surface);
    font-size: 1.4rem;
}

.calc-output-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calc-output-item:last-of-type {
    margin-bottom: 0;
}

.calc-output-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.calc-output-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.calc-output-val span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

/* --- CROP LIFECYCLE TIMELINE --- */
.crop-timeline-wrapper {
    margin-top: 60px;
}

.timeline-nav {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.timeline-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--border);
    border-radius: 2px;
    z-index: 1;
}

.timeline-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
    z-index: 2;
    transition: width var(--transition-normal);
}

.timeline-step-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    position: relative;
}

.timeline-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--surface);
    border: 4px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    margin-bottom: 12px;
}

.timeline-step-btn:hover .timeline-node {
    border-color: var(--secondary);
}

.timeline-step-btn.active .timeline-node {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.timeline-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.timeline-step-btn.active .timeline-label {
    color: var(--primary);
}

.timeline-detail-card {
    background-color: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 40px;
    align-items: center;
}

.timeline-detail-img {
    width: 240px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.timeline-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-detail-content h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.timeline-detail-content .timeline-period {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-hover);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.timeline-detail-content p {
    color: var(--text-muted);
}

/* --- PRODUCT SPECS FILTERED CATALOG --- */
.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.catalog-tab-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background-color: var(--surface);
    color: var(--text-muted);
}

.catalog-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary-light);
}

.catalog-tab-btn.active {
    background-color: var(--primary);
    color: var(--surface);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

.catalog-item-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: none;
}

.catalog-item-card.active {
    display: block;
}

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

.catalog-card-header {
    background-color: var(--background);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-card-header h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.catalog-badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-evoo { background-color: rgba(16, 185, 129, 0.15); color: var(--accent-hover); }
.badge-tech { background-color: rgba(37, 99, 235, 0.15); color: var(--primary-light); }

.catalog-card-body {
    padding: 24px;
}

.catalog-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.specs-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.spec-data-item {
    font-size: 0.8rem;
}

.spec-data-item strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}

.spec-data-item span {
    color: var(--text-muted);
}

/* --- B2B FAQ ACCORDION --- */
.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-content {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- ANIMATED SHIPPING ROUTE MAP --- */
.map-section {
    padding: 100px 0;
    background-color: #0B1329;
    color: var(--surface);
    overflow: hidden;
}

.map-section .section-header h2 {
    color: var(--surface);
}

.map-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.map-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.map-node {
    cursor: pointer;
}

.map-node circle {
    fill: var(--accent);
    transition: all var(--transition-fast);
}

.map-node:hover circle {
    fill: var(--secondary);
    r: 10px;
}

.map-node-pulse {
    animation: mapPulse 2s infinite;
    transform-origin: center;
}

@keyframes mapPulse {
    0% { r: 6px; opacity: 1; }
    100% { r: 20px; opacity: 0; }
}

.map-route-line {
    stroke-dasharray: 8;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -1000; }
}

.map-tooltip {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 250px;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 10;
}

.map-tooltip h5 {
    color: var(--surface);
    font-size: 1rem;
    margin-bottom: 6px;
}

.map-tooltip p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* RESPONSIVE OVERRIDES FOR CALCULATOR & MAP */
@media (max-width: 1024px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .calc-outputs-panel {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-nav {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding-bottom: 0;
    }
    .timeline-nav::after, .timeline-progress-bar {
        display: none;
    }
    .timeline-detail-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    .timeline-detail-img {
        width: 100%;
        height: 150px;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .calc-options-grid {
        grid-template-columns: 1fr;
    }
}
