/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #DC2626;
    --primary-yellow: #FCD34D;
    --dark-red: #B91C1C;
    --light-yellow: #FEF3C7;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --border-color: #E5E7EB;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Force light color scheme across all platforms */
    color-scheme: light only;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    
    /* Cross-platform color consistency */
    color-scheme: light;
    -webkit-color-adjust: exact;
    color-adjust: exact;
    forced-color-adjust: none;
}

/* Flexible section spacing - prevents layout breaks when sections are removed */
section {
    position: relative;
    z-index: 1;
}

section:not(:last-child) {
    margin-bottom: 0;
}

/* Ensure proper spacing between major sections */
.hero + section,
.services-section + section,
.process-section + section,
.understanding-section + section,
.contact-section + section {
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.nav-contact {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    white-space: nowrap;
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.email-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red)) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
    white-space: nowrap !important;
    display: inline-block !important;
    border: none !important;
}

.email-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4) !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red)) !important;
}

.email-btn:visited,
.email-btn:active,
.email-btn:focus {
    color: var(--white) !important;
    text-decoration: none !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FEF3C7 0%, #FFFFFF 50%, #FEE2E2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23FCD34D" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-social-proof {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature span:not(.feature-icon) {
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta-fullwidth {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 3rem 0 2rem 0;
    padding: 0 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    min-width: 160px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    min-width: 160px;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    min-width: 160px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.hero-trust {
    display: flex;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.25rem;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image-container {
    position: relative;
}

.hero-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-secondary-images {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.secondary-img-item {
    text-align: center;
    transform: rotate(1deg);
}

.secondary-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.img-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Understanding Section */
.understanding-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #fce4ec 50%, #f3e5f5 100%);
    position: relative;
    overflow: hidden;
}

.understanding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" seed="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.1"/></svg>');
    opacity: 0.2;
}

.understanding-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.understanding-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.understanding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow), var(--primary-red));
}

.understanding-content {
    padding: 3rem 2.5rem;
    text-align: center;
}

.understanding-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    position: relative;
}

.understanding-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

.problems-list {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.problem-item:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: translateX(10px);
}

.problem-bullet {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 1rem;
    margin-top: 0.1rem;
    min-width: 20px;
}

.problem-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

/* Our Story Section */
.our-story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #fef3c7 100%);
    position: relative;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FCD34D" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    animation: fadeInLeft 1s ease-out;
}

.story-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

.story-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.5;
}

.story-blocks {
    margin-bottom: 3rem;
}

