/* ==========================================================================
   NUVEX KASAP V1 - Ultra-Modern Asymmetric Design
   Unique Layout, Diagonal Sections, Split Screens
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
    --primary: #ff0033;
    --primary-dark: #cc0029;
    --accent: #ffd700;
    --bg-black: #000000;
    --bg-dark: #0d0d0d;
    --bg-card: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border: #222222;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    --glow: 0 0 30px rgba(255, 0, 51, 0.5);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-black) url('../images/pattern-bg.png');
    background-attachment: fixed;
    color: var(--text-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-white);
    font-weight: 400;
    letter-spacing: 2px;
}

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

a:hover {
    color: var(--accent);
}

/* ==========================================================================
   NAVBAR - Minimal Floating
   ========================================================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-white);
    letter-spacing: 3px;
}

.navbar-brand i {
    color: var(--primary);
    margin-right: 10px;
}

.navbar-brand span {
    color: var(--accent);
}

.nav-link {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Navbar WhatsApp Button */
.navbar .btn-whatsapp {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar .btn-whatsapp:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO - Full Screen Split
   ========================================================================== */
.hero-section {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(13, 13, 13, 0.8));
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    width: fit-content;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.hero-title {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
}

.hero-title span {
    display: block;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

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

.hero-visual {
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent);
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 80px;
    display: flex;
    gap: 60px;
    z-index: 3;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 3.5rem;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    padding: 15px 40px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--bg-black);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: #1fb855;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   SECTIONS - Diagonal Cuts
   ========================================================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-diagonal {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: -80px 0;
}

.section-dark {
    background: var(--bg-dark);
}

.section-darker {
    background: #050505;
}

/* ==========================================================================
   FEATURE CARDS - Asymmetric Grid
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:nth-child(1) {
    grid-column: span 2;
}

.feature-card:nth-child(4) {
    grid-column: span 2;
}

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

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ==========================================================================
   ABOUT - Split Image/Text
   ========================================================================== */
.about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
}

.about-image {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--bg-dark));
}

.about-content {
    padding: 80px;
    background: var(--bg-dark);
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--text-white);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==========================================================================
   TESTIMONIALS - Slider Style
   ========================================================================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ==========================================================================
   CTA - Full Width Banner
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-white);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

/* ==========================================================================
   FOOTER - Minimal
   ========================================================================== */
.footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-white);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-brand i {
    color: var(--primary);
    margin-right: 10px;
}

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

.footer-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 400px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.footer-title {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--bg-black), var(--bg-dark));
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png');
    opacity: 0.1;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: var(--text-gray);
}

.breadcrumb-item a {
    color: var(--text-gray);
}

.breadcrumb-item.active {
    color: var(--primary);
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 50px;
}

.form-label {
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.form-control,
.form-select {
    background: var(--bg-black);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 15px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-dark);
    border-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(255, 0, 51, 0.2);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(50%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 51, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--text-white);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.recipe-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

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

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(30%);
}

.recipe-card:hover .recipe-img img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.recipe-time {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.recipe-body {
    padding: 30px;
}

.recipe-category {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.recipe-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.recipe-excerpt {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.recipe-link {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.recipe-link:hover {
    color: var(--accent);
}

/* ==========================================================================
   CONTACT INFO
   ========================================================================== */
.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: var(--text-white);
}

.contact-info-content h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-gray);
}

/* ==========================================================================
   MAP
   ========================================================================== */
.map-container {
    border: 1px solid var(--border);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    filter: grayscale(100%) invert(90%) contrast(80%);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

/* ==========================================================================
   STATS COUNTER
   ========================================================================== */
.stat-box {
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.stat-number {
    font-size: 3.5rem;
    color: var(--primary);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--bg-dark);
}

.timeline-content {
    width: 45%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 5%;
}

.timeline-content:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.timeline-content p {
    color: var(--text-gray);
    margin: 0;
}

/* ==========================================================================
   VISION & MISSION CARDS
   ========================================================================== */
.vision-mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 50px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.vision-mission-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.vm-icon i {
    font-size: 3rem;
    color: var(--text-white);
}

.vision-mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.vision-mission-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 50vh;
    }

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

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

    .feature-card:nth-child(1),
    .feature-card:nth-child(4) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        padding: 40px;
    }

    .about-content {
        padding: 40px;
    }

    .navbar {
        width: 90%;
        padding: 10px 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    /* Timeline Mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}