        :root {
            --primary: #2d5a27;
            --primary-light: #4a8c3f;
            --secondary: #f5e6c8;
            --accent: #d4a574;
            --cream: #faf8f3;
            --dark: #1a1a1a;
            --text: #2c2c2c;
            --text-light: #666;
            --white: #ffffff;
            --shadow: 0 4px 30px rgba(45, 90, 39, 0.1);
            --shadow-lg: 0 20px 60px rgba(45, 90, 39, 0.15);
            --danger: #dc3545;
            --danger-light: #f8d7da;
            --success: #28a745;
            --warning: #ffc107;
        }

        .dark {
            --primary: #5cb450;
            --primary-light: #7dd171;
            --secondary: #2a2520;
            --accent: #e8b88a;
            --cream: #1a1815;
            --dark: #f5f5f5;
            --text: #e8e8e8;
            --text-light: #aaa;
            --white: #242220;
            --shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
            --danger-light: #4a2a2d;
        }

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

        html {
            scroll-behavior: smooth;
        }

        /* RTL Support for Arabic */
        html[dir="rtl"] {
            font-family: 'DM Sans', 'Noto Sans Arabic', sans-serif;
        }

        html[dir="rtl"] .navbar {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .nav-links {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .logo {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .hero {
            direction: ltr; /* Keep internal layout LTR */
        }

        html[dir="rtl"] .hero-content {
            position: relative;
            z-index: 2;
            text-align: right;
            margin-left: auto;
            margin-right: 5%;
        }

        html[dir="rtl"] .hero-visual {
            right: auto;
            left: 5%;
        }

        html[dir="rtl"] .hero::before {
            right: auto;
            left: -20%;
        }

        html[dir="rtl"] .hero-badge {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .hero p {
            margin-left: auto;
            margin-right: 0;
        }

        html[dir="rtl"] .hero-buttons {
            flex-direction: row-reverse;
            justify-content: flex-end;
        }

        html[dir="rtl"] .btn i {
            margin-left: 0.5rem;
            margin-right: 0;
        }

        html[dir="rtl"] .about-grid {
            direction: rtl;
        }

        html[dir="rtl"] .feature {
            text-align: right;
        }

        html[dir="rtl"] .contact-grid {
            direction: rtl;
        }

        html[dir="rtl"] .contact-item {
            text-align: right;
        }

        html[dir="rtl"] .footer-grid {
            direction: rtl;
            text-align: right;
        }

        html[dir="rtl"] .footer-brand {
            text-align: right;
        }

        html[dir="rtl"] .language-selector {
            margin-left: 0;
            margin-right: 1rem;
        }

        html[dir="rtl"] .language-dropdown {
            right: auto;
            left: 0;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        /* ==================== LANDING PAGE STYLES ==================== */

        .landing-page { display: block; }
        .admin-page { display: none; }
        body.admin-mode .landing-page { display: none; }
        body.admin-mode .admin-page { display: block; }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }

        .navbar.scrolled {
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 0.7rem 5%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            overflow: hidden;
        }

        .logo-icon.has-image {
            background: white;
            border: 2px solid var(--primary-light);
            padding: 4px;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-text span {
            display: block;
            font-size: 0.65rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s;
        }

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

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

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

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
        }

        /* Language Selector */
        .language-selector {
            position: relative;
            margin-left: 1rem;
        }

        .language-btn {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.75rem;
            background: var(--cream);
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            color: var(--text);
            transition: all 0.3s;
        }

        .language-btn:hover {
            background: white;
            border-color: var(--primary);
        }

        .language-btn i:first-child {
            color: var(--primary);
        }

        .language-btn i:last-child {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

        .language-selector.active .language-btn i:last-child {
            transform: rotate(180deg);
        }

        .language-dropdown {
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            min-width: 150px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 1000;
            overflow: hidden;
        }

        .language-selector.active .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-dropdown a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--text);
            text-decoration: none;
            transition: background 0.2s;
            font-size: 0.9rem;
        }

        .language-dropdown a:hover {
            background: var(--cream);
        }

        .language-dropdown a.active {
            background: var(--primary);
            color: white;
        }

        .language-dropdown .flag {
            font-size: 1.2rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%);
            z-index: -1;
            animation: float 15s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, 30px) rotate(5deg); }
        }

        .hero-content {
            max-width: 600px;
            animation: slideUp 1s ease-out;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
        }

        .hero-badge i {
            color: var(--accent);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--dark);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--primary);
            position: relative;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(45, 90, 39, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(45, 90, 39, 0.4);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

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

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

        .btn-danger:hover {
            background: #c82333;
        }

        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .hero-visual {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 45%;
            max-width: 600px;
            animation: slideUp 1s ease-out 0.3s backwards;
        }

        .hero-image-container {
            position: relative;
            background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            padding: 2rem;
            animation: morph 8s ease-in-out infinite;
        }

        @keyframes morph {
            0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
        }

        .hero-svg {
            width: 100%;
            height: auto;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow-lg);
            animation: bounce 3s ease-in-out infinite;
        }

        .floating-card.card-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 20%;
            right: -5%;
            animation-delay: 1s;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .floating-card span {
            display: block;
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .floating-card strong {
            color: var(--dark);
            font-size: 1.1rem;
        }

        /* Section Styles */
        section {
            padding: 100px 5%;
        }

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

        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--dark);
            margin-bottom: 1rem;
        }

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

        /* About Section */
        .about {
            background: var(--white);
        }

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

        .about-image {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .farm-illustration {
            width: 90%;
            height: 90%;
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .experience-badge span {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .experience-badge small {
            font-size: 0.85rem;
            text-align: center;
        }

        .about-content h3 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .about-content > p {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .about-feature h4 {
            font-size: 1rem;
            color: var(--dark);
            margin-bottom: 0.3rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
        }

        .about-feature p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary) 0%, rgba(212, 165, 116, 0.3) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Products Section */
        .products {
            background: var(--white);
        }

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

        .product-card {
            background: var(--cream);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .product-image {
            height: 220px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image svg {
            width: 120px;
            height: 120px;
            opacity: 0.9;
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-content h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .product-content p {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
        }

        .product-btn {
            display: none !important;
        }

        /* Reviews Section */
        .reviews-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .review-slider {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding: 2rem 0;
        }

        .review-slider::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            min-width: 100%;
            scroll-snap-align: center;
            background: var(--white);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .review-quote {
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: -1rem;
        }

        .review-text {
            font-size: 1.25rem;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

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

        .review-info h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.1rem;
            color: var(--dark);
        }

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

        .review-stars {
            color: var(--accent);
            margin-top: 1.5rem;
            font-size: 1.2rem;
        }

        /* Customer Review Modal */
        .review-modal {
            max-width: 500px;
            width: 90%;
            text-align: left;
        }

        .review-modal h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .review-modal .form-row {
            display: flex;
            gap: 1rem;
        }

        .review-modal .form-group {
            flex: 1;
            margin-bottom: 1rem;
        }

        .review-modal .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text);
        }

        .review-modal .form-group input,
        .review-modal .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--secondary);
            border-radius: 8px;
            font-size: 1rem;
            background: var(--cream);
            color: var(--text);
            transition: all 0.3s;
        }

        .review-modal .form-group input:focus,
        .review-modal .form-group textarea:focus {
            border-color: var(--primary);
            background: var(--white);
            outline: none;
        }

        .dark .review-modal .form-group input,
        .dark .review-modal .form-group textarea {
            background: var(--dark-card);
            border-color: #444;
        }

        .dark .review-modal .form-group input:focus,
        .dark .review-modal .form-group textarea:focus {
            border-color: var(--primary);
            background: var(--dark-bg);
        }

        .review-modal .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        @media (max-width: 480px) {
            .review-modal .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        .star-rating-input {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
        }

        .star-rating-input i {
            color: #ddd;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .star-rating-input i.active,
        .star-rating-input i:hover {
            color: var(--accent);
            transform: scale(1.1);
        }

        .star-rating-input:hover i {
            color: #ddd;
        }

        .star-rating-input:hover i:hover,
        .star-rating-input:hover i:hover ~ i {
            color: #ddd;
        }

        .star-rating-input i:hover ~ i {
            color: #ddd !important;
        }

        .star-rating-input:hover i:nth-child(-n+1):hover ~ i:nth-child(-n+1),
        .star-rating-input i:hover,
        .star-rating-input i:hover ~ i:not(:hover) {
            color: #ddd;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: var(--primary);
            width: 30px;
            border-radius: 10px;
        }

        /* Contact Section */
        .contact {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--secondary) 0%, rgba(212, 165, 116, 0.3) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
        }

        .contact-item h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 400;
            margin-bottom: 0.2rem;
        }

        .contact-item p {
            color: var(--dark);
            font-weight: 500;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        .contact-form {
            background: var(--cream);
            padding: 2.5rem;
            border-radius: 24px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 2px solid var(--secondary);
            border-radius: 12px;
            background: var(--cream);
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            color: var(--text);
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
        }

        .dark .form-group input,
        .dark .form-group textarea,
        .dark .form-group select {
            background: var(--dark-card);
            border-color: #444;
            color: var(--dark-text);
        }

        .dark .form-group input:focus,
        .dark .form-group textarea:focus,
        .dark .form-group select:focus {
            border-color: var(--primary);
            background: var(--dark-bg);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .image-upload-area {
            width: 100%;
            height: 200px;
            border: 2px dashed #ddd;
            border-radius: 12px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s;
        }

        .image-upload-area:hover {
            border-color: var(--primary);
            background: rgba(61, 90, 39, 0.05);
        }

        .image-upload-area .image-preview {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--text-light);
        }

        .image-upload-area .image-preview i {
            font-size: 2.5rem;
            color: #ccc;
        }

        .image-upload-area .image-preview span {
            font-size: 0.9rem;
        }

        .image-upload-area .image-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-upload-area.has-image .image-preview i,
        .image-upload-area.has-image .image-preview span {
            display: none;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--cream);
            padding: 4rem 5% 2rem;
        }

        .dark footer {
            background: #0f0e0d;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            margin: 1rem 0;
            font-size: 0.95rem;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            transform: scale(0.9);
            transition: transform 0.3s;
            max-height: 90vh;
            overflow-y: auto;
        }

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

        .modal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .modal h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .modal p {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

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

        /* ==================== ADMIN PAGE STYLES ==================== */

        .admin-page {
            min-height: 100vh;
            background: var(--cream);
        }

        .admin-login {
            min-height: 100vh;
            display: flex;
            background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 50%, #4a8c3f 100%);
            position: relative;
            overflow: hidden;
        }

        .admin-login::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: loginBgMove 30s linear infinite;
        }

        @keyframes loginBgMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(30px, 30px); }
        }

        .login-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
        }

        .login-left-content {
            max-width: 400px;
        }

        .login-left .logo-icon {
            width: 100px;
            height: 100px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            font-size: 3rem;
            margin: 0 auto 2rem;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(255,255,255,0.1); }
        }

        .login-left h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .login-left p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .login-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: left;
        }

        .login-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }

        .login-feature:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(5px);
        }

        .login-feature i {
            font-size: 1.25rem;
            width: 24px;
            text-align: center;
        }

        .login-feature span {
            font-size: 0.95rem;
        }

        .login-right {
            width: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            position: relative;
            z-index: 1;
        }

        .login-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
            width: 100%;
            max-width: 400px;
            text-align: center;
            animation: slideInRight 0.6s ease-out;
        }

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

        .login-card .logo {
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .login-card .logo-icon {
            width: 60px;
            height: 60px;
            font-size: 1.8rem;
        }

        .login-card h2 {
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-size: 1.75rem;
        }

        .login-card > p {
            color: var(--text-light);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .login-card .form-group {
            text-align: left;
        }

        .login-card .form-group input {
            background: var(--cream);
            border: 2px solid transparent;
            padding: 1rem 1.2rem 1rem 3rem;
            position: relative;
        }

        .login-card .form-group input:focus {
            background: var(--white);
            border-color: var(--primary);
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 1rem;
            z-index: 1;
            transition: color 0.3s;
        }

        .input-wrapper input:focus + i,
        .input-wrapper:focus-within i {
            color: var(--primary);
        }

        .login-error {
            background: var(--danger-light);
            color: var(--danger);
            padding: 0.75rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
            font-size: 0.9rem;
            animation: shake 0.4s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            20%, 60% { transform: translateX(-5px); }
            40%, 80% { transform: translateX(5px); }
        }

        .login-error.show {
            display: block;
        }

        .login-card .btn-primary {
            padding: 1.1rem 2rem;
            font-size: 1rem;
            box-shadow: 0 10px 30px rgba(45, 90, 39, 0.4);
        }

        .login-card .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(45, 90, 39, 0.5);
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s;
        }

        .back-link:hover {
            color: var(--primary);
            gap: 0.75rem;
        }

        @media (max-width: 900px) {
            .admin-login {
                flex-direction: column;
            }

            .login-left {
                padding: 2rem;
                min-height: auto;
            }

            .login-left h1 {
                font-size: 1.75rem;
            }

            .login-features {
                display: none;
            }

            .login-right {
                width: 100%;
                padding: 2rem;
            }

            .login-card {
                padding: 2rem;
            }
        }

        /* Admin Dashboard */
        .admin-dashboard {
            display: none;
            min-height: 100vh;
        }

        .admin-dashboard.active {
            display: flex;
        }

        .admin-sidebar {
            width: 280px;
            background: var(--white);
            border-right: 1px solid var(--secondary);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            position: fixed;
            height: 100vh;
            overflow-y: auto;
        }

        .admin-sidebar .logo {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--secondary);
        }

        .admin-nav {
            list-style: none;
            flex: 1;
        }

        .admin-nav li {
            margin-bottom: 0.5rem;
        }

        .admin-nav a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1rem;
            border-radius: 12px;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: all 0.3s;
        }

        .admin-nav a:hover,
        .admin-nav a.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
        }

        .admin-nav a i {
            width: 20px;
            text-align: center;
        }

        .nav-section-title {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            padding: 1rem 1rem 0.5rem;
            margin-top: 0.5rem;
        }

        .dark .nav-section-title {
            color: #888;
        }

        .pending-badge,
        .nav-badge {
            background: #ef4444;
            color: white;
            font-size: 0.7rem;
            padding: 0.15rem 0.5rem;
            border-radius: 10px;
            margin-left: auto;
            font-weight: 600;
        }

        /* Language Tabs for Translations */
        .lang-tab {
            padding: 0.6rem 1.2rem;
            border: 2px solid var(--primary-light);
            background: white;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
            color: var(--text);
        }

        .lang-tab:hover {
            background: var(--cream);
            border-color: var(--primary);
        }

        .lang-tab.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .dark .lang-tab {
            background: var(--cream);
            border-color: var(--primary-light);
        }

        .dark .lang-tab.active {
            background: var(--primary);
        }

        .admin-sidebar-footer {
            padding-top: 1.5rem;
            border-top: 1px solid var(--secondary);
        }

        .admin-user {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .admin-user-avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .admin-user-info h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .admin-user-info span {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .admin-main {
            flex: 1;
            margin-left: 280px;
            padding: 2rem;
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .admin-header h1 {
            font-size: 1.75rem;
            color: var(--dark);
        }

        .admin-header-actions {
            display: flex;
            gap: 1rem;
        }

        /* Admin Content Panels */
        .admin-panel {
            display: none;
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
        }

        .admin-panel.active {
            display: block;
        }

        .admin-panel h2 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--secondary);
        }

        /* Admin Tables */
        .table-wrapper {
            width: 100%;
            overflow-x: auto;
        }

        .admin-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 500px;
        }

        .admin-table th,
        .admin-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--secondary);
        }

        .admin-table th {
            font-weight: 600;
            color: var(--text-light);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .admin-table td {
            color: var(--text);
        }

        .admin-table tr:hover {
            background: var(--cream);
        }

        .admin-table .actions {
            display: flex;
            gap: 0.5rem;
        }

        .admin-table .actions button {
            padding: 0.4rem 0.75rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .admin-table .actions .edit-btn {
            background: var(--secondary);
            color: var(--primary);
        }

        .admin-table .actions .edit-btn:hover {
            background: var(--primary);
            color: white;
        }

        .admin-table .actions .delete-btn {
            background: var(--danger-light);
            color: var(--danger);
        }

        .admin-table .actions .delete-btn:hover {
            background: var(--danger);
            color: white;
        }

        .status-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .status-badge.active {
            background: rgba(40, 167, 69, 0.15);
            color: var(--success);
        }

        .status-badge.inactive {
            background: var(--danger-light);
            color: var(--danger);
        }

        .add-new-btn {
            margin-bottom: 1.5rem;
        }

        /* Toggle Switch */
        .toggle-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: var(--cream);
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .toggle-container label {
            font-weight: 500;
            color: var(--text);
            flex: 1;
        }

        .toggle-container small {
            color: var(--text-light);
            display: block;
            font-weight: 400;
            margin-top: 0.25rem;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 52px;
            height: 28px;
            flex-shrink: 0;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
            position: absolute;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--text-light);
            border-radius: 28px;
            transition: 0.3s;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 3px;
            bottom: 3px;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }

        .toggle-switch input:checked + .toggle-slider {
            background: var(--primary);
        }

        .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(24px);
        }

        /* Make toggle clickable */
        .toggle-switch label {
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        /* Collapsible sections */
        .collapsible-section {
            margin-bottom: 1rem;
        }

        .collapsible-header {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            background: var(--cream);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text);
            transition: all 0.3s;
        }

        .collapsible-header:hover {
            background: #e8e4da;
        }

        .collapsible-header span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .collapsible-header i:last-child {
            transition: transform 0.3s;
        }

        .collapsible-header.active i:last-child {
            transform: rotate(180deg);
        }

        .collapsible-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 0.5rem;
        }

        .collapsible-content.active {
            max-height: 1000px;
            padding: 1rem 0.5rem;
        }

        .quick-link-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 1rem;
            background: white;
            border-radius: 8px;
            margin-bottom: 0.5rem;
            border: 1px solid #eee;
        }

        .quick-link-item .link-info {
            flex: 1;
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .quick-link-item input[type="text"] {
            flex: 1;
            padding: 0.5rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.9rem;
        }

        .quick-link-item .toggle-switch {
            width: 44px;
            height: 24px;
        }

        .quick-link-item .toggle-slider:before {
            height: 18px;
            width: 18px;
        }

        .quick-link-item .toggle-switch input:checked + .toggle-slider:before {
            transform: translateX(20px);
        }

        .quick-link-item .btn.delete-btn {
            padding: 0.4rem 0.6rem;
            font-size: 0.85rem;
        }

        /* Message Cards */
        .message-card {
            background: white;
            border-radius: 12px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .message-card.unread {
            border-left-color: #f59e0b;
            background: #fffbeb;
        }

        .message-card:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .message-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

        .message-sender {
            font-weight: 600;
            color: var(--text);
        }

        .message-email {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .message-phone {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .message-date {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .message-content {
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 1rem;
            white-space: pre-wrap;
        }

        .message-actions {
            display: flex;
            gap: 0.5rem;
        }

        .message-actions .btn {
            padding: 0.4rem 0.75rem;
            font-size: 0.85rem;
        }

        /* Mobile Card Layout for Tables */
        .mobile-cards {
            display: none;
        }

        .mobile-card {
            background: var(--cream);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .mobile-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

        .mobile-card-title {
            font-weight: 600;
            color: var(--dark);
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mobile-card-title i {
            color: var(--primary);
        }

        .mobile-card-body {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .mobile-card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .mobile-card-tag {
            background: var(--white);
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            font-size: 0.8rem;
            color: var(--text);
        }

        .mobile-card-actions {
            display: flex;
            gap: 0.5rem;
            padding-top: 0.75rem;
            border-top: 1px solid var(--secondary);
        }

        .mobile-card-actions button {
            flex: 1;
            padding: 0.6rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            transition: all 0.3s;
        }

        .mobile-card-actions .edit-btn {
            background: var(--secondary);
            color: var(--primary);
        }

        .mobile-card-actions .delete-btn {
            background: var(--danger-light);
            color: var(--danger);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 3rem;
            color: var(--text-light);
        }

        .empty-state i {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        /* Form Modal */
        .form-modal .modal {
            max-width: 600px;
            text-align: left;
        }

        .form-modal .modal h3 {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .icon-select {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .icon-option {
            padding: 0.75rem;
            border: 2px solid var(--secondary);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .icon-option:hover,
        .icon-option.selected {
            border-color: var(--primary);
            background: var(--secondary);
        }

        .icon-option i {
            font-size: 1.25rem;
            color: var(--primary);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .stat-card {
            background: var(--cream);
            padding: 1.5rem;
            border-radius: 16px;
            text-align: center;
        }

        .stat-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-card h3 {
            font-size: 2rem;
            color: var(--dark);
            font-family: 'Playfair Display', serif;
        }

        .stat-card p {
            color: var(--text-light);
            margin: 0;
        }

        /* Mobile Styles */
        @media (max-width: 1024px) {
            .hero-visual {
                display: none;
            }

            .hero-content {
                max-width: 100%;
            }

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

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

            .admin-sidebar {
                position: fixed;
                left: 0;
                top: 0;
                width: 280px;
                height: 100vh;
                transform: translateX(-100%);
                z-index: 1001;
                transition: transform 0.3s ease;
                box-shadow: none;
            }

            .admin-sidebar.open {
                transform: translateX(0);
                box-shadow: 5px 0 30px rgba(0,0,0,0.2);
            }

            .admin-main {
                margin-left: 0;
                padding-top: 70px;
            }

            .admin-mobile-header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                height: 60px;
            }

            .admin-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .admin-header h1 {
                font-size: 1.4rem;
            }

            .mobile-menu-btn {
                display: block !important;
            }

            .admin-panel {
                padding: 1.25rem;
                border-radius: 16px;
            }

            .admin-panel h2 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                gap: 1.5rem;
                box-shadow: var(--shadow-lg);
                transition: right 0.3s;
            }

            .nav-links.active {
                right: 0;
            }

            .menu-toggle {
                display: block;
                z-index: 1001;
            }

            .language-selector {
                position: fixed;
                top: 1rem;
                right: 4rem;
                z-index: 1002;
                margin-left: 0;
            }

            .language-btn {
                padding: 0.4rem 0.6rem;
                font-size: 0.85rem;
            }

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

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }

            .experience-badge {
                width: 120px;
                height: 120px;
                right: 10px;
                bottom: -10px;
            }

            .experience-badge span {
                font-size: 2.5rem;
            }

            /* Hide tables, show mobile cards */
            .table-wrapper {
                display: none;
            }

            .mobile-cards {
                display: block;
            }

            /* Footer Settings Mobile */
            .collapsible-header {
                padding: 0.85rem 1rem;
                font-size: 0.9rem;
            }

            .collapsible-header span {
                gap: 0.4rem;
            }

            .quick-link-item {
                flex-wrap: wrap;
                gap: 0.75rem;
                padding: 0.75rem;
            }

            .quick-link-item .link-info {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
            }

            .quick-link-item input[type="text"] {
                width: 100%;
                font-size: 16px;
            }

            .quick-link-item .toggle-switch {
                order: 1;
            }

            .quick-link-item .btn.delete-btn {
                order: 2;
            }

            .admin-panel {
                padding: 1rem;
            }

            .admin-panel h2 {
                font-size: 1.1rem;
                margin-bottom: 1rem;
                padding-bottom: 0.75rem;
            }

            .add-new-btn {
                width: 100%;
                justify-content: center;
            }

            /* Dashboard stats grid for mobile */
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem;
            }

            .stat-card {
                padding: 1rem;
            }

            .stat-card i {
                font-size: 1.5rem;
            }

            .stat-card h3 {
                font-size: 1.5rem;
            }

            .stat-card p {
                font-size: 0.85rem;
            }
        }

        /* Animations on Scroll */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            cursor: pointer;
        }

        .admin-mobile-header {
            display: none;
            padding: 1rem;
            background: var(--white);
            border-bottom: 1px solid var(--secondary);
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .admin-mobile-header {
                display: flex;
            }
        }

        .overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }
