/* Google Font - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');


@font-face {
            font-family: 'CustomFont';
            src: url('assets/zahra.arabic.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* Orchid Café Theme Colors */
        :root {
            --primary: #6D0147;
            --primary-dark: #5A0139;
            --gold: #DAA951;
            --green: #71B258;
            --white: #FFFFFF;
            --light-bg: rgba(109, 1, 71, 0.08);
            --dark: #000000;
            --text-gray: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'CustomFont', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--light-bg);
            color: var(--dark);
            line-height: 1.6;
            direction: rtl;
            overflow-x: hidden;
        }

        /* Header */
        .contact-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Hero Background Image - sits behind everything */
        .hero-bg-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.05);
            background-image:
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 20px,
                    rgba(255, 255, 255, 0.03) 20px,
                    rgba(255, 255, 255, 0.03) 40px
                );
            z-index: 0;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 1;
        }


        .contact-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .contact-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        .logo {
            width: 350px;
            height: 150px;
            margin: 0 auto 25px;
            border-radius: 50%;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .contact-header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }

        .contact-header p {
            font-size: 2.1rem;
            opacity: 0.95;
            margin-bottom: 0;
            color: var(--primary);
        }

        /* Main Content */
        .contact-main {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--green) 100%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.9rem;
            color: var(--text-gray);
            margin-top: 20px;
        }

        /* Contact Card */
        .contact-card {
            background: var(--white);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 10px 50px rgba(109, 1, 71, 0.08);
            margin-bottom: 40px;
        }

        /* Contact Item */
        .contact-item {
            display: flex;
            align-items: center;
            padding: 30px;
            border-radius: 20px;
            background: var(--light-bg);
            margin-bottom: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, rgba(109, 1, 71, 0.05) 0%, rgba(218, 169, 81, 0.05) 100%);
            transition: width 0.4s ease;
            z-index: 0;
        }

        .contact-item:hover::before {
            width: 100%;
        }

        .contact-item:hover {
            transform: translateX(-10px);
            box-shadow: 0 8px 25px rgba(109, 1, 71, 0.12);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-left: 25px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Icon Colors */
        .icon-phone {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(109, 1, 71, 0.3);
        }

        .icon-whatsapp {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(109, 1, 71, 0.3);
        }

        .icon-email {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(109, 1, 71, 0.3);
        }

        .icon-facebook {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(109, 1, 71, 0.3);
        }

        .icon-instagram {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(109, 1, 71, 0.3);
        }

        .icon-location {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(109, 1, 71, 0.3);
        }

        .icon-menu {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(109, 1, 71, 0.3);
        }

        .contact-details {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .contact-label {
            font-size: 1.95rem;
            color: var(--text-gray);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .contact-value {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--dark);
            transition: color 0.3s ease;
        }

        .contact-item:hover .contact-value {
            color: var(--primary);
        }

        /* Map Section */
        .map-section {
            margin-top: 60px;
        }

        .map-container {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(109, 1, 71, 0.08);
            height: 450px;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--light-bg) 0%, #e0d5c7 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--text-gray);
        }

        .map-placeholder i {
            font-size: 5rem;
            margin-bottom: 25px;
            color: var(--primary);
            opacity: 0.25;
        }

        .map-placeholder p {
            font-size: 1.1rem;
            margin: 0;
        }

        /* Footer */
        
        .menu-footer {
            background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
            color: var(--white);
            padding: 2.5rem 0;
            text-align: center;
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
        }

        .menu-footer .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .powered-by {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .powered-by span {
            color: rgba(255, 255, 255, 0.8);
        }

        .stech-link {
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
            padding: 2px 16px;
            border-radius: 8px;
            background: transparent;
            border: none;
        }

        .stech-link:hover {
            background: transparent;
            transform: translateY(-2px);
        }

        .stech-logo {
            height: 40px;
            width: auto;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .stech-link:hover .stech-logo {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .footer-rights {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.75;
            color: rgba(255, 255, 255, 0.75);
            letter-spacing: 0.5px;
            font-family: 'Montserrat', sans-serif;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-header {
                padding: 60px 0 50px;
            }

            .contact-header h1 {
                font-size: 2.5rem;
            }

            .contact-header p {
                font-size: 1.5rem;
            }

            .contact-card {
                padding: 30px 20px;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
                padding: 25px 20px;
            }

            .contact-icon {
                margin-left: 0;
                margin-bottom: 20px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .section-title p {
                font-size: 1.5rem;
            }

            .map-container {
                height: 350px;
            }

            .contact-label{
                font-size: 1.8rem;
            }

            .contact-value {
                font-size: 1.6rem;
            }

            /* Footer responsive */
            .menu-footer .container {
                gap: 0.85rem;
            }
        
            .powered-by {
                font-size: 0.9rem;
                gap: 5px;
            }
        
            .stech-logo {
                height: 35px;
            }
        
            .footer-rights {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 576px) {
            .contact-header h1 {
                font-size: 2.4rem;
            }

            .contact-header p {
                font-size: 1.5rem;
            }

            .logo {
                width: 220px;
                height: 180px;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-title p {
                font-size: 1.5rem;
            }

            .contact-label{
                font-size: 1.8rem;
            }

            .contact-value {
                font-size: 1.6rem;
            }

            /* Footer responsive - small mobile */
        .menu-footer {
            padding: 2rem 0;
        }

        .menu-footer .container {
            gap: 0.75rem;
        }

        .powered-by {
            font-size: 0.85rem;
            gap: 2px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .stech-logo {
            height: 30px;
        }

        .stech-link {
            padding: 6px 12px;
        }

        .footer-rights {
            font-size: 0.8rem;
        }

        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .contact-card {
            animation: fadeIn 0.8s ease-out;
        }

        .contact-item {
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .contact-item:nth-child(1) { animation-delay: 0.1s; }
        .contact-item:nth-child(2) { animation-delay: 0.2s; }
        .contact-item:nth-child(3) { animation-delay: 0.3s; }
        .contact-item:nth-child(4) { animation-delay: 0.4s; }
        .contact-item:nth-child(5) { animation-delay: 0.5s; }
        .contact-item:nth-child(6) { animation-delay: 0.6s; }
        .contact-item:nth-child(7) { animation-delay: 0.7s; }

        .section-title {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Print Styles */
        @media print {
            .contact-header::before,
            .contact-header::after {
                display: none;
            }
            
            .contact-item {
                page-break-inside: avoid;
            }
        }