/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons - Optimized */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    max-height: 200px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    max-height: 200px;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Header - Optimized */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between; /* Keep logo right, menu left (RTL) */
    align-items: center;             /* Perfect vertical centering */
    gap: 16px;                       /* Breathing space between groups */
    flex-wrap: nowrap;               /* Prevent wrapping when logo is larger */
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 20px !important;
     width: auto !important;
      max-width: none !important;
       max-height: 100px !important;
       align-items: start;

   
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Logo and header sizing overrides */
.logo-img {
    height: 90px !important;          /* Larger desktop logo */
    width: auto !important;
    max-width: 260px !important;
    max-height: 90px !important;
    object-fit: contain;              /* Keep proportions */
    transition: transform 0.3s ease;  /* Smooth hover */
}

.header .logo-img {
    height: 90px !important;
    max-width: 260px !important;
}

/* Responsive logo scaling for better balance */
@media (max-width: 992px) {
    .header .logo-img, .logo-img {
        height: 75px !important;
        max-width: 220px !important;
    }
}

@media (max-width: 768px) {
    .header .logo-img, .logo-img {
        height: 60px !important;
        max-width: 200px !important;
    }
}

/* Reduce menu spacing and font slightly to fit */
.nav-list {
    gap: 1rem;
}
.nav-link {
    font-size: 0.95rem;
}


.nav-brand h1 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin: 0;
}

.nav-brand i {
    margin-left: 10px;
    color: #f59e0b;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.3rem; /* تقليل المسافة أكثر لتوفير مساحة أكبر */
    align-items: center;
    flex-wrap: nowrap; /* منع الانتقال لسطر جديد */
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap; /* سطر واحد */
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #2c5aa0;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section - Optimized */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(54, 101, 170, 0.7), rgba(30, 58, 138, 0.7)), url('../images/cover/5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* better for mobile performance */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 600px;
}

/* Re-enable parallax on larger screens only */
@media (min-width: 1024px) {
  .hero { background-attachment: fixed; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 74, 212, 0.3);
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
   
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    max-width: 520px;
    margin: 0 auto;
}

.hero-buttons .btn {
    flex: 1 1 0;
    margin: 0;
}

/* CTA buttons: equal width and centered */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;  /* center the group */
    align-items: stretch;      /* make buttons equal height */
    max-width: 220px;          /* same max width as hero buttons */
    margin: 0 auto;            /* center horizontally */
}

