:root {
            --primary-brown: #6B4423;
            --dark-brown: #3E2723;
            --light-brown: #A0826D;
            --cream: #F5E6D3;
            --burnt-orange: #D2691E;
            --gold: #C9A96E;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            overflow-x: hidden;
            background: var(--cream);
        }

        h1, h2, h3 {
            font-family: 'Marhey', cursive;
        }

        /* Navbar */
        .navbar {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
            padding: 1.2rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.8rem 0;
            box-shadow: 0 6px 30px rgba(0,0,0,0.4);
        }

        .navbar-brand {
            font-family: 'Marhey', cursive;
            font-size: 1.8rem;
            color: var(--gold) !important;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .nav-link {
            color: var(--cream) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover:after {
            width: 80%;
        }

        /* Hero Section */
        .hero-section {
            margin-top: 80px;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 50%, var(--burnt-orange) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .coffee-beans {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.1;
        }

        .bean {
            position: absolute;
            width: 30px;
            height: 40px;
            background: url('../bean.png');
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            animation: fall linear infinite;
            opacity: 0.3;
        }

        @keyframes fall {
            0% {
                transform: translateY(-100px) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            color: var(--gold);
            text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--cream);
            margin-bottom: 1rem;
            animation: fadeInUp 1.2s ease;
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 3rem;
            animation: fadeInUp 1.4s ease;
        }

        .hero-btn {
            background: var(--gold);
            color: var(--dark-brown);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            border: 3px solid var(--gold);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            animation: fadeInUp 1.6s ease;
            box-shadow: 0 5px 20px rgba(201, 169, 110, 0.4);
        }

        .hero-btn:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(201, 169, 110, 0.6);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Story Section */
        .story-section {
            padding: 6rem 0;
            background: var(--cream);
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            color: var(--dark-brown);
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--burnt-orange);
            margin: 1rem auto;
        }

        .story-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-top: 3rem;
        }

        .story-text {
            font-size: 1.2rem;
            line-height: 2;
            color: var(--primary-brown);
            text-align: justify;
        }

        /* Services Section */
        .services-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
        }

        .service-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            border: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(201, 169, 110, 0.5);
            border-color: var(--gold);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-brown), var(--burnt-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: white;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(360deg);
        }

        .service-title {
            font-size: 1.5rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-desc {
            color: var(--primary-brown);
            line-height: 1.8;
        }

        /* Features Section */
        .features-section {
            padding: 6rem 0;
            background: var(--cream);
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(-10px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--burnt-orange);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 1.5rem;
            font-size: 1.8rem;
            color: white;
        }

        .feature-text h4 {
            color: var(--dark-brown);
            margin-bottom: 0.5rem;
        }

        .feature-text p {
            color: var(--primary-brown);
            margin: 0;
        }

        /* Dashboard Preview */
        .dashboard-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
            color: white;
        }

        .dashboard-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .dashboard-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .dashboard-card h4 {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: var(--cream);
            text-align: center;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary-brown), var(--burnt-orange));
            padding: 4rem 3rem;
            border-radius: 30px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        }

        .cta-title {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .cta-text {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 2rem;
        }

        /* Newsletter */
        .newsletter-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
            text-align: center;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
            gap: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
        }

        .newsletter-btn {
            padding: 1rem 3rem;
            background: var(--gold);
            color: var(--dark-brown);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(201, 169, 110, 0.5);
        }

        /* Footer */
        footer {
            background: var(--dark-brown);
            color: var(--cream);
            padding: 3rem 0 1.5rem;
        }

        .footer-section h5 {
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-link {
            color: var(--cream);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--gold);
            padding-right: 10px;
        }

        .social-icons a {
            color: var(--cream);
            font-size: 1.5rem;
            margin-left: 1rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--gold);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--light-brown);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.3rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .newsletter-form {
                flex-direction: column;
            }
        }