.story-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red), var(--primary-yellow));
}

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-yellow);
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.story-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.story-block p {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

.story-block strong {
    color: var(--primary-red);
    font-weight: 600;
}

.story-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.value-item {
    text-align: center;
}

.value-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.value-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-cta {
    display: flex;
    gap: 1rem;
}

/* Story Visual */
.story-visual {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.story-image-container {
    position: relative;
}

.main-story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.story-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(220, 38, 38, 0.9);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.story-year {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.story-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-highlights {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.highlight-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-wholesale:hover {
    border-color: #3B82F6;
}

.service-food:hover {
    border-color: #10B981;
}

.service-retail:hover {
    border-color: #F59E0B;
}

.service-icon {
    margin-bottom: 2rem;
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-yellow), #F0F9FF);
    transition: all 0.3s ease;
}

.service-wholesale .icon-container {
    background: linear-gradient(135deg, #DBEAFE, #EBF8FF);
}

.service-food .icon-container {
    background: linear-gradient(135deg, #D1FAE5, #ECFDF5);
}

.service-retail .icon-container {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
}

.service-emoji {
    font-size: 2.5rem;
}

.service-card:hover .icon-container {
    transform: rotate(5deg) scale(1.1);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--dark-red);
    transform: translateX(5px);
}

.service-wholesale .service-link:hover {
    color: #3B82F6;
}

.service-food .service-link:hover {
    color: #10B981;
}

.service-retail .service-link:hover {
    color: #F59E0B;
}

.services-cta {
    background: linear-gradient(135deg, var(--light-yellow), #F0F9FF);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="process-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23FCD34D" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>');
    opacity: 0.3;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

.process-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow), var(--primary-red));
    z-index: 0;
    display: none;
}

.process-step {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-1:hover {
    border-color: #3B82F6;
}

.step-2:hover {
    border-color: #F59E0B;
}

.step-3:hover {
    border-color: #10B981;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.step-number span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.step-highlight {
    background: linear-gradient(135deg, var(--light-yellow), #F0F9FF);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    display: inline-block;
}

.step-highlight span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-1 .step-highlight {
    background: linear-gradient(135deg, #DBEAFE, #EBF8FF);
}

.step-1 .step-highlight span {
    color: #3B82F6;
}

.step-2 .step-highlight {
    background: linear-gradient(135deg, #FEF3C7, #FFFBEB);
}

.step-2 .step-highlight span {
    color: #F59E0B;
}

.step-3 .step-highlight {
    background: linear-gradient(135deg, #D1FAE5, #ECFDF5);
}

.step-3 .step-highlight span {
    color: #10B981;
}

.process-cta {
    text-align: center;
}

.cta-box {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.cta-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-divider {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 0 1rem;
}

/* Quick Categories */
.quick-categories {
    padding: 5rem 0;
    background: var(--light-bg);
}

.quick-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-yellow);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Force light mode regardless of system preferences */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light only !important;
    }
    
    body {
        background-color: var(--white) !important;
        color: var(--text-dark) !important;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .phone-btn,
    .whatsapp-btn,
    .email-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .logo {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-fullwidth {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 2rem 0 1rem 0;
        padding: 0 1rem;
    }
    
    .hero-trust {
        justify-content: center;
        gap: 1rem;
    }
    
    .trust-item strong {
        font-size: 1.5rem;
    }
    
    .nav-container {
        padding: 0.7rem 1rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 32px;
        height: 32px;
    }
    
    .phone-btn,
    .whatsapp-btn,
    .email-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Understanding Section Mobile */
    .understanding-section {
        padding: 3rem 0;
    }
    
    .understanding-container {
        padding: 0 1rem;
    }
    
    .understanding-content {
        padding: 2rem 1.5rem;
    }
    
    .understanding-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .problem-item {
        margin-bottom: 1.2rem;
        padding: 0.8rem;
    }
    
    .problem-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .problem-bullet {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }

    /* Story Section Mobile */
    .our-story-section {
        padding: 4rem 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-title {
        font-size: 2.5rem;
    }
    
    .story-subtitle {
        font-size: 1.1rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .story-block h3 {
        font-size: 1.2rem;
    }
    
    .story-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .story-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 4rem 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
        height: auto;
    }
    
    .service-features {
        margin-bottom: 1.5rem;
    }
    
    .service-features li {
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .services-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Process Section Mobile */
    .process-section {
        padding: 4rem 0;
    }
    
    .process-container {
        padding: 0 1rem;
    }
    
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.95rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.8rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-divider {
        order: 2;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-cta-fullwidth {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 1.5rem 0 1rem 0;
        padding: 0 0.5rem;
    }
    
    /* Navigation for small mobile */
    .nav-container {
        padding: 0.5rem 0.8rem;
        justify-content: space-between;
        align-items: center;
        min-height: 50px;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .logo {
        width: 28px;
        height: 28px;
    }
    
    .phone-btn,
    .whatsapp-btn,
    .email-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
        min-width: auto;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
    
    .nav-contact {
        gap: 0.5rem;
    }

    /* Understanding Section Small Mobile */
    .understanding-title {
        font-size: 1.7rem;
    }
    
    .understanding-content {
        padding: 1.5rem 1rem;
    }
    
    .problem-item {
        padding: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .problem-text {
        font-size: 0.95rem;
    }
    
    .problem-bullet {
        font-size: 1.2rem;
        margin-right: 0.6rem;
    }

    /* Story Section Small Mobile */
    .our-story-section {
        padding: 3rem 0;
    }
    
    .story-container {
        padding: 0 1rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .story-block {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .story-block h3 {
        font-size: 1.1rem;
    }
    
    .story-block p {
        font-size: 0.95rem;
    }
    
    .story-icon {
        font-size: 2rem;
    }
    
    .story-values {
        padding: 1.2rem;
    }
    
    .value-number {
        font-size: 1.8rem;
    }
    
    .value-text {
        font-size: 0.8rem;
    }
    
    .story-overlay {
        padding: 0.8rem 1rem;
    }
    
    .story-year {
        font-size: 1.5rem;
    }
    
    .story-text {
        font-size: 0.8rem;
    }

    /* Services Section Small Mobile */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        margin-bottom: 3rem;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        height: auto;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-emoji {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        margin-bottom: 1rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .service-link {
        font-size: 0.9rem;
    }
    
    .services-cta {
        padding: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }

    /* Process Section Small Mobile */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .process-steps {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }
    
    .step-number span {
        font-size: 1.3rem;
    }
    
    .step-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .step-highlight {
        padding: 0.6rem 1.2rem;
    }
    
    .step-highlight span {
        font-size: 0.8rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-box h3 {
        font-size: 1.6rem;
    }
    
    .cta-box p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Contact Section - Updated 2025 */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, var(--light-yellow) 100%);
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
}

.contact-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: auto;
    max-width: 300px;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    word-break: break-word;
}

.contact-details a:hover {
    color: var(--dark-red);
    text-decoration: underline;
}

.contact-details p {
    color: var(--text-light);
    font-size: 1rem;
    word-wrap: break-word;
    margin: 0;
    line-height: 1.4;
}

.contact-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: nowrap !important;
    align-items: center;
    margin-top: 1rem;
}

/* Contact Section Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        padding: 1.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .contact-actions {
        flex-direction: row !important;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap !important;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-content {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        font-size: 0.9rem;
        width: auto;
        max-width: 280px;
        box-sizing: border-box;
        align-items: center;
    }
    

    
    .contact-actions {
        flex-direction: row !important;
        gap: 0.5rem;
        flex-wrap: nowrap !important;
        justify-content: center;
        width: 100%;
    }
    
    .contact-actions .btn-primary,
    .contact-actions .btn-secondary {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem;
        flex: 1 1 auto !important;
        max-width: 48%;
        min-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
} 