.cta-buttons .btn {
    flex: 1 1 0;               /* equal widths */
    text-align: center;        /* center text inside */
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column; /* stack on small screens for readability */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

/* Page Header General Styles */
.page-header {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* تدرج لوني شفاف فوق الصورة + طبقة خفيفة داكنة لتحسين التباين */
    background: linear-gradient(rgba(44, 90, 160, 0.55), rgba(30, 58, 138, 0.55)), rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section - Optimized */
.services {
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* تخطيط خاص لصفحة العظم - 3 عناصر في كل صف */
.azm-services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
}

/* استجابة للشاشات المتوسطة - عمودين */
@media (max-width: 992px) {
    .azm-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
}

/* استجابة للشاشات الصغيرة - عمود واحد */
@media (max-width: 768px) {
    .azm-services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

/* تخطيط للشاشات المتوسطة (التابلت) */
@media (min-width: 768px) and (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .service-card {
        min-height: 280px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* تخطيط مربع للشاشات الكبيرة */
@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .service-card {
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        aspect-ratio: 1;
    }
}

/* تحسينات للشاشات الكبيرة جداً */
@media (min-width: 1200px) {
    .services-grid {
        max-width: 900px;
        gap: 50px;
    }
    
    .service-card {
        min-height: 350px;
        padding: 50px 40px;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .service-card h3 {
        font-size: 1.7rem;
    }
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Standardize service images across different sizes */
.service-image {
    width: 100%;
    aspect-ratio: 16 / 9;            /* keeps consistent ratio */
    border-radius: 12px;             /* rounded corners to match card */
    overflow: hidden;                /* crop overflow for uniform look */
    margin: 0 auto 16px;             /* spacing below image */
    background: #f2f4f7;             /* subtle placeholder bg */
    flex-shrink: 0;                  /* don't let it shrink */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;               /* cover crops to fill container */
    display: block;                  /* remove inline gap */
}

/* Slightly taller images on larger screens for better presence */
@media (min-width: 992px) {
    .service-image {
        aspect-ratio: 4 / 3;        /* a bit taller on desktop */
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0, #f59e0b);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.service-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    flex-shrink: 0;
    margin-top: auto;
    white-space: nowrap; /* سطر واحد للرابط */
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-link:hover {
    color: #1e3a8a;
}

.service-link i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* Ensure all info below images is fully visible */
.service-card { 
    overflow: visible;                /* don't clip content */
}

/* Allow service link text to wrap instead of ellipsis */
.service-link {
    white-space: normal;              /* wrap long text */
}

/* Remove fixed square ratio on large screens to prevent cutting content */
@media (min-width: 992px) {
    .service-card {
        aspect-ratio: auto;           /* let height grow with content */
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    text-align: center; /* توسيط عنوان من نحن */
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center; /* توسيط فقرات من نحن */
}

/* تأكيد توسيط نصوص رأس صفحة من نحن */
/* توسيط رأس صفحة من نحن */
.page-header-content h1,
.page-header-content p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #333;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 50%, #d1d5db 100%);
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #111827;
    text-shadow: 1px 1px 2px rgba(17, 24, 39, 0.08);
    filter: none;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: none;
    color: #374151;
    font-weight: 600;
}

/* Contact Message Popup Styles */
.contact-message-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

.contact-message-popup.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-message-popup.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-message-popup .message-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
}

.contact-message-popup .message-content i {
    font-size: 1.2rem;
}

.contact-message-popup .message-content span {
    flex: 1;
    font-weight: 500;
}

.contact-message-popup .message-content button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.contact-message-popup .message-content button:hover {
    background: rgba(0, 0, 0, 0.1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Message Popup Styles */
.message-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease;
}

.message-popup.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.message-popup.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.message-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
}

.message-content i:first-child {
    font-size: 1.2rem;
}

.message-content span {
    flex: 1;
    font-weight: 500;
}

.message-content button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.message-content button:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Phone Number Styling */
.phone-number {
    font-family: 'Cairo', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    direction: ltr !important;
    unicode-bidi: bidi-override;
    text-align: left;
    display: inline-block;
}

.contact-item .phone-number {
    font-size: 1.1rem;
    color: #2c5aa0;
}

.footer-section .phone-number {
    font-size: 0.95rem;
    color: inherit;
}

/* Contact Section */
.contact {
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: transparent;
    color: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer - Optimized */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #f59e0b;
    margin-bottom: 20px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f59e0b;
}

.footer-section ul li i {
    margin-left: 10px;
    color: #f59e0b;
    background: transparent !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f59e0b;
    transform: translateY(-3px);
}

/* TikTok specific styling */
.social-links a[href*="tiktok"] {
    background: #000000;
}

.social-links a[href*="tiktok"]:hover {
    background: #ff0050;
}

/* Instagram specific styling */
.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Facebook specific styling */
.social-links a[href*="facebook"]:hover {
    background: #1877f2;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom-content p:first-child {
    color: #e5e7eb;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer-bottom-content p:first-child strong {
    color: #f59e0b;
    font-weight: 700;
}

.footer-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
    opacity: 0.8;
}

#current-year {
    font-weight: 600;
    color: #f59e0b;
}

/* Additional Styles for Service Pages */

/* Process Timeline */
.process-section {
    background: #f8fafc;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #2c5aa0, #e5e7eb);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2c5aa0;
}

.step-content h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Quality Standards */
.quality-standards {
    background: white;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    font-size: 2.2rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.quality-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quality-feature div h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.quality-feature div p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.quality-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* أزرار الدعوة للعمل بجوار بعض ومتساوية */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}

/* افتراضياً متساوية */
.cta-buttons .btn {
    flex: 1 1 0;
    min-width: 180px;
}

/* تصغير أزرار قسم العظم فقط */
.azm-page .cta-buttons .btn {
    flex: 0 0 auto;
    padding: 8px 16px; /* أصغر */
    font-size: 14px;
}

/* Why Choose Us */
.why-choose-us {
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive for features grid */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.feature-card h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Materials Section */
.materials-section {
    background: white;
}

.materials-grid {
    display: grid;
    gap: 40px;
}

.material-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #f8fafc;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.material-card:nth-child(even) .material-image {
    order: 2;
}

.material-card:nth-child(even) .material-content {
    order: 1;
}

.material-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.material-content h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.material-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.material-content ul {
    list-style: none;
    padding: 0;
}

.material-content ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-right: 25px;
}

.material-content ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #10b981;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    background: #f8fafc;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.2rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.benefits-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item div h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1rem;
}

.benefit-item div p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefits-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Section */
.portfolio-section {
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px; /* مسافة بين العناصر */
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    background: #fff;
    padding: 10px; /* مسافة داخلية لبطاقة الصورة */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* تقويس الصورة داخليًا */
}

.portfolio-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Renovation Process */
.renovation-process {
    background: white;
}

/* Design Process */
.design-process {
    background: #f8fafc;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .process-timeline {
        gap: 20px;
        max-width: 100%;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        align-items: center; /* توسيط العناصر */
    }
    
    .process-step::after {
        display: none;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }

    .step-content {
        width: 100%;
        padding: 18px;
        border-left: none;
        border-right: 4px solid #2c5aa0; /* RTL */
        text-align: right;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .quality-content,
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .material-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .material-card:nth-child(even) .material-image,
    .material-card:nth-child(even) .material-content {
        order: unset;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    .step-content {
        padding: 16px;
        border-right-width: 3px;
    }

    .portfolio-grid {
        gap: 20px; /* مسافة أوضح على الجوال */
    }
    .portfolio-item {
        padding: 8px; /* تقليل بسيط مع الحفاظ على المسافة */
    }

    /* تكبير الصور على الجوال بشكل مناسب */
    .portfolio-image img {
        height: 260px;
    }
    
    .quality-feature,
    .benefit-item {
        padding: 15px;
        gap: 15px;
    }
    
    .material-card {
        padding: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* Customer Reviews Section */
.customer-reviews {
    background: #f8fafc;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.review-card {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.review-card.active {
    display: block;
    opacity: 1;
}

.review-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.reviewer-details h4 {
    color: #2c5aa0;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.reviewer-details span {
    color: #666;
    font-size: 0.9rem;
}

.reviews-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.reviews-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* Add Review Section */
.add-review-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.add-review-section h3 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rating-input {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars-input {
    display: flex;
    gap: 5px;
}

.stars-input i {
    font-size: 1.5rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.3s ease;
}

.stars-input i:hover,
.stars-input i.active {
    color: #f59e0b;
}

/* Footer Updates */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: #6b7280;
}

/* About Page Header */
.about-page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home/about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

@media (min-width: 1024px) {
  .about-page-header { background-attachment: fixed; }
}

.about-page-header .page-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    max-width: 800px;
    margin: 0 auto;
}

.about-page-header .page-header-content h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 40px;
    align-self: flex-start;
}

.about-page-header .page-header-content p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    margin-bottom: 30px;
    align-self: flex-start;
    max-width: 600px;
}

.about-page-header .breadcrumb a,
.about-page-header .breadcrumb span {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.about-page-header .breadcrumb a:hover {
    color: #f59e0b !important;
}

.company-logo {
    margin-top: 15px;
    margin-bottom: 0;
    align-self: center;
}

.header-logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Responsive for header logo and content */
@media (max-width: 768px) {
    .about-page-header .page-header-content h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .about-page-header .page-header-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .header-logo {
        max-width: 150px;
        padding: 10px;
    }
    
    .company-logo {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-page-header .page-header-content {
        text-align: center;
        align-items: center;
    }
    
    .about-page-header .page-header-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        align-self: center;
    }
    
    .about-page-header .page-header-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        align-self: center;
        text-align: center;
    }
    
    .header-logo {
        max-width: 120px;
        padding: 8px;
    }
    
    .company-logo {
        margin-top: 15px;
        align-self: center;
    }
}

/* Contact Page Header */
.contact-page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/home/contact.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 50vh;
    padding: 100px 0 60px;
}

@media (min-width: 1024px) {
  .contact-page-header { background-attachment: fixed; }
}
}

.contact-page-header .page-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-page-header .page-header-content h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    align-self: center;
}

