/* ===== CSS Reset & 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;
    background-color: #f8f9fa;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Loading Screen ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
    color: white;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Floating Social Media Icons ===== */
.floating-social {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.social-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.social-icons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.social-icons.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.social-icon.facebook { background: #3b5998; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.twitter { background: #1da1f2; }
.social-icon.youtube { background: #ff0000; }
.social-icon.google { background: #dd4b39; }

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Floating Contact Buttons ===== */
.floating-contact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.phone-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-btn {
    background: #25d366;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* ===== Header Styles ===== */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-item {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #f0f0f0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #f0f0f0;
    transform: scale(1.1);
}

.header-main {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 35px;
    width: auto;
}

.logo-text h1 {
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
    font-weight: 700;
}

.logo-text p {
    font-size: 10px;
    color: #666;
    font-weight: 400;
}

/* ===== Navigation Styles ===== */
.main-nav {
    position: relative;
}

.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;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link.active {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    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 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #667eea;
}

/* ===== Submenu Styles ===== */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-menu {
    position: absolute;
    top: 0;
    right: 100%;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 5px 0;
    margin-right: 5px;
}

.dropdown-submenu:hover .dropdown-submenu-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu > a {
    position: relative;
    padding-left: 30px !important;
}

.dropdown-submenu > a i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover > a i {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-submenu-menu li {
    list-style: none;
}

.dropdown-submenu-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-submenu-menu a:hover {
    background: #667eea;
    color: white;
    transform: translateX(-3px);
}

.btn-quote {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 6px 15px !important;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 60px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInUp 1s ease;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: slideInUp 1s ease 0.2s both;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

/* ===== Hero Controls ===== */
.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.hero-controls button {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* ===== Services Overview ===== */
.services-overview {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 15px !important;
    text-align: center !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card::before {
    display: none !important;
    opacity: 0 !important;
}

.service-card:hover::before {
    display: none !important;
    opacity: 0 !important;
}

.service-card:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.service-card:hover * {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 2 !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background: white;
    color: #667eea;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 9999 !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    pointer-events: auto !important;
}

.service-link:hover {
    color: #5a67d8;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

/* حماية شاملة للروابط في جميع البطاقات */
.premium-card .service-link,
.service-card .service-link,
.premium-card:hover .service-link,
.service-card:hover .service-link {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 9999 !important;
    transform: none !important;
}

/* ===== Latest Works Section ===== */
.latest-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.work-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work-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;
}

.work-item:hover .work-overlay {
    transform: translateY(0);
}

.work-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #ffd700;
    font-size: 14px;
}

.rating span {
    margin-left: 10px;
    font-size: 14px;
    color: #ccc;
}

.text-center {
    text-align: center;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 10px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* ===== Contact Form ===== */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    background: #2c3e50;
    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 h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 10px;
    color: white;
}

.footer-logo p {
    color: #bdc3c7;
    font-size: 14px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-contact i {
    color: #667eea;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* تم نقل تنسيق أيقونات التواصل الاجتماعي إلى transparent-sections.css */

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* ===== Service Sections ===== */
.service-section {
    padding: 80px 0;
    background: white;
}

.service-section:nth-child(even) {
    background: #f8f9fa;
}

.service-content {
    margin-top: 40px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #ffd700;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.feature-item p {
    color: #f0f0f0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== Feature Icons Animation ===== */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== Gallery Grid ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== About Content ===== */
.about-content {
    margin-top: 40px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* ===== Quote Form ===== */
.quote-form {
    max-width: 600px;
    margin: 40px auto 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.quote-form .form-group {
    margin-bottom: 25px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.quote-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* ===== Service Hero ===== */
.service-hero {
    margin: 40px 0;
    text-align: center;
}

.service-main-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== Pricing Section ===== */
.pricing-section {
    margin: 50px 0;
}

.pricing-section h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.price-item {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-item.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.price-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.price-header h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price-item ul {
    list-style: none;
    padding: 0;
}

.price-item li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-right: 25px;
}

.price-item li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #667eea;
    font-weight: bold;
}

.price-item li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: #666;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-right: 4px solid #667eea;
}

/* ===== Service Gallery ===== */
.service-gallery {
    margin: 50px 0;
}

.service-gallery h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.features-grid .feature-item {
    text-align: center;
    padding: 25px;
}

.features-grid .feature-item i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.features-grid .feature-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #ffd700;
}

.features-grid .feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== Technical Details ===== */
.technical-details {
    margin: 50px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.technical-details h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.technical-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
    margin: 25px 0 15px;
}

.technical-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.technical-details ul {
    margin: 15px 0;
    padding-right: 20px;
}

.technical-details li {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

/* ===== Service Description ===== */
.service-description {
    margin: 40px 0;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* ===== Service Types ===== */
.service-types {
    margin: 50px 0;
}

.service-types h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.type-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.type-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.type-item i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.type-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.type-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* ===== Applications Section ===== */
.applications-section {
    margin: 50px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.applications-section h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.application-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.application-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 12px;
}

.application-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ===== Pool Features ===== */
.pool-features {
    margin: 50px 0;
}

.pool-features h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

/* ===== Pool Types ===== */
.pool-types {
    margin: 50px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.pool-types h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

/* ===== Coverage Options ===== */
.coverage-options {
    margin: 50px 0;
}

.coverage-options h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.coverage-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coverage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.coverage-item.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.coverage-item.featured h4 {
    color: white;
}

.coverage-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.coverage-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.coverage-item.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.coverage-item ul {
    list-style: none;
    padding: 0;
}

.coverage-item li {
    padding: 8px 0;
    position: relative;
    padding-right: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.coverage-item li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #667eea;
    font-weight: bold;
}

.coverage-item.featured li:before {
    color: white;
}

/* ===== Technical Specs ===== */
.technical-specs {
    margin: 50px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.technical-specs h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.specs-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
    margin: 25px 0 15px;
}

.specs-content ul {
    margin: 15px 0;
    padding-right: 20px;
}

.specs-content li {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

/* ===== Gallery Categories ===== */
.gallery-categories {
    margin: 40px 0;
    text-align: center;
}

.category-tabs {
    display: inline-flex;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 5px;
    gap: 5px;
}

.tab-btn {
    padding: 12px 25px;
    border: none;
    background: transparent;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* ===== About Stats ===== */
.about-hero {
    margin: 40px 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== About Services ===== */
.about-services {
    margin: 50px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.about-services h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ===== Fence Types ===== */
.fence-types {
    margin: 50px 0;
}

.fence-types h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

.fence-types .type-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.fence-types .type-item li {
    padding: 5px 0;
    position: relative;
    padding-right: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.fence-types .type-item li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #667eea;
    font-weight: bold;
}

/* ===== Tent Types ===== */
.tent-types {
    margin: 50px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.tent-types h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

/* ===== Hangar Types ===== */
.hangar-types {
    margin: 50px 0;
}

.hangar-types h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
}

/* ===== Types Section ===== */
.types-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.types-section h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.type-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.type-item i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.type-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.type-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* ===== Shades Page Hero Section ===== */
.shades-hero {
    height: 70vh;
    margin-top: 60px;
}

.shades-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.shades-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.shades-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.shades-hero .btn-primary {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.shades-hero .btn-primary:hover {
    background: linear-gradient(135deg, #357abd 0%, #2c5aa0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

/* Responsive Design for Shades Hero */
@media (max-width: 768px) {
    .shades-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .shades-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .shades-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .shades-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-controls {
        padding: 0 15px;
    }

    .hero-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ===== Cantilever Shades Page Hero Section ===== */
.cantilever-hero {
    height: 70vh;
    margin-top: 60px;
}

.cantilever-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.cantilever-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cantilever-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cantilever-hero .btn-primary {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.cantilever-hero .btn-primary:hover {
    background: linear-gradient(135deg, #d35400 0%, #c0392b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

/* Responsive Design for Cantilever Hero */
@media (max-width: 768px) {
    .cantilever-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .cantilever-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .cantilever-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cantilever-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Car Shades Page Hero Section ===== */
.car-shades-hero {
    height: 70vh;
    margin-top: 60px;
}

.car-shades-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.car-shades-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.car-shades-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.car-shades-hero .btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.car-shades-hero .btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Responsive Design for Car Shades Hero */
@media (max-width: 768px) {
    .car-shades-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .car-shades-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .car-shades-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .car-shades-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Conical Shades Page Hero Section ===== */
.conical-hero {
    height: 70vh;
    margin-top: 60px;
}

.conical-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.conical-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.conical-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.conical-hero .btn-primary {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.conical-hero .btn-primary:hover {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

/* Responsive Design for Conical Hero */
@media (max-width: 768px) {
    .conical-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .conical-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .conical-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .conical-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Garden Shades Page Hero Section ===== */
.garden-hero {
    height: 70vh;
    margin-top: 60px;
}

.garden-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.garden-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.garden-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.garden-hero .btn-primary {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.garden-hero .btn-primary:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

/* Responsive Design for Garden Hero */
@media (max-width: 768px) {
    .garden-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .garden-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .garden-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .garden-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Hanging Shades Page Hero Section ===== */
.hanging-hero {
    height: 70vh;
    margin-top: 60px;
}

.hanging-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.hanging-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hanging-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hanging-hero .btn-primary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.hanging-hero .btn-primary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Responsive Design for Hanging Hero */
@media (max-width: 768px) {
    .hanging-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .hanging-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hanging-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hanging-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Market Shades Page Hero Section ===== */
.market-hero {
    height: 70vh;
    margin-top: 60px;
}

.market-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.market-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.market-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.market-hero .btn-primary {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.market-hero .btn-primary:hover {
    background: linear-gradient(135deg, #7d3c98 0%, #8e44ad 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

/* Responsive Design for Market Hero */
@media (max-width: 768px) {
    .market-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .market-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .market-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .market-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Mosque Shades Page Hero Section ===== */
.mosque-hero {
    height: 70vh;
    margin-top: 60px;
}

.mosque-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.mosque-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mosque-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.mosque-hero .btn-primary {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.mosque-hero .btn-primary:hover {
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
}

/* Responsive Design for Mosque Hero */
@media (max-width: 768px) {
    .mosque-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .mosque-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .mosque-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mosque-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Polyethylene Shades Page Hero Section ===== */
.polyethylene-hero {
    height: 70vh;
    margin-top: 60px;
}

.polyethylene-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.polyethylene-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.polyethylene-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.polyethylene-hero .btn-primary {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.polyethylene-hero .btn-primary:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

/* Responsive Design for Polyethylene Hero */
@media (max-width: 768px) {
    .polyethylene-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .polyethylene-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .polyethylene-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .polyethylene-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Pool Shades Page Hero Section ===== */
.pool-hero {
    height: 70vh;
    margin-top: 60px;
}

.pool-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.pool-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pool-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pool-hero .btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.pool-hero .btn-primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f618d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Responsive Design for Pool Hero */
@media (max-width: 768px) {
    .pool-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .pool-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .pool-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .pool-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== PVC Shades Page Hero Section ===== */
.pvc-hero {
    height: 70vh;
    margin-top: 60px;
}

.pvc-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.pvc-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pvc-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pvc-hero .btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.pvc-hero .btn-primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Responsive Design for PVC Hero */
@media (max-width: 768px) {
    .pvc-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .pvc-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .pvc-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .pvc-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Pyramid Shades Page Hero Section ===== */
.pyramid-hero {
    height: 70vh;
    margin-top: 60px;
}

.pyramid-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.pyramid-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pyramid-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.pyramid-hero .btn-primary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.pyramid-hero .btn-primary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* Responsive Design for Pyramid Hero */
@media (max-width: 768px) {
    .pyramid-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .pyramid-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .pyramid-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .pyramid-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== School Shades Page Hero Section ===== */
.school-hero {
    height: 70vh;
    margin-top: 60px;
}

.school-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.school-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.school-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.school-hero .btn-primary {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.school-hero .btn-primary:hover {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

/* Responsive Design for School Hero */
@media (max-width: 768px) {
    .school-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .school-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .school-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .school-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Tensile Structures Page Hero Section ===== */
.tensile-hero {
    height: 70vh;
    margin-top: 60px;
}

.tensile-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.tensile-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tensile-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tensile-hero .btn-primary {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.tensile-hero .btn-primary:hover {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

/* Responsive Design for Tensile Hero */
@media (max-width: 768px) {
    .tensile-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .tensile-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .tensile-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .tensile-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Wooden Shades Page Hero Section ===== */
.wooden-hero {
    height: 70vh;
    margin-top: 60px;
}

.wooden-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.wooden-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wooden-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.wooden-hero .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.wooden-hero .btn-primary:hover {
    background: linear-gradient(135deg, #654321 0%, #4a2c17 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Responsive Design for Wooden Hero */
@media (max-width: 768px) {
    .wooden-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .wooden-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .wooden-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .wooden-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Fences Page Hero Section ===== */
.fences-hero {
    height: 70vh;
    margin-top: 60px;
}

.fences-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.fences-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fences-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.fences-hero .btn-primary {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.fences-hero .btn-primary:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
}

/* Responsive Design for Fences Hero */
@media (max-width: 768px) {
    .fences-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .fences-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .fences-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .fences-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Wooden Fences Page Hero Section ===== */
.wooden-fences-hero {
    height: 70vh;
    margin-top: 60px;
}

.wooden-fences-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.wooden-fences-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.wooden-fences-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.wooden-fences-hero .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.wooden-fences-hero .btn-primary:hover {
    background: linear-gradient(135deg, #654321 0%, #4a2c17 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Responsive Design for Wooden Fences Hero */
@media (max-width: 768px) {
    .wooden-fences-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .wooden-fences-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .wooden-fences-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .wooden-fences-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Iron Fences Page Hero Section ===== */
.iron-fences-hero {
    height: 70vh;
    margin-top: 60px;
}

.iron-fences-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.iron-fences-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.iron-fences-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.iron-fences-hero .btn-primary {
    background: linear-gradient(135deg, #7f8c8d 0%, #95a5a6 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.iron-fences-hero .btn-primary:hover {
    background: linear-gradient(135deg, #95a5a6 0%, #bdc3c7 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(127, 140, 141, 0.4);
}

/* Responsive Design for Iron Fences Hero */
@media (max-width: 768px) {
    .iron-fences-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .iron-fences-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .iron-fences-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .iron-fences-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Fabric Fences Page Hero Section ===== */
.fabric-fences-hero {
    height: 70vh;
    margin-top: 60px;
}

.fabric-fences-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.fabric-fences-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.fabric-fences-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.fabric-fences-hero .btn-primary {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.fabric-fences-hero .btn-primary:hover {
    background: linear-gradient(135deg, #d35400 0%, #ba4a00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

/* Responsive Design for Fabric Fences Hero */
@media (max-width: 768px) {
    .fabric-fences-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .fabric-fences-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .fabric-fences-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .fabric-fences-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== School Fences Page Hero Section ===== */
.school-fences-hero {
    height: 70vh;
    margin-top: 60px;
}

.school-fences-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.school-fences-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.school-fences-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.school-fences-hero .btn-primary {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.school-fences-hero .btn-primary:hover {
    background: linear-gradient(135deg, #1f618d 0%, #2980b9 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(41, 128, 185, 0.4);
}

/* Responsive Design for School Fences Hero */
@media (max-width: 768px) {
    .school-fences-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .school-fences-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .school-fences-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .school-fences-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Tiles Page Hero Section ===== */
.tiles-hero {
    height: 70vh;
    margin-top: 60px;
}

.tiles-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.tiles-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tiles-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.tiles-hero .btn-primary {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.tiles-hero .btn-primary:hover {
    background: linear-gradient(135deg, #ba4a00 0%, #d35400 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.4);
}

/* Responsive Design for Tiles Hero */
@media (max-width: 768px) {
    .tiles-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .tiles-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .tiles-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .tiles-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Cladding Page Hero Section ===== */
.cladding-hero {
    height: 70vh;
    margin-top: 60px;
}

.cladding-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.cladding-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cladding-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cladding-hero .btn-primary {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.cladding-hero .btn-primary:hover {
    background: linear-gradient(135deg, #138496 0%, #0f6674 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

/* Responsive Design for Cladding Hero */
@media (max-width: 768px) {
    .cladding-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .cladding-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .cladding-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cladding-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Hair Houses Page Hero Section ===== */
.hair-houses-hero {
    height: 70vh;
    margin-top: 60px;
}

.hair-houses-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.hair-houses-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hair-houses-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hair-houses-hero .btn-primary {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.hair-houses-hero .btn-primary:hover {
    background: linear-gradient(135deg, #654321 0%, #8b4513 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Responsive Design for Hair Houses Hero */
@media (max-width: 768px) {
    .hair-houses-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .hair-houses-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hair-houses-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hair-houses-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Hangars Page Hero Section ===== */
.hangars-hero {
    height: 70vh;
    margin-top: 60px;
}

.hangars-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.hangars-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hangars-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hangars-hero .btn-primary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.hangars-hero .btn-primary:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

/* Responsive Design for Hangars Hero */
@media (max-width: 768px) {
    .hangars-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .hangars-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hangars-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hangars-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Nets Page Hero Section ===== */
.nets-hero {
    height: 70vh;
    margin-top: 60px;
}

.nets-hero .slide::before {
    background: rgba(0, 0, 0, 0.5);
}

.nets-hero .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nets-hero .slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nets-hero .btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 12px 25px;
    font-size: 16px;
}

.nets-hero .btn-primary:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #17a2b8 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Responsive Design for Nets Hero */
@media (max-width: 768px) {
    .nets-hero {
        height: 50vh;
        margin-top: 50px;
    }

    .nets-hero .slide-content h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .nets-hero .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .nets-hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Latest Works Page Styles ===== */
.hero-section {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInUp 1s ease;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease 0.4s both;
}

.btn-secondary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.main-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.latest-projects {
    padding: 40px 0;
}

.project-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.project-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.project-date {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.project-description {
    padding: 30px;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== Navigation Styles for Latest Works ===== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 998;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    padding: 15px 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #667eea;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* ===== Contact Section for Latest Works ===== */
.contact-section {
    background: #f8f9fa;
    padding: 60px 0;
}

/* ===== Contact Buttons Enhanced Styles ===== */
.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: slideInUp 1s ease 0.4s both;
}

.contact-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-buttons .btn:hover::before {
    left: 100%;
}

.contact-buttons .btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-buttons .btn:hover i {
    transform: scale(1.1);
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* تأثيرات خاصة لزر الواتساب */
.contact-buttons .btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    position: relative;
}

.contact-buttons .btn-success:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0d7377 100%);
    animation: whatsappPulse 1.5s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }
}

/* تحسين زر الهاتف الأساسي */
.contact-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* تحسين تنسيق النصوص في أقسام الاتصال */
.contact-section h2,
.contact-section h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    animation: fadeInDown 1s ease 0.2s both;
}

.contact-section h2::after,
.contact-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.contact-section p {
    text-align: center;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

/* تأثيرات الحركة */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
}

/* ===== Floating Contact for Latest Works ===== */
.floating-contact {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.phone-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.whatsapp-btn {
    background: #25d366;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

/* ===== Responsive Design for Latest Works ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .project-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .project-gallery {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .project-features {
        justify-content: center;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ===== Services Section ===== */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-image.active {
    opacity: 1;
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.service-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item:hover::before {
    opacity: 0.1;
}

/* ===== SHADES PAGE STYLES ===== */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 20%, #ffed4e 50%, #ffd700 80%, transparent 100%);
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
    }
    to {
        box-shadow: 0 3px 15px rgba(255, 215, 0, 0.7);
    }
}

.page-header p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.intro-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.shade-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.shade-section:last-child {
    border-bottom: none;
}

.shade-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.shade-content.reverse {
    direction: ltr;
}

.shade-content.reverse .shade-text {
    direction: rtl;
}

.shade-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 20px;
    font-weight: 700;
}

.shade-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.shade-text ul {
    list-style: none;
    padding: 0;
}

.shade-text li {
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    font-size: 1rem;
    color: #666;
}

.shade-text li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #28a745;
    font-weight: bold;
}

.shade-image {
    text-align: center;
}

.shade-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.shade-image img:hover {
    transform: scale(1.05);
}

.shades-list-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.shades-list-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 40px;
    font-weight: 700;
}

.shades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.shade-type {
    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, box-shadow 0.3s ease;
}

.shade-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.shade-type h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin: 0;
    font-weight: 600;
}

.conclusion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.conclusion-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.conclusion-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-cta h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

/* ===== RESPONSIVE STYLES FOR SHADES PAGE ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .page-header h1::after {
        width: 80px;
        height: 4px;
        bottom: -12px;
    }

    .page-header p {
        font-size: 1rem;
    }

    .shade-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shade-content.reverse {
        direction: rtl;
    }

    .shade-text h2 {
        font-size: 2rem;
    }

    .shade-image img {
        height: 250px;
    }

    .shades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .conclusion-content h2 {
        font-size: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.4rem;
    }
}

/* إصلاح نهائي لعرض بطاقات الخدمات */
.about-services,
.about-services .services-grid,
.about-services .premium-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-grid {
    display: grid !important;
}

.premium-card,
.service-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: white !important;
}

/* تأكيد عرض جميع العناصر الداخلية */
.premium-card *,
.service-card * {
    opacity: 1 !important;
    visibility: visible !important;
}

/* منع اختفاء العناصر عند الـ hover نهائياً */
.premium-card,
.premium-card:hover,
.service-card,
.service-card:hover {
    opacity: 1 !important;
    visibility: visible !important;
}

.premium-card *,
.premium-card:hover *,
.service-card *,
.service-card:hover * {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* حماية خاصة للأيقونات */
.service-icon-wrapper,
.service-icon-wrapper i,
.premium-card .service-icon-wrapper,
.premium-card .service-icon-wrapper i,
.premium-card:hover .service-icon-wrapper,
.premium-card:hover .service-icon-wrapper i {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* حماية خاصة للروابط */
.service-link,
.premium-card .service-link,
.premium-card:hover .service-link {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    pointer-events: auto !important;
}

/* CSS بسيط لمنع اختفاء البيانات نهائياً */
.premium-card,
.premium-card:hover {
    background: white !important;
}

.premium-card h4,
.premium-card p,
.premium-card .service-link,
.premium-card .service-icon-wrapper,
.premium-card .service-icon-wrapper i,
.premium-card:hover h4,
.premium-card:hover p,
.premium-card:hover .service-link,
.premium-card:hover .service-icon-wrapper,
.premium-card:hover .service-icon-wrapper i {
    opacity: 1 !important;
    visibility: visible !important;
    color: inherit !important;
    display: block !important;
}

.premium-card .service-icon-wrapper,
.premium-card:hover .service-icon-wrapper {
    display: flex !important;
}

.premium-card .service-icon-wrapper i,
.premium-card:hover .service-icon-wrapper i {
    display: flex !important;
}

.premium-card .service-link,
.premium-card:hover .service-link {
    display: inline-flex !important;
}

/* حماية قوية للأيقونات */
.premium-card .service-icon-wrapper i,
.premium-card:hover .service-icon-wrapper i,
.service-card .service-icon-wrapper i,
.service-card:hover .service-icon-wrapper i {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    color: white !important;
    font-size: 2rem !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 999 !important;
}

/* تأكيد عرض أيقونات Font Awesome - مع استثناءات للتواصل الاجتماعي */
.fas {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.far {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
}

.fab {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* تم نقل تنسيق أيقونات التواصل الاجتماعي إلى transparent-sections.css */
