* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-blue: #1e3a8a;
        --secondary-teal: #0d9488;
        --accent-gold: #f59e0b;
        --text-dark: #1f2937;
        --text-light: #6b7280;
        --background-light: #f8fafc;
        --white: #ffffff;
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        --border-radius: 8px;
        --transition: all 0.3s ease;
        --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
        --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    body {
        font-family: 'Cairo', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background-color: var(--white);
        overflow-x: hidden;
        font-display: swap;
        will-change: auto;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(30, 58, 138, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        z-index: 1000;
        transition: var(--transition);
        will-change: transform;
        contain: layout;
    }

    .navbar.scrolled {
        background: var(--primary-blue);
        box-shadow: var(--shadow);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo h2 {
        color: var(--white);
        font-size: 1.8rem;
        font-weight: 700;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-link {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-gold);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: var(--accent-gold);
        transition: var(--transition);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: var(--white);
        margin: 3px 0;
        transition: var(--transition);
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        background: url('uploads/hero.jpg') center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        color: var(--white);
        contain: layout;
        will-change: auto;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(13, 148, 136, 0.6));
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 0 20px;
    }

    .hero-title {
        font-family: 'Amiri', serif;
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        animation: fadeInUp 1s ease-out;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
        animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.8;
        opacity: 0.9;
        animation: fadeInUp 1s ease-out 0.4s both;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        animation: fadeInUp 1s ease-out 0.6s both;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 30px;
        border-radius: var(--border-radius);
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-size: 1rem;
        min-height: 48px;
        text-align: center;
        white-space: nowrap;
    }

    .btn-primary {
        background: var(--gradient-gold);
        color: var(--white);
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .btn-secondary:hover {
        background: var(--white);
        color: var(--primary-blue);
        transform: translateY(-2px);
    }

    .hero-scroll {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: var(--white);
        animation: bounce 2s infinite;
    }

    .scroll-arrow {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }

    /* Daily Special Section */
    .daily-special {
        padding: 6rem 0;
        background: var(--gradient-primary);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .daily-special::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

    .daily-special-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .daily-badge {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.2);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        margin-bottom: 1rem;
        backdrop-filter: blur(10px);
    }

    .day-name {
        font-weight: 700;
        font-size: 1.1rem;
    }

    .date {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .daily-title {
        font-family: 'Amiri', serif;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: var(--white);
    }

    .daily-offer {
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius);
        padding: 2rem;
        margin-bottom: 2rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .offer-item {
        display: flex;
        gap: 1.5rem;
        align-items: center;
    }

    .offer-item img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: var(--border-radius);
        border: 3px solid var(--accent-gold);
    }

    .offer-details h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--white);
    }

    .offer-details p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .offer-price {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .original-price {
        text-decoration: line-through;
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
    }

    .discount-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-gold);
    }

    .discount-badge {
        background: var(--accent-gold);
        color: var(--white);
        padding: 0.25rem 0.75rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .nutrition-info {
        display: flex;
        gap: 1rem;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .nutrition-info span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .daily-special-image {
        position: relative;
        text-align: center;
    }

    .daily-special-image img {
        width: 100%;
        max-width: 400px;
        height: 400px;
        object-fit: cover;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
    }

    .special-overlay {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .special-badge {
        background: var(--accent-gold);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: var(--shadow);
    }

    /* Section Styles */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-family: 'Amiri', serif;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Menu Section */
    .menu-section {
        padding: 6rem 0;
        background: var(--background-light);
    }

    .menu-categories {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .category-btn {
        padding: 10px 20px;
        background: var(--white);
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
        border-radius: 25px;
        cursor: pointer;
        transition: var(--transition);
        font-weight: 500;
    }

    .category-btn:hover,
    .category-btn.active {
        background: var(--primary-blue);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .menu-item {
        background: var(--white);
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        opacity: 1;
        transform: translateY(0);
    }

    .menu-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .menu-item.hidden {
        display: none;
    }

    .menu-item-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

    .menu-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .menu-item:hover .menu-item-image img {
        transform: scale(1.1);
    }

    .menu-item-content {
        padding: 1.5rem;
    }

    .menu-item-name {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .menu-item-description {
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .menu-item-calories {
        color: var(--accent-gold);
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-item-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-item-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--accent-gold);
    }

    .order-btn {
        background: var(--secondary-teal);
        color: var(--white);
        border: none;
        padding: 8px 16px;
        border-radius: var(--border-radius);
        cursor: pointer;
        font-weight: 500;
        transition: var(--transition);
    }

    .order-btn:hover {
        background: #0f766e;
        transform: translateY(-1px);
    }

    /* أنماط احتياطية لضمان عمل الأزرار العائمة */
    .floating-buttons {
        position: fixed !important;
        left: 20px !important;
        bottom: 80px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        z-index: 1001 !important;
    }
    
    .floating-btn {
        width: 60px !important;
        height: 60px !important;
        border: none !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        text-decoration: none !important;
        position: relative !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.3s ease !important;
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background-color: var(--white);
        margin: 5% auto;
        padding: 2rem;
        border-radius: var(--border-radius);
        width: 90%;
        max-width: 500px;
        position: relative;
        box-shadow: var(--shadow-lg);
        max-height: 90vh;
        overflow-y: auto;
    }

    .close {
        color: #aaa;
        float: left;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        position: absolute;
        top: 15px;
        left: 20px;
    }

    .close:hover,
    .close:focus {
        color: var(--text-dark);
    }

    /* Form Styles */
    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e5e7eb;
        border-radius: var(--border-radius);
        font-family: 'Cairo', sans-serif;
        font-size: 1rem;
        transition: var(--transition);
        background: var(--white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    }

    .form-group textarea {
        height: 100px;
        resize: vertical;
    }

    /* Cart Styles */
    .cart-content {
        max-width: 600px;
        max-height: 80vh;
    }

    .cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .cart-items {
        max-height: 400px;
        overflow-y: auto;
        margin-bottom: 1.5rem;
    }

    .cart-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }

    .cart-item img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: var(--border-radius);
    }

    .cart-item-info {
        flex: 1;
    }

    .cart-item-name {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .cart-item-price {
        color: var(--accent-gold);
        font-weight: 500;
    }

    .cart-item-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .quantity-btn {
        background: var(--primary-blue);
        color: var(--white);
        border: none;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quantity-btn:hover {
        background: #1e40af;
    }

    .quantity-display {
        min-width: 30px;
        text-align: center;
        font-weight: 600;
    }

    .remove-btn {
        background: #ef4444;
        color: var(--white);
        border: none;
        padding: 4px 8px;
        border-radius: var(--border-radius);
        cursor: pointer;
        font-size: 0.8rem;
    }

    .cart-footer {
        border-top: 1px solid #e5e7eb;
        padding-top: 1rem;
    }

    .cart-total {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    /* Navigation Actions */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .login-btn {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
        padding: 8px 16px;
        border-radius: var(--border-radius);
        cursor: pointer;
        font-weight: 500;
        transition: var(--transition);
    }

    .login-btn:hover {
        background: var(--white);
        color: var(--primary-blue);
    }

    .user-menu {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--white);
    }

    .user-menu button {
        background: var(--secondary-teal);
        color: var(--white);
        border: none;
        padding: 6px 12px;
        border-radius: var(--border-radius);
        cursor: pointer;
        font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background-color: var(--primary-blue);
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: var(--shadow);
            padding: 2rem 0;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu li {
            margin: 1rem 0;
        }

        .nav-toggle {
            display: flex;
        }

        .nav-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .nav-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        /* Daily Special Mobile Improvements */
        .daily-special {
            padding: 3rem 0;
        }

        .daily-special-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .daily-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .daily-offer {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .offer-item {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .offer-item img {
            width: 120px;
            height: 120px;
            margin: 0 auto;
        }

        .offer-details h3 {
            font-size: 1.2rem;
        }

        .offer-price {
            justify-content: center;
            flex-wrap: wrap;
        }

        .daily-special-image {
            order: -1;
        }

        .daily-special-image img {
            max-width: 300px;
            height: 250px;
        }

        .special-badge {
            font-size: 0.9rem;
            padding: 0.5rem 1rem;
        }

        .menu-categories {
            justify-content: center;
            gap: 0.5rem;
        }

        .category-btn {
            padding: 8px 15px;
            font-size: 0.9rem;
        }

        .menu-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .container {
            padding: 0 15px;
        }
    }

    /* Extra Small Mobile Devices */
    @media screen and (max-width: 480px) {
        .daily-special {
            padding: 2rem 0;
        }

        .daily-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .daily-offer {
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .offer-item img {
            width: 100px;
            height: 100px;
        }

        .offer-details h3 {
            font-size: 1.1rem;
        }

        .offer-details p {
            font-size: 0.9rem;
        }

        .daily-special-image img {
            max-width: 250px;
            height: 200px;
        }

        .daily-badge {
            flex-direction: column;
            gap: 0.5rem;
            padding: 0.5rem;
        }

        .day-name {
            font-size: 1rem;
        }

        .date {
            font-size: 0.8rem;
        }
    }
    
    .floating-btn:hover {
        transform: scale(1.1) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }
    
    .cart-floating-btn {
        background: #f59e0b !important;
        color: white !important;
        font-weight: 600 !important;
    }
    
    .whatsapp-btn {
        background: #25d366 !important;
        color: white !important;
        font-size: 1.5rem !important;
    }
    
    .scroll-btn {
        background: #1e3a8a !important;
        color: white !important;
        font-size: 1rem !important;
    }
    
    .cart-floating-btn span {
        position: absolute !important;
        top: -5px !important;
        right: -5px !important;
        background: #ef4444 !important;
        color: white !important;
        border-radius: 50% !important;
        width: 20px !important;
        height: 20px !important;
        font-size: 0.7rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 600 !important;
    }
    
    /* تحسينات للموبايل */
    @media screen and (max-width: 768px) {
        .floating-buttons {
            left: 15px !important;
            gap: 12px !important;
        }
        
        .floating-btn {
            width: 50px !important;
            height: 50px !important;
            font-size: 1rem !important;
        }
        
        .cart-floating-btn span {
            width: 18px !important;
            height: 18px !important;
            font-size: 0.6rem !important;
        }
    }
    /* About Section */
    .about-section {
        padding: 6rem 0;
        background: var(--white);
    }

    /* Order type toggle */
    .order-type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .order-type-option {
        display: block; text-align: center; padding: 12px; border: 2px solid var(--primary-blue);
        border-radius: 10px; color: var(--primary-blue); font-weight: 600; cursor: pointer;
        transition: var(--transition); user-select: none; background: var(--white);
    }
    .order-type-option:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
    .order-type-option.active { background: var(--primary-blue); color: var(--white); }

    /* Address buttons */
    .address-buttons { display: flex; gap: 0.75rem; margin-top: 0.75rem; flex-wrap: wrap; }
    .location-btn, .location-btn-alt {
        display: inline-flex; align-items: center; gap: 0.5rem; padding: 12px 16px;
        border-radius: 10px; border: 2px solid var(--secondary-teal); color: var(--secondary-teal);
        background: var(--white); cursor: pointer; font-weight: 600; transition: var(--transition);
        touch-action: manipulation; -webkit-tap-highlight-color: transparent;
        min-height: 48px; /* الحد الأدنى للمس على الموبايل */
        user-select: none; -webkit-user-select: none;
        font-size: 14px;
    }
    .location-btn:hover, .location-btn-alt:hover { 
        background: rgba(13,148,136,0.08); transform: translateY(-1px); 
    }
    .location-btn-alt {
        border-color: var(--secondary-teal); color: var(--secondary-teal);
    }

    /* Order summary layout */
    .order-summary { background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow); padding: 1rem; }
    .order-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #eee; }
    .order-item:last-child { border-bottom: 0; }
    .order-item-info { display: flex; flex-direction: column; gap: 0.25rem; }
    .order-item-name { font-weight: 600; }
    .order-item-quantity { color: var(--text-light); font-size: 0.9rem; }
    .order-item-price { color: var(--accent-gold); font-weight: 700; }
    .totals { margin-top: 1rem; display: grid; gap: 0.5rem; }
    .totals-row { display: flex; justify-content: space-between; }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-light);
        margin-bottom: 2rem;
    }

    .about-features { display: grid; gap: 1.5rem; }
    .feature { display: flex; align-items: flex-start; gap: 1rem; }
    .feature-icon {
        font-size: 2rem; background: var(--background-light); padding: 0.5rem;
        border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
    }
    .feature h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
    .feature p { color: var(--text-light); }

    .about-image { position: relative; }
    .about-image img {
        width: 100%; height: 400px; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--shadow-lg);
    }

    /* Gallery Section */
    .gallery-section { padding: 6rem 0; background: var(--background-light); }
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
    .gallery-item { position: relative; height: 250px; border-radius: var(--border-radius); overflow: hidden; cursor: pointer; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
    .gallery-overlay {
        position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,58,138,0.8), transparent);
        display: flex; align-items: flex-end; padding: 1.5rem; opacity: 0; transition: var(--transition);
    }
    .gallery-overlay h3 { color: var(--white); font-size: 1.2rem; font-weight: 600; }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-item:hover img { transform: scale(1.1); }

    /* Footer */
    .footer { background: var(--text-dark); color: var(--white); padding: 3rem 0 1rem; }
    .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
    .footer-section h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
    .footer-section h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; color: var(--accent-gold); }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: #d1d5db; text-decoration: none; transition: var(--transition); }
    .footer-links a:hover { color: var(--accent-gold); }
    .social-links { display: flex; gap: 1rem; margin-top: 1rem; }
    .social-link { display: inline-block; font-size: 1.5rem; text-decoration: none; transition: var(--transition); }
    .social-link:hover { color: var(--accent-gold); }
    .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; color: #e5e7eb; }

    @media (max-width: 768px) {
        .about-content { grid-template-columns: 1fr; gap: 2rem; }
        .about-image img { height: 300px; }
    }

    /* Additional Mobile Button Optimizations */
    @media screen and (max-width: 768px) {
        .btn {
            padding: 10px 16px;
            font-size: 0.9rem;
            min-height: 44px;
        }

        .btn-primary {
            padding: 12px 20px;
            font-size: 0.95rem;
            min-height: 46px;
        }

        .btn-secondary {
            padding: 10px 16px;
            font-size: 0.9rem;
            min-height: 44px;
        }

        .hero-buttons .btn {
            width: 100%;
            max-width: 280px;
            padding: 12px 20px;
            font-size: 0.95rem;
            min-height: 46px;
        }
    }

    @media screen and (max-width: 480px) {
        .btn {
            padding: 10px 14px;
            font-size: 0.9rem;
            min-height: 42px;
        }

        .btn-primary {
            padding: 12px 18px;
            font-size: 0.95rem;
            min-height: 44px;
        }

        .btn-secondary {
            padding: 10px 14px;
            font-size: 0.9rem;
            min-height: 42px;
        }
    }

    /* Tablet Optimizations */
    @media screen and (min-width: 769px) and (max-width: 1024px) {
        .btn {
            padding: 11px 22px;
            font-size: 0.95rem;
            min-height: 46px;
        }

        .btn-primary {
            padding: 13px 26px;
            font-size: 1rem;
            min-height: 49px;
        }

        .btn-secondary {
            padding: 11px 22px;
            font-size: 0.95rem;
            min-height: 46px;
        }
    }