.contact-page-header .page-header-content p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    margin-bottom: 20px;
    align-self: center;
    max-width: 600px;
}

.contact-page-header .breadcrumb a,
.contact-page-header .breadcrumb span {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.contact-page-header .breadcrumb a:hover {
    color: #f59e0b !important;
}

/* تحسين ظهور المحتوى في صفحة التواصل */
.contact-page-header .page-header-content {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

/* Enhanced Contact Form Styles */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    direction: rtl;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
    text-align: right;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    text-align: right;
    direction: rtl;
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: left 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}



.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e40af 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
}

.checkbox-group {
    margin-bottom: 20px;
    direction: rtl;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
    gap: 12px;
    color: #374151;
    text-align: right;
    direction: rtl;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}



.checkbox-label a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Success/Error Messages */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    direction: rtl;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Responsive for contact form */
@media (max-width: 768px) {
    .contact-page-header {
        min-height: 45vh;
        padding: 80px 0 50px;
    }
    
    .contact-page-header .page-header-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .contact-page-header .page-header-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .header-logo {
        max-width: 100px;
        padding: 8px;
    }
    
    .company-logo {
        margin-top: 10px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .contact-page-header {
        min-height: 40vh;
        padding: 70px 0 40px;
    }
    
    .contact-page-header .page-header-content {
        text-align: center;
        align-items: center;
    }
    
    .contact-page-header .page-header-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        align-self: center;
    }
    
    .contact-page-header .page-header-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        align-self: center;
        text-align: center;
    }
    
    .header-logo {
        max-width: 80px;
        padding: 6px;
    }
    
    .company-logo {
        margin-top: 8px;
    }
    
    .contact-form {
        padding: 25px 15px;
        border-radius: 15px;
    }
}

/* Form Messages for Azem Contact Form */
.form-message {
    margin-top: 20px;
    padding: 0;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
}

.form-message.error {
    display: block;
}

.success-message {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border: 1px solid #48bb78;
    border-radius: 8px;
    padding: 20px;
    color: #2f855a;
    text-align: center;
}

.success-message i {
    color: #48bb78;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.success-message h4 {
    color: #2f855a;
    margin: 10px 0;
    font-size: 1.2rem;
}

.request-info {
    background: rgba(72, 187, 120, 0.1);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: right;
}

.request-info p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.error-message-main {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 1px solid #e53e3e;
    border-radius: 8px;
    padding: 20px;
    color: #c53030;
    text-align: center;
}

.error-message-main i {
    color: #e53e3e;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.error-message-main h4 {
    color: #c53030;
    margin: 10px 0;
    font-size: 1.2rem;
}

.error-message-main ul {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

.error-message-main li {
    margin: 5px 0;
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(197, 48, 48, 0.2);
}

.error-message-main li:last-child {
    border-bottom: none;
}

/* Field Error Messages */
.error-message {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
    text-align: right;
}

/* Form Group Enhancements */
.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid,
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid,
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #48bb78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

/* Submit Button Loading State */
.btn-loading {
    display: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3) !important;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Form Validation Styles */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* Responsive Form Messages */
@media (max-width: 768px) {
    .success-message,
    .error-message-main {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .success-message h4,
    .error-message-main h4 {
        font-size: 1.1rem;
    }
    
    .request-info {
        padding: 12px;
    }
    
    .request-info p {
        font-size: 0.9rem;
    }
}

/* Enhanced Phone Numbers Display */
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: transparent;
    border-radius: 10px;
    border-right: 4px solid #2c5aa0;
    transition: all 0.3s ease;
}

.phone-item:hover {
    background: transparent;
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.2);
}

