        :root {
            --primary-color: #113625;
            --secondary-color: #826636;
            --accent-color: #D2B08A; 
            --text-color: #333;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --border-light: #e9ecef;
            --shadow-light: rgba(0,0,0,0.08);
            --shadow-medium: rgba(0,0,0,0.15);
            --shadow-heavy: rgba(0,0,0,0.25);
        }
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {

            scroll-behavior: smooth;
            scroll-padding-top: 130px; 
        }

        body {
            font-family: 'Cairo', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            direction: rtl;
            overflow-x: hidden;
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* تصحيح عرض الأرقام */
        .number-ltr {
            direction: ltr !important;
            text-align: left !important;
            display: inline-block;
            unicode-bidi: bidi-override;
        }

        /* Navigation - Mobile First */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(17, 54, 37, 0.1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px var(--shadow-light);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
        }

        .logo-img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            background: rgba(17, 54, 37, 0.05);
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 10px 30px var(--shadow-light);
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-nav-links li {
            margin: 0;
        }

        .mobile-nav-links a {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(17, 54, 37, 0.05);
        }

        .mobile-nav-links a:hover {
            background: rgba(17, 54, 37, 0.05);
            color: var(--primary-color);
            padding-right: 2rem;
        }

        /* Hero Section - Mobile Optimized */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d35 50%, #0f2419 100%);
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 80px 0 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(210, 176, 138, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            text-align: center;
            padding: 0 1rem;
        }

        .hero-visual {
            margin-bottom: 2rem;
        }

        .hero-icon-container {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-main-icon {
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
        }
        

        .hero-main-icon img {
            width: 180px;
            height: auto;
        }

        .hero-title {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1rem;
            font-family: 'Amiri', serif;
        }

        .hero-description {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-changing-text {
            color: var(--accent-color);
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .hero-changing-text.fade {
            opacity: 1;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 300px;
            margin: 0 auto;
        }

        .btn-primary {
            background: var(--secondary-color);
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(130, 102, 54, 0.3);
        }

        .btn-primary:hover {
            background: #9d7a4f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(130, 102, 54, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Sections - Mobile First */
        .section {
            padding: 3rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
            padding: 0 1rem;
        }

        .section-badge {
            display: inline-block;
            background: rgba(17, 54, 37, 0.1);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-family: 'Amiri', serif;
        }

        .section-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
        }

        /* About Section - Enhanced Layout */
        .about-section {
            background: var(--light-bg);
        }

        .about-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }

        .about-main-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px var(--shadow-light);
            border: 1px solid var(--border-light);
            text-align: center;
        }

        .about-main-card h3 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-family: 'Amiri', serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .about-main-card .icon {
            color: var(--secondary-color);
            font-size: 1.5rem;
        }

        .vision-mission-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .vision-card, .mission-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 25px var(--shadow-light);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 200px;
        }

        .vision-card:hover, .mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        .vision-card h3, .mission-card h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-family: 'Amiri', serif;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .vision-card .icon, .mission-card .icon {
            color: var(--accent-color);
            font-size: 1.5rem;
        }

        .vision-card p, .mission-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
        }

        /* Services Section - Mobile Optimized */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 8px 25px var(--shadow-light);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow-medium);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .service-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .service-card h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Expertise Section - Mobile Optimized */
        .expertise-section {
            background: var(--light-bg);
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .expertise-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 6px 20px var(--shadow-light);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .expertise-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--shadow-medium);
            border-color: var(--primary-color);
        }

        .expertise-card h3 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            line-height: 1.4;
        }

        .expertise-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-color), #e6c894);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .expertise-card p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #666;
        }

        /* Why Choose Us Section - Mobile Optimized */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow-light);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px var(--shadow-medium);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), #1a4d35);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .feature-card p {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #666;
        }

        /* Contact Section - Enhanced Layout */
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d35 100%);
            color: white;
        }

        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            flex: 1;
        }

        .contact-form h3 {
            margin-bottom: 2rem;
            font-size: 1.5rem;
            text-align: center;
            font-family: 'Amiri', serif;
            color: var(--accent-color);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            flex: 1;
        }

        .contact-info-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 140px;
        }

        .contact-info-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .contact-info-card h3 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-family: 'Amiri', serif;
        }

        .contact-info-card .icon {
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-info-card p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        /* Footer - Mobile Optimized */
        .footer {
            background: #0a1f0f;
            color: white;
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-about h3 {
            color: var(--accent-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-family: 'Amiri', serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .footer-links h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.6rem;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
        }

        .footer-contact h4 {
            color: var(--accent-color);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .footer-contact-item i {
            width: 16px;
            color: var(--accent-color);
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
        }

        /* Floating WhatsApp - Mobile Optimized */
        .whatsapp-float {
            position: fixed;
            width: 55px;
            height: 55px;
            bottom: 20px;
            left: 20px;
            background: linear-gradient(135deg, #25d366, #20ba5a);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        /* Scroll Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Desktop Responsive - Enhanced About and Contact Sections */
        @media (min-width: 768px) {
            .container {
                padding: 0 2rem;
            }

            .nav-links {
                display: flex;
                list-style: none;
                gap: 2rem;
                align-items: center;
            }

            .nav-links a {
                text-decoration: none;
                color: var(--text-color);
                font-weight: 500;
                transition: color 0.3s ease;
                position: relative;
            }

            .nav-links a:hover {
                color: var(--primary-color);
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: -5px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--secondary-color);
                transition: width 0.3s ease;
            }

            .nav-links a:hover::after {
                width: 100%;
            }

            .hamburger {
                display: none;
            }

            .mobile-menu {
                display: none;
            }

            .logo-img {
                height: 60px;
            }

            .hero-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
                text-align: right;
            }

            .hero-visual {
                order: 2;
                margin-bottom: 0;
            }

            .hero-text {
                order: 1;
            }

            .hero-icon-container {
                width: 350px;
                height: 350px;
            }

            .hero-main-icon img {
                width: 300px;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-description {
                font-size: 1.3rem;
                max-width: none;
            }

            .hero-buttons {
                flex-direction: row;
                max-width: none;
                margin: 0;
            }

            .section {
                padding: 5rem 0;
            }

            .section-title {
                font-size: 2.8rem;
            }

            /* Enhanced About Section for Desktop */
            .about-grid {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 3rem;
                align-items: stretch;
            }

            .about-main-card {
                padding: 3rem;
                text-align: right;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .about-main-card h3 {
                justify-content: flex-start;
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .about-main-card p {
                font-size: 1.1rem;
                line-height: 1.8;
            }

            .vision-mission-cards {
                flex-direction: column;
                gap: 2rem;
                height: 100%;
            }

            .vision-card, .mission-card {
                padding: 2.5rem;
                min-height: auto;
                flex: 1;
            }

            .vision-card h3, .mission-card h3 {
                font-size: 1.4rem;
                margin-bottom: 1.2rem;
            }

            .vision-card p, .mission-card p {
                font-size: 1.05rem;
                line-height: 1.8;
            }

            /* Enhanced Contact Section for Desktop */
            .contact-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: start;
            }

            .contact-form {
                padding: 3rem;
            }

            .contact-form h3 {
                font-size: 1.8rem;
                margin-bottom: 2.5rem;
            }

            .form-group {
                margin-bottom: 2rem;
            }

            .form-group label {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 15px 18px;
                font-size: 1.05rem;
                border-radius: 10px;
            }

            .contact-info-cards {
                gap: 2rem;
                justify-content: space-between;
            }

            .contact-info-card {
                padding: 2.5rem;
                min-height: 160px;
            }

            .contact-info-card h3 {
                font-size: 1.3rem;
                margin-bottom: 1.2rem;
            }

            .contact-info-card .icon {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }

            .contact-info-card p {
                font-size: 1.05rem;
                line-height: 1.7;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 3rem;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 30px;
                left: 30px;
                font-size: 1.8rem;
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .expertise-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            /* Optimized layout for larger screens */
            .about-grid {
                grid-template-columns: 2.5fr 1.5fr;
                gap: 4rem;
            }

            .contact-content {
                gap: 5rem;
            }

            .vision-card, .mission-card {
                padding: 3rem;
            }

            .contact-form {
                padding: 3.5rem;
            }

            .contact-info-card {
                padding: 3rem;
                min-height: 180px;
            }
        }

        @media (min-width: 1200px) {
            /* Perfect symmetry for large screens */
            .about-main-card {
                padding: 4rem;
            }

            .vision-card, .mission-card {
                padding: 3.5rem;
            }

            .contact-form {
                padding: 4rem;
            }

            .contact-info-card {
                padding: 3.5rem;
                min-height: 200px;
            }

            .contact-content {
                gap: 6rem;
            }
        }

        /* Enhanced animations for mobile */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-reveal.revealed {
            animation: slideInUp 0.6s ease-out;
        }

        /* Touch-friendly improvements */
        .service-card,
        .expertise-card,
        .feature-card,
        .contact-info-card,
        .vision-card,
        .mission-card,
        .about-main-card {
            -webkit-tap-highlight-color: transparent;
        }

        /* Loading state for buttons */
        .btn-primary:active,
        .btn-secondary:active {
            transform: scale(0.98);
        }

        /* Better contrast for readability */
        @media (max-width: 767px) {
            .hero-description {
                font-size: 1.1rem;
                line-height: 1.8;
            }

            .service-card p,
            .expertise-card p,
            .feature-card p {
                font-size: 1rem;
                line-height: 1.7;
            }

            .section-description {
                font-size: 1.1rem;
                line-height: 1.8;
            }
        }

        /* Improved grid balance for contact cards */
        @media (min-width: 768px) and (max-width: 1023px) {
            .contact-info-cards {
                display: grid;
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-content {
                grid-template-columns: 1.2fr 0.8fr;
                gap: 3rem;
            }
        }

        /* Perfect alignment for about section on tablets */
        @media (min-width: 768px) and (max-width: 1023px) {
            .about-grid {
                grid-template-columns: 1.8fr 1.2fr;
                gap: 2.5rem;
            }

            .vision-mission-cards {
                gap: 1.5rem;
            }

            .vision-card, .mission-card {
                padding: 2rem;
                min-height: 160px;
            }
        }

        /* Enhanced hover effects for desktop */
        @media (min-width: 1024px) {
            .about-main-card:hover {
                transform: translateY(-2px);
                box-shadow: 0 15px 40px var(--shadow-medium);
            }

            .contact-form:hover {
                background: rgba(255, 255, 255, 0.12);
            }

            .vision-card:hover, .mission-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 50px var(--shadow-heavy);
            }

            .contact-info-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            }
        }