/*
Theme Name: Fresh Vibes Corporate
Theme URI: https://freshvibes.com.kw
Description: Corporate website for Fresh Vibes Trading
Author: Fresh Vibes
Template: astra
Version: 2.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&display=swap');

:root {
    --primary: #1a4d2e;
    --primary-dark: #0f3320;
    --accent: #d4a82c;
    --accent-dark: #b58a1f;
    --dark: #1a1a1a;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif !important;
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 400;
    background: var(--white);
}

body * {
    font-family: 'DM Sans', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif !important;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ HEADER ============ */
.fv-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
}

.fv-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.fv-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.fv-logo span {
    color: var(--accent);
}

.fv-nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

.fv-nav a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.fv-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.fv-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.fv-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============ HERO ============ */
.fv-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.fv-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.fv-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,51,32,0.92) 0%, rgba(15,51,32,0.65) 60%, rgba(15,51,32,0.3) 100%);
}

.fv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.fv-hero-tag {
    display: inline-block;
    background: rgba(212,168,44,0.2);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(212,168,44,0.4);
}

.fv-hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    max-width: 800px;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.fv-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

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

.fv-btn {
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

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

.fv-btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,168,44,0.3);
}

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

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

/* ============ STATS BAR ============ */
.fv-stats {
    background: var(--gray-900);
    padding: 50px 0;
    color: var(--white);
}

.fv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.fv-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.fv-stat-label {
    color: var(--gray-300);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============ SECTIONS ============ */
.fv-section {
    padding: 100px 0;
}

.fv-section-gray {
    background: var(--gray-50);
}

.fv-section-dark {
    background: var(--gray-900);
    color: var(--white);
}

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

.fv-section-tag {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.fv-section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.fv-section-dark .fv-section-title {
    color: var(--white);
}

.fv-section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.fv-section-dark .fv-section-subtitle {
    color: var(--gray-300);
}

/* ============ ABOUT/CONTENT ============ */
.fv-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.fv-content-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    position: relative;
}

.fv-content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.fv-content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.fv-feature-list {
    list-style: none;
    margin-top: 30px;
}

.fv-feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.fv-feature-list li::before {
    content: '✓';
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============ SERVICES CARDS ============ */
.fv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fv-service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid var(--gray-100);
}

.fv-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.fv-service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fv-service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15,51,32,0.4));
}

.fv-service-body {
    padding: 32px;
}

.fv-service-body h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.fv-service-body p {
    color: var(--gray-500);
    font-size: 0.98rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.fv-service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fv-service-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* ============ MISSION & VISION ============ */
.fv-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fv-mv-card {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent);
    transition: all 0.3s;
}

.fv-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.fv-mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(26,77,46,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.fv-mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.fv-mv-card p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============ FACILITIES ============ */
.fv-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fv-facility-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.fv-facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fv-facility-card:hover img {
    transform: scale(1.08);
}

.fv-facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,51,32,0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: var(--white);
}

.fv-facility-overlay h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.fv-facility-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* ============ CTA BANNER ============ */
.fv-cta-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.fv-cta-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.fv-cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,51,32,0.95), rgba(26,77,46,0.9));
}

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

.fv-cta-banner h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fv-cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* ============ TEAM ============ */
.fv-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fv-team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.fv-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.fv-team-image {
    height: 320px;
    overflow: hidden;
}

.fv-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.fv-team-body {
    padding: 24px;
    text-align: center;
}

.fv-team-body h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.fv-team-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.fv-team-body p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============ CONTACT ============ */
.fv-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.fv-contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

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

.fv-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(26,77,46,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.fv-contact-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.fv-contact-item p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.fv-contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.fv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.fv-form-group {
    margin-bottom: 20px;
}

.fv-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.fv-form-group input,
.fv-form-group textarea,
.fv-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.fv-form-group input:focus,
.fv-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,77,46,0.1);
}

/* ============ FOOTER ============ */
.fv-footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 70px 0 0;
}

.fv-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.fv-footer-col h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.fv-footer-col p,
.fv-footer-col a {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.8;
    display: block;
}

.fv-footer-col a:hover {
    color: var(--accent);
}

.fv-footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.fv-footer-logo span {
    color: var(--accent);
}

.fv-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ============ PAGE HEADER ============ */
.fv-page-header {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.fv-page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.fv-page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,51,32,0.92), rgba(26,77,46,0.85));
}

.fv-page-header .container {
    position: relative;
    z-index: 2;
}

.fv-page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.fv-breadcrumb {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.fv-breadcrumb a {
    color: var(--accent);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .fv-hero h1 {
        font-size: 3rem;
    }
    .fv-section-title { font-size: 2.2rem; }
    .fv-content-grid,
    .fv-services-grid,
    .fv-facilities-grid,
    .fv-mv-grid,
    .fv-team-grid,
    .fv-contact-grid,
    .fv-stats-grid,
    .fv-footer-grid {
        grid-template-columns: 1fr;
    }
    .fv-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .fv-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .fv-nav { display: none; }
    .fv-hero h1 { font-size: 2.2rem; }
    .fv-section { padding: 60px 0; }
    .fv-section-title { font-size: 1.8rem; }
    .fv-page-header h1 { font-size: 2.2rem; }
    .fv-form-row { grid-template-columns: 1fr; }
    .fv-stats-grid { grid-template-columns: 1fr; }
    .fv-footer-grid { grid-template-columns: 1fr; }
}