.phone-item i {
    color: #2c5aa0;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5aa0;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    direction: ltr;
    text-align: left;
}

/* Contact Item Enhancement for Service Message */
.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-item .fas.fa-headset {
    background: none;
    color: #2c5aa0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Responsive Phone Numbers */
@media (max-width: 768px) {
    .phone-numbers {
        gap: 10px;
    }
    
    .phone-item {
        padding: 10px 12px;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .contact-item h4 {
        font-size: 1.2rem;
    }
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-section {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.arabic-text {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-right: 5px solid #2c5aa0;
    direction: rtl;
    text-align: right;
}

.english-text {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 5px solid #f59e0b;
    direction: ltr;
    text-align: left;
}

.text-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.arabic-text h2 {
    color: #2c5aa0;
    font-family: 'Cairo', sans-serif;
}

.english-text h2 {
    color: #1e3a8a;
    font-family: 'Arial', sans-serif;
}

.text-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

.arabic-text p {
    font-family: 'Cairo', sans-serif;
}

.english-text p {
    font-family: 'Arial', sans-serif;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.overview-image img:hover {
    transform: scale(1.02);
}

.overview-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #2c5aa0, #f59e0b);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
}

/* About Page Styles */
.about-intro {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Vision Mission Values */
.vision-mission {
    background: #f8fafc;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vmv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.vmv-card h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.vmv-card p {
    color: #666;
    line-height: 1.8;
}

.vmv-card ul {
    text-align: right;
    color: #666;
    line-height: 1.8;
}

.vmv-card ul li {
    margin-bottom: 10px;
}

/* Team Section */
.our-team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    color: #2c5aa0;
    margin-bottom: 5px;
}

.member-info span {
    color: #f59e0b;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Achievements Section */
.achievements {
    background: #f8fafc;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.achievement-item h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.achievement-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.achievement-item .year {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2c5aa0;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-info-section {
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.contact-info-card h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details a,
.contact-details span {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #1e3a8a;
}

/* إصلاح اتجاه أرقام الهاتف */
.contact-details a[href^="tel"] {
    direction: ltr;
    text-align: center;
    display: block;
    unicode-bidi: embed;
    margin: 5px 0;
}

.footer-section ul li:has(i.fa-phone) {
    direction: ltr;
    text-align: left;
    display: inline-block;
    unicode-bidi: embed;
}

/* إصلاح أرقام الهاتف في الـ Footer */
.footer-section ul li {
    direction: rtl;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-section ul li i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    color: #2c5aa0;
    background: transparent !important;
    border-radius: 0 !important;
    height: auto !important;
}

/* محاذاة أرقام الهاتف خاصة */
.footer-section ul li:has(i.fa-phone) {
    direction: rtl;
}

.footer-section ul li:has(i.fa-phone)::after {
    content: attr(data-phone);
    direction: ltr;
    text-align: left;
    flex: 1;
}

/* حل بديل للمتصفحات التي لا تدعم :has() */
.footer-section ul li.phone-item {
    direction: rtl;
    justify-content: flex-start;
}

.footer-section ul li.phone-item .phone-number {
    direction: ltr;
    text-align: left;
    margin-right: auto;
}

/* تحسين عرض أرقام الهاتف في صفحة الخصوصية */
.contact-item-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item-privacy:hover {
    background: #e2e8f0;
}

.contact-item-privacy i {
    width: 20px;
    text-align: center;
    color: #2c5aa0;
    flex-shrink: 0;
}

.contact-item-privacy .phone-number {
    direction: ltr;
    text-align: left;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.contact-item-privacy .phone-number:hover {
    text-decoration: underline;
}

/* صفحة سياسة الخصوصية وصفحة الشروط */
.privacy-page-header, .page-header {
    background: linear-gradient(rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.9)), 
                url('../images/cover/9.jpg') center/cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .privacy-page-header, .page-header { background-attachment: fixed; }
}
}



/* تنسيق محتوى page-header موحد */
.page-header .page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header .page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    margin-top:1.9rem ;

    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease;
    font-weight: 900;
    line-height: 1.2;
    color: white;
}

.page-header .page-header-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.azm-page-header .page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.azm-page-header .page-header-content h1 {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.azm-page-header .page-header-content p {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

.azm-page-header .breadcrumb a,
.azm-page-header .breadcrumb span {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.azm-page-header .breadcrumb a:hover {
    color: #fbbf24 !important;
    text-decoration: underline;
}

/* تأثيرات إضافية للصورة الخلفية */
.azm-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(44, 90, 160, 0.1) 0%, 
        rgba(30, 58, 138, 0.2) 50%, 
        rgba(44, 90, 160, 0.1) 100%);
    z-index: 1;
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .azm-page-header {
        min-height: 55vh;
        background-attachment: scroll;
    }
    
    .azm-page-header .page-header-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .azm-page-header .page-header-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .azm-page-header {
        min-height: 50vh;
    }
    
    .azm-page-header .page-header-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .azm-page-header .page-header-content p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

/* Page Headers موحد مع صور الخلفية - تصميم موحد لجميع الصفحات */
.page-header {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (min-width: 1024px) {
  .page-header { background-attachment: fixed; }
}
}

/* خلفيات مخصصة لكل صفحة */
.azm-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/1.jpg');
}

.finishing-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/2.jpg');
}

.renovation-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/3.jpg');
}

.facades-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/4.jpg');
}

.waterproofing-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/5.jpg');
}

.annexes-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/6.jpg');
}

.qarmid-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/7.jpg');
}

.majlis-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/8.jpg');
}

.works-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/9.jpg');
}

.home-page-header {
    background-image: linear-gradient(135deg, rgba(44, 90, 160, 0.85), rgba(30, 58, 138, 0.85)), url('../images/cover/10.jpg');
}

/* تنسيق موحد لجميع page-headers - محتوى موحد */
.page-header .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-header .page-header-content {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    margin: 0 auto;
}

.page-header .page-header-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    animation: slideInDown 1s ease-out;
    line-height: 1.2;
    color: white;
    font-family: 'Cairo', sans-serif;
}

.page-header .page-header-content p {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.95;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.3s both;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

/* Responsive موحد للجوال - تحسين شامل للتوافق مع جميع الشاشات */
@media (max-width: 768px) {
    .page-header {
        min-height: 50vh;
        background-attachment: scroll; /* إصلاح مشكلة الخلفية في الجوال */
        padding: 40px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .page-header .container {
        padding: 0 20px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50vh;
    }
    
    .page-header .page-header-content {
        padding: 50px 20px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .page-header .page-header-content h1 {
        font-size: 2.8rem;
        margin-bottom: 25px;
        line-height: 1.1;
        text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
        font-weight: 900;
        color: white;
        word-wrap: break-word;
        letter-spacing: -0.5px;
    }
    
    .page-header .page-header-content p {
        font-size: 1.4rem;
        line-height: 1.5;
        max-width: 100%;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 45vh;
        padding: 30px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .page-header .container {
        padding: 0 15px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 45vh;
    }
    
    .page-header .page-header-content {
        padding: 40px 15px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .page-header .page-header-content h1 {
        font-size: 2.4rem;
        line-height: 1.1;
        margin-bottom: 20px;
        margin-top: 130px;
        text-shadow: 4px 4px 9px rgba(0, 0, 0, 0.95);
        font-weight: 900;
        color: white;
        word-wrap: break-word;
        letter-spacing: -0.3px;
    }
    
    .page-header .page-header-content p {
        font-size: 1.3rem;
        line-height: 1.4;
        max-width: 100%;
        text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.9);
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
        margin: 0 auto;
    }
}

/* تحسين إضافي للشاشات الصغيرة جداً */
@media (max-width: 360px) {
    .page-header {
        min-height: 40vh;
        padding: 25px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .page-header .container {
        padding: 0 12px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 40vh;
    }
    
    .page-header .page-header-content {
        padding: 35px 12px;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .page-header .page-header-content h1 {
        font-size: 2.1rem;
        margin-bottom: 18px;
       
        text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.98);
        font-weight: 900;
        color: white;
        word-wrap: break-word;
        letter-spacing: -0.2px;
        line-height: 1.05;
    }
    
    .page-header .page-header-content p {
        font-size: 1.2rem;
        line-height: 1.3;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.95);
        color: rgba(255, 255, 255, 0.95);
        font-weight: 500;
        margin: 0 auto;
    }
}

.privacy-page-header .company-logo, .page-header .company-logo {
    margin: 20px 0;
    text-align: center;
}

.privacy-page-header .header-logo, .page-header .header-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

.privacy-page-header .header-logo:hover, .page-header .header-logo:hover {
    transform: scale(1.05);
}

/* شعار الـ navbar */
.navbar-logo, .logo-img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover, .logo-img:hover {
    transform: scale(1.05);
}

/* تحسين عرض الشعار في الـ navbar */
.nav-brand {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .navbar-logo, .logo-img {
        max-height: 40px;
    }
}

/* تحسين عرض أرقام الهاتف في صفحة الشروط */
.phone-numbers-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-label {
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 20px;
}

.phone-numbers .phone-number {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
    font-size: 0.95rem;
    direction: ltr;
    text-align: center;
    min-width: 180px;
}

.phone-numbers .phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.4);
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5aa0 100%);
}

.contact-item-privacy {
    align-items: flex-start !important;
}

.contact-item-privacy i {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .phone-numbers .phone-number {
        min-width: 160px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* معرض أعمال العظم */
.azm-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-container {
    margin-top: 50px;
}

.gallery-section-title {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
    justify-content: center;
}

.gallery-section-title i {
    font-size: 2rem;
    color: #1e3a8a;
}

/* قسم الفيديوهات */
.videos-section {
    margin-bottom: 60px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(44, 90, 160, 0.8);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-info {
    padding: 25px;
}

.video-info h4 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-info p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}


/* Images Grid - Optimized for better display */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}



/* الحاوية: أزل الارتفاع الثابت */
.image-wrapper {
    position: relative;
    /* height: 280px;  ← احذف هذه السطر */
    overflow: hidden; /* للإبقاء على حواف ناعمة مع الـ border-radius إن وُجد */
}

/* الصورة: اعرضها كاملة بدون قص */
.image-wrapper img {
    width: 100%;
    height: auto;          /* يحافظ على التناسُب الأصلي */
    object-fit: contain;   /* يعرض كامل الصورة داخل الإطار */
    transition: var(--transition);
}



.image-item:hover .image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8), rgba(30, 58, 138, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.image-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.image-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.image-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.view-btn:hover {
    background: white;
    color: #2c5aa0;
    transform: scale(1.05);
}

/* Lightbox - Optimized for better image display */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 90%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

#lightbox-image {
    max-width: 95%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

/* Lightbox Caption - Optimized */
.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.lightbox-caption h3 {
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Lightbox Navigation - Optimized */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
    background: rgba(44, 90, 160, 0.8);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(44, 90, 160, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .azm-gallery {
        padding: 60px 0;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-wrapper {
        height: 200px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .image-wrapper {
        height: auto;
        min-height: 200px;
    }
    
    .image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
        min-height: 200px;
    }
    
    .gallery-section-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .lightbox-content {
        padding: 10px;
        width: 95%;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #lightbox-image {
        max-width: 100%;
        max-height: 70vh;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-prev, .lightbox-next {
        padding: 12px 16px;
        font-size: 1.3rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .lightbox-caption {
        margin-top: 15px;
        padding: 8px 15px;
    }
    
    .lightbox-caption h3 {
        font-size: 1.4rem;
    }
}

/* Service Detail Cards - تصميم بطاقات الخدمات المفصلة */
.services-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.service-detail-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2c5aa0, #f59e0b);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.service-detail-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.service-features li {
    padding: 8px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8fafc;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 2rem;
}

.form-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.form-feature span {
    color: #666;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    line-height: 1.6;
    padding: 8px 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: #ffffff;
    display: inline-block;
    margin: 0;
    order: -1;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2c5aa0;
    border-color: #2c5aa0;
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* إصلاح إضافي للـ checkbox */
.checkbox-group .checkbox-label {
    min-height: 50px;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
}

.checkbox-group .checkmark {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Map Section */
.map-section {
    background: white;
    padding: 80px 0;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.map-info {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.map-details h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-details p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.map-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-info {
        padding: 30px 20px;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-actions .btn {
        text-align: center;
    }
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: #f8fafc;
    padding: 100px 40px;
    text-align: center;
    border: 2px dashed #d1d5db;
}

.map-placeholder i {
    font-size: 4rem;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: #2c5aa0;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #2c5aa0;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #2c5aa0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Privacy Page Styles */
.privacy-content {
    background: white;
}

.privacy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.privacy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 3rem;
}

.privacy-intro h2 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.privacy-intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-sections {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section h3 {
    color: #2c5aa0;
    margin-bottom: 25px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-section h3 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.privacy-content-text {
    color: #666;
    line-height: 1.8;
}

.privacy-content-text h4 {
    color: #333;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.privacy-content-text ul {
    margin: 15px 0;
    padding-right: 20px;
}

.privacy-content-text ul li {
    margin-bottom: 8px;
}

.privacy-content-text strong {
    color: #2c5aa0;
}

.contact-info-privacy {
    margin-top: 20px;
}

.contact-item-privacy {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.contact-item-privacy i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.contact-item-privacy a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-item-privacy a:hover {
    color: #1e3a8a;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vmv-grid,
    .team-grid,
    .achievements-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .review-content {
        padding: 30px 20px;
    }
    
    .add-review-section {
        padding: 30px 20px;
    }
    
    .privacy-section {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .vmv-card,
    .team-member,
    .achievement-item,
    .contact-info-card {
        padding: 20px;
    }
    
    .privacy-intro h2 {
        font-size: 1.8rem;
    }
    
    .form-info h2 {
        font-size: 1.6rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    animation: none;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.phone-btn {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Contact button tooltip */
.contact-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.contact-btn:hover::before {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .overview-content {
        gap: 40px;
    }
    
    .overview-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-text {
        gap: 30px;
    }
    
    .text-section {
        padding: 25px;
    }
    
    .text-section h2 {
        font-size: 1.5rem;
    }
    
    .text-section p {
        font-size: 1rem;
    }
    
    .overview-image img {
        height: 300px;
    }
    
    .header-logo {
        max-width: 120px;
    }
    
    .company-overview {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .text-section {
        padding: 20px;
    }
    
    .text-section h2 {
        font-size: 1.3rem;
    }
    
    .text-section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .overview-image img {
        height: 250px;
        border-radius: 15px;
    }
    
    .header-logo {
        max-width: 100px;
    }
    
    .company-overview {
        padding: 40px 0;
    }
    
    .overview-text {
        gap: 25px;
    }
}

/* Responsive adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .contact-btn::before {
        font-size: 12px;
        padding: 6px 10px;
        right: 60px;
    }
    
    .contact-btn:hover::before {
        right: 65px;
    }
}
