/* ===== RESET & VARIABLES ===== */
:root {
    --primary-orange: #ff6b00;
    --secondary-orange: #ff8533;
    --light-orange: #fff1e6;
    --white: #ffffff;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(255, 107, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    text-align: left;
}

/* ===== TYPOGRAPHY - ALL LEFT ALIGNED ===== */
p, h1, h2, h3, h4, h5, h6, li, a, span, div {
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Center only specific elements */
.hero-content h1,
.hero-content p,
.section-title,
.text-center {
    text-align: center !important;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ===== DROPDOWN STYLES ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
    font-family: inherit;
}

.dropdown-btn i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 320px;
    box-shadow: var(--shadow-hover);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border-top: 3px solid var(--primary-orange);
}

.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-section {
    padding: 0.5rem 1rem;
    text-align: left;
}

.dropdown-section h4 {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.dropdown-section a {
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 5px;
    margin: 0.2rem 0;
    text-align: left;
}

.dropdown-section a i {
    margin-right: 0.8rem;
    color: var(--primary-orange);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: var(--dark-gray);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

/* ===== MAIN CONTENT ===== */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 300px);
    width: 100%;
    overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/10.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    text-align: center !important;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center !important;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-weight: 500;
    border: 2px solid transparent;
    text-align: center !important;
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 5%;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center !important;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--dark-gray);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-orange);
}

/* ===== CARDS ===== */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-size: 1.3rem;
    text-align: left;
}

.card-content p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
    text-align: left;
}

.card-content ul {
    margin: 0.5rem 0 1.5rem;
    padding-left: 1.5rem;
    list-style: none;
    text-align: left;
}

.card-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.card-content ul li::before {
    content: '✓';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card .btn {
    align-self: flex-start;
    margin-top: auto;
    min-width: 160px;
}

/* ===== COLLAPSIBLE MENU ===== */
.collapsible-menu {
    background: var(--light-orange);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.menu-header {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.menu-items {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: left;
}

.menu-btn {
    background: transparent;
    border: none;
    text-align: left !important;
    padding: 1rem 1.5rem !important;
    margin: 0.3rem 0;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-orange);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    text-align: left;
}

.form-group {
    margin-bottom: 1.8rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s ease;
    background: var(--white);
    font-family: inherit;
    text-align: left;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--light-orange);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.info-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 1.3rem;
}

.info-card p {
    text-align: center;
}

.info-card a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.2rem;
}

/* ===== GET IN TOUCH SECTION ===== */
.bg-orange {
    background: var(--light-orange);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    min-width: 200px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
}

.contact-item p {
    margin: 0.5rem 0 0;
    font-weight: 500;
    text-align: center;
}

.contact-item a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    text-align: center;
}

/* ===== UPDATED FOOTER - PROPERLY ALIGNED ===== */

footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 5% 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: var(--primary-orange);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
    text-align: left;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.footer-section p {
    margin-bottom: 0.7rem;
    line-height: 1.6;
    color: #ddd;
    font-size: 0.95rem;
    text-align: left;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.8;
    text-align: left;
}

.footer-section a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Footer contact info with icons */
.footer-section i {
    color: var(--primary-orange);
    width: 25px;
    margin-right: 8px;
    font-size: 1rem;
}

.footer-section .contact-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    text-align: left;
}

.footer-section .contact-line i {
    margin-top: 3px;
}

.footer-section .contact-line span,
.footer-section .contact-line a {
    flex: 1;
    word-break: break-word;
    text-align: left;
}

/* ===== SOCIAL LINKS ===== */

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.social-links a i {
    margin: 0;
    width: auto;
}

/* ===== FOOTER BOTTOM WITH TWO LINES ===== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0 0.5rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom .copyright-text {
    text-align: left;
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 0.8rem;
}

.footer-bottom .copyright-text strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.footer-bottom .address-text {
    text-align: left;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom .address-text i {
    color: var(--primary-orange);
    margin-right: 5px;
}

/* Address components styling */
.address-components {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-top: 0.5rem;
    text-align: left;
}

.address-components .addr-item {
    display: inline-flex;
    align-items: center;
    color: #aaa;
    font-size: 0.9rem;
    text-align: left;
}

.address-components .addr-item i {
    margin-right: 5px;
    color: var(--primary-orange);
    font-size: 0.8rem;
}

/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 99;
    box-shadow: var(--shadow-hover);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

/* ===== SERVICE DETAILS ===== */
.service-details {
    background: var(--light-orange);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
    text-align: left;
}

.service-details h3 {
    color: var(--primary-orange);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    text-align: left;
}

.service-details ul,
.service-details ol {
    padding-left: 2rem;
    margin: 1rem 0;
    text-align: left;
}

.service-details li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    text-align: left;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Devices */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Hamburger Menu */
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: left;
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 10px;
        text-align: left;
    }

    /* Mobile Dropdown */
    .dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        justify-content: space-between;
        text-align: left;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1rem;
        min-width: 100%;
        border-top: none;
        display: none;
        background: transparent;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-section {
        padding: 0.5rem 0;
    }
    
    .dropdown-section h4 {
        padding-left: 1rem;
        text-align: left;
    }
    
    .dropdown-section a {
        padding: 0.8rem 1rem 0.8rem 2rem;
        text-align: left;
    }

    /* Hero Section */
    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Cards */
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        width: 100%;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card .btn {
        align-self: stretch;
        width: 100%;
    }

    /* Contact Section */
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .info-card {
        width: 100%;
        max-width: 100%;
    }

    .contact-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-item {
        width: 100%;
        max-width: 350px;
    }

    .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: left;
        width: 100%;
    }

    .footer-section h3 {
        text-align: left;
    }

    .footer-section h3::after {
        left: 0;
        transform: none;
    }

    .footer-section .contact-line {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        text-align: left;
    }

    .footer-bottom .copyright-text {
        text-align: left;
    }

    .footer-bottom .address-text {
        text-align: left;
    }

    .address-components {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        text-align: left;
    }

    .address-components .addr-item {
        text-align: left;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Service Details */
    .service-details {
        padding: 1.5rem;
    }

    .service-details ul,
    .service-details ol {
        padding-left: 1.5rem;
    }

    /* Back to Top */
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Typography */
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p, li {
        font-size: 0.95rem;
    }

    /* Cards */
    .card-content {
        padding: 1.2rem;
    }

    .card-img {
        height: 180px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Contact Items */
    .info-card {
        padding: 1.5rem;
    }

    .info-card i {
        font-size: 2rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    /* Footer */
    .footer-section {
        padding: 0;
    }

    .footer-bottom .copyright-text {
        font-size: 0.9rem;
    }

    .footer-bottom .address-text {
        font-size: 0.85rem;
    }

    .address-components .addr-item {
        font-size: 0.85rem;
    }

    /* Service Details */
    .service-details {
        padding: 1.2rem;
    }

    .service-details h3 {
        font-size: 1.3rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.w-100 {
    width: 100%;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== ABOUT SUMMARY SECTION - MOBILE FRIENDLY ===== */

.about-summary-section {
    padding: 4rem 5%;
    background: var(--light-orange);
    width: 100%;
}

.about-summary-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-summary-content {
    text-align: left;
}

.about-summary-title {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.3;
}

.arabic-title {
    color: var(--dark-gray);
    font-size: 1.2rem;
    display: block;
    margin-top: 0.3rem;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
    text-align: left;
}

.feature-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-text {
    flex: 1;
    line-height: 1.6;
}

.feature-text strong {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.feature-desc {
    color: #555;
    font-size: 0.95rem;
}

.about-read-more-btn {
    margin-top: 1rem;
    display: inline-block;
}

.about-summary-image {
    width: 100%;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block;
}

/* ===== MISSION VISION SECTION - MOBILE FRIENDLY ===== */

.mission-vision-section {
    padding: 4rem 5%;
    width: 100%;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card,
.values-card {
    background: var(--light-orange);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.mission-icon {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.mission-title {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.arabic-subtitle {
    color: var(--primary-orange);
    font-size: 1rem;
    display: block;
    margin-top: 0.3rem;
    font-weight: normal;
}

.mission-text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.mission-text.arabic {
    color: #555;
    font-size: 0.9rem;
    border-top: 1px dashed rgba(255, 107, 0, 0.2);
    padding-top: 0.8rem;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .about-summary-container {
        gap: 2rem;
    }
    
    .about-summary-title {
        font-size: 1.8rem;
    }
    
    .mission-vision-container {
        gap: 1.5rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    /* About Summary Section */
    .about-summary-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-summary-content {
        order: 1;
    }
    
    .about-summary-image {
        order: 2;
    }
    
    .about-summary-title {
        font-size: 1.6rem;
        text-align: left;
    }
    
    .arabic-title {
        font-size: 1.1rem;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .feature-text strong {
        font-size: 1rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
    
    /* Mission Vision Section */
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 1.8rem;
    }
    
    .mission-icon {
        font-size: 2.2rem;
    }
    
    .mission-title {
        font-size: 1.2rem;
    }
    
    .arabic-subtitle {
        font-size: 0.95rem;
    }
    
    .mission-text {
        font-size: 0.9rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .about-summary-section {
        padding: 3rem 4%;
    }
    
    .about-summary-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .arabic-title {
        font-size: 1rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 1rem;
    }
    
    .feature-text strong {
        font-size: 0.95rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
    
    .about-read-more-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .mission-vision-section {
        padding: 3rem 4%;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 1.5rem;
    }
    
    .mission-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .mission-title {
        font-size: 1.1rem;
    }
    
    .arabic-subtitle {
        font-size: 0.9rem;
    }
    
    .mission-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .mission-text.arabic {
        font-size: 0.8rem;
        padding-top: 0.6rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .about-summary-title {
        font-size: 1.2rem;
    }
    
    .arabic-title {
        font-size: 0.9rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .feature-icon {
        margin-bottom: 2px;
    }
    
    .mission-card,
    .vision-card,
    .values-card {
        padding: 1.2rem;
    }
}

/* ===== QUICK LINKS SECTION - PROFESSIONAL & CLEAN ===== */

.quick-links-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    padding: 4rem 5%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay */
.quick-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

.quick-links-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quick-links-title {
    color: white;
    text-align: center !important;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
}

.quick-links-subtitle {
    color: var(--light-orange);
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: normal;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.links-column {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 1.8rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.links-column:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.column-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.column-icon {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.quick-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    line-height: 1.5;
    word-break: break-word;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Add bullet point using pseudo-element */
.quick-link::before {
    content: '→';
    margin-right: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
    color: var(--light-orange);
}

.quick-link:hover::before {
    transform: translateX(3px);
    opacity: 1;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .quick-links-title {
        font-size: 2.2rem;
    }
    
    .quick-links-subtitle {
        font-size: 1.1rem;
    }
    
    .links-column {
        padding: 1.5rem;
    }
    
    .column-title {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .quick-links-section {
        padding: 3rem 4%;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .quick-links-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .quick-links-subtitle {
        font-size: 1rem;
    }
    
    .links-column {
        padding: 1.5rem;
        width: 100%;
    }
    
    .column-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .column-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .links-list li {
        margin-bottom: 0.6rem;
    }
    
    .quick-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    .quick-link::before {
        margin-right: 8px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .quick-links-section {
        padding: 2.5rem 4%;
    }
    
    .quick-links-title {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
    }
    
    .quick-links-subtitle {
        font-size: 0.9rem;
    }
    
    .quick-links-grid {
        gap: 1rem;
    }
    
    .links-column {
        padding: 1.2rem;
    }
    
    .column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }
    
    .column-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .quick-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
    
    .quick-link::before {
        margin-right: 6px;
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .quick-links-title {
        font-size: 1.3rem;
    }
    
    .quick-links-subtitle {
        font-size: 0.85rem;
    }
    
    .links-column {
        padding: 1rem;
    }
    
    .column-title {
        font-size: 0.95rem;
    }
    
    .quick-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
    }
}

/* ===== HOVER EFFECTS FOR TOUCH DEVICES ===== */
@media (hover: hover) {
    .quick-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(8px);
    }
}

@media (hover: none) {
    .quick-link:active {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }
}

/* ===== TESTIMONIALS SECTION - WITH IMAGES & MOBILE FRIENDLY ===== */

.testimonials-section {
    padding: 4rem 5%;
    background: var(--white);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Optional subtle background pattern */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.02) 0%, rgba(255,133,51,0.02) 100%);
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-title {
    margin-bottom: 3rem;
}

.testimonials-subtitle {
    color: var(--primary-orange);
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: normal;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

/* Client Header with Image */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-image-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    transition: all 0.4s ease;
}

.testimonial-card:hover .client-image-wrapper {
    transform: scale(1.05);
    border-color: var(--secondary-orange);
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.testimonial-card:hover .client-image {
    transform: scale(1.1);
}

.client-info {
    flex: 1;
}

.client-name {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-align: left;
}

.client-title {
    color: var(--primary-orange);
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
    font-weight: 500;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    margin-bottom: 1.2rem;
    flex: 1;
}

.quote-icon {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 0.8rem;
    opacity: 0.3;
    display: block;
}

.testimonial-text {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--dark-gray);
    text-align: left;
}

.testimonial-text.english {
    color: var(--dark-gray);
    font-weight: 400;
}

.testimonial-text.arabic {
    color: #555;
    font-size: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(255, 107, 0, 0.2);
    font-style: italic;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
}

.testimonial-rating i:last-child {
    margin-right: 0;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 4%;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .client-image-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .client-title {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .testimonial-text.arabic {
        font-size: 0.85rem;
    }
    
    .quote-icon {
        font-size: 1.8rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 2.5rem 4%;
    }
    
    .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonials-subtitle {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .client-image-wrapper {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .client-name {
        font-size: 0.95rem;
    }
    
    .client-title {
        font-size: 0.8rem;
    }
    
    .testimonial-content {
        margin-bottom: 1rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-text.arabic {
        font-size: 0.8rem;
        padding-top: 0.6rem;
    }
    
    .testimonial-rating i {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .client-info {
        text-align: center;
    }
    
    .client-name,
    .client-title {
        text-align: center;
    }
    
    .client-image-wrapper {
        margin-bottom: 0.3rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== FALLBACK FOR MISSING IMAGES ===== */
.client-image-wrapper {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* If image fails to load, show initials */
.client-image-wrapper img[src*="ui-avatars"] {
    object-fit: contain;
    padding: 5px;
}

/* ===== HOVER EFFECTS ===== */
@media (hover: hover) {
    .testimonial-card:hover {
        transform: translateY(-10px);
    }
    
    .testimonial-card:hover .client-image-wrapper {
        transform: scale(1.05);
        border-color: var(--secondary-orange);
    }
}

@media (hover: none) {
    .testimonial-card:active {
        transform: scale(0.98);
    }
}
/* ===== CONTACT SUMMARY SECTION - PROFESSIONAL CARDS ===== */

.contact-summary-section {
    padding: 4rem 5%;
    background: var(--light-orange);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.contact-summary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-summary-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-summary-title {
    margin-bottom: 1.5rem;
}

.contact-summary-subtitle {
    color: var(--primary-orange);
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: normal;
}

.contact-summary-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--dark-gray);
    line-height: 1.7;
}

.arabic-text {
    display: block;
    color: var(--primary-orange);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Individual Contact Card */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Card hover effect */
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

/* Card shine effect */
.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.contact-card:hover::after {
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Card icon */
.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-card-icon i {
    color: white;
    font-size: 2rem;
}

/* Specific icon backgrounds */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.email-icon {
    background: linear-gradient(135deg, #EA4335, #B23121) !important;
}

/* Card content */
.contact-card-content {
    width: 100%;
}

.contact-card-title {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.contact-card:hover .contact-card-title::after {
    width: 60px;
}

/* Contact link */
.contact-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.contact-number {
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-label {
    color: #666;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-number {
    transform: scale(1.05);
    color: var(--secondary-orange);
}

.contact-card:hover .contact-label {
    color: var(--dark-gray);
}

/* WhatsApp specific hover */
.whatsapp-card:hover .contact-number {
    color: #25D366;
}

/* Email specific hover */
.email-card:hover .contact-number {
    color: #EA4335;
}

/* Action button */
.contact-summary-action {
    text-align: center;
}

.contact-summary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 15px 35px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.arabic-btn-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-summary-btn i {
    transition: transform 0.3s ease;
}

.contact-summary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.contact-summary-btn:hover i {
    transform: translateX(8px);
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .contact-cards-grid {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card-icon i {
        font-size: 1.6rem;
    }
    
    .contact-number {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .contact-summary-section {
        padding: 3rem 4%;
    }
    
    .contact-summary-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .arabic-text {
        font-size: 0.95rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-card {
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 1.2rem;
    }
    
    .contact-card-icon {
        margin-bottom: 0;
        width: 55px;
        height: 55px;
        flex-shrink: 0;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card-content {
        flex: 1;
    }
    
    .contact-card-title {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    
    .contact-card-title::after {
        left: 0;
        transform: none;
    }
    
    .contact-card-link {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-number {
        font-size: 1.1rem;
    }
    
    .contact-label {
        font-size: 0.85rem;
    }
    
    .contact-summary-btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .contact-summary-section {
        padding: 2.5rem 4%;
    }
    
    .contact-summary-title {
        font-size: 1.8rem;
    }
    
    .contact-summary-subtitle {
        font-size: 1rem;
    }
    
    .contact-summary-description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .arabic-text {
        font-size: 0.9rem;
    }
    
    .contact-card {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-icon i {
        font-size: 1.3rem;
    }
    
    .contact-card-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-number {
        font-size: 1rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-summary-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .arabic-btn-text {
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .contact-card-icon {
        margin-bottom: 0.8rem;
    }
    
    .contact-card-title {
        text-align: center;
    }
    
    .contact-card-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-card-link {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .contact-summary-btn {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */

/* Pulse animation for icons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.contact-card-icon {
    animation: pulse 2s infinite;
}

/* Hover effect for mobile */
@media (hover: hover) {
    .contact-card:hover {
        transform: translateY(-10px);
    }
    
    .contact-card:hover .contact-card-icon {
        transform: scale(1.1) rotate(360deg);
    }
}

@media (hover: none) {
    .contact-card:active {
        transform: scale(0.98);
    }
    
    .contact-summary-btn:active {
        transform: scale(0.95);
    }
}

/* ===== FEATURED PRODUCTS SECTION - WITH PROFESSIONAL BUTTONS ===== */

.featured-products-section {
    padding: 4rem 5%;
    background: var(--white);
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.featured-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.featured-products-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.featured-title {
    margin-bottom: 2.5rem;
}

.featured-subtitle {
    color: var(--primary-orange);
    font-size: 1.2rem;
    display: block;
    margin-top: 0.5rem;
    font-weight: normal;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Card hover effect */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

/* Card shine effect */
.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.product-card:hover::after {
    animation: productShine 0.8s ease;
}

@keyframes productShine {
    0% {
        left: -50%;
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Product Icon */
.product-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.4s ease;
}

.product-card:hover .product-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
}

.product-icon {
    color: white;
    font-size: 2.2rem;
}

/* Specific icon backgrounds */
.wood-icon {
    background: linear-gradient(135deg, #8B4513, #5D3A1A) !important;
}

.marble-icon {
    background: linear-gradient(135deg, #6B5B4D, #4A4036) !important;
}

/* Product Content */
.product-content {
    flex: 1;
    margin-bottom: 1.5rem;
    width: 100%;
}

.product-title {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.product-card:hover .product-title::after {
    width: 60px;
}

.product-title-arabic {
    color: var(--primary-orange);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
    font-weight: normal;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.product-desc-arabic {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-style: italic;
}

/* Product Actions / Button */
.product-actions {
    width: 100%;
    margin-top: auto;
}

/* Professional View Button */
.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--primary-orange);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid var(--primary-orange);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
}

/* Button hover effect */
.product-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.product-btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    border-color: transparent;
}

.product-btn:active {
    transform: translateY(-1px);
}

/* Button icon animation */
.btn-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.product-btn:hover .btn-icon {
    transform: translateX(8px);
}

.product-btn span {
    position: relative;
    z-index: 1;
}

/* Alternate button style (outline) - can be used if needed */
.product-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.product-btn-outline:hover {
    background: var(--primary-orange);
    color: white;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .product-icon {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .featured-products-section {
        padding: 3rem 4%;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.2rem;
    }
    
    .product-card {
        padding: 1.2rem;
    }
    
    .product-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 1.2rem;
    }
    
    .product-icon {
        font-size: 1.8rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-title-arabic {
        font-size: 0.85rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .product-desc-arabic {
        font-size: 0.8rem;
    }
    
    .product-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        max-width: 160px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .featured-products-section {
        padding: 2.5rem 4%;
    }
    
    .featured-title {
        font-size: 1.6rem;
    }
    
    .featured-subtitle {
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .product-icon {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-btn {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 200px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .product-card {
        padding: 1.2rem;
    }
    
    .product-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .product-icon {
        font-size: 1.6rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== ADDITIONAL BUTTON VARIATIONS ===== */

/* Filled button style (alternative) */
.product-btn-filled {
    background: var(--primary-orange);
    color: white;
    border: 2px solid transparent;
}

.product-btn-filled:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

/* Small button style */
.product-btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    max-width: 140px;
}

/* Large button style */
.product-btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
    max-width: 220px;
}

/* Button with left icon */
.product-btn-left-icon {
    flex-direction: row-reverse;
}

.product-btn-left-icon:hover .btn-icon {
    transform: translateX(-8px) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.product-icon-wrapper {
    animation: pulse 2s infinite;
}

/* Hover effects for mobile */
@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-10px);
    }
    
    .product-btn:hover {
        transform: translateY(-3px);
    }
}

@media (hover: none) {
    .product-card:active {
        transform: scale(0.98);
    }
    
    .product-btn:active {
        transform: scale(0.95);
    }
}

/* ===== FEATURED PRODUCTS SECTION - SIMPLE & CLEAN ===== */

.featured-products-section {
    padding: 3rem 5%;
    background: var(--white);
    width: 100%;
}

.featured-products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Product Card */
.product-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

/* Product Icon */
.product-icon {
    color: var(--primary-orange);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* Product Title */
.product-title {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.product-arabic {
    color: var(--primary-orange);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
}

/* Product Description */
.product-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.product-desc-arabic {
    color: #888;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1.2rem;
}

/* ===== SIMPLE VIEW BUTTON ===== */
.product-view-btn {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-orange);
    width: auto;
    min-width: 120px;
    text-align: center;
    margin-top: 0.5rem;
}

.product-view-btn:hover {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.product-view-btn:active {
    transform: translateY(0);
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        padding: 1.2rem 0.8rem;
    }
    
    .product-icon {
        font-size: 2rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-view-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card {
        padding: 1.5rem 1rem;
    }
    
    .product-icon {
        font-size: 2.2rem;
    }
    
    .product-view-btn {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 140px;
        width: 100%;
        max-width: 200px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .product-view-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
    }
}
/* ===== ABOUT SUMMARY SECTION - WITH PROPER BORDER ATTACHMENT ===== */

.about-summary-section {
    background: var(--light-orange);
    padding: 4rem 5%;
    width: 100%;
    position: relative;
    margin: 0;
    /* Border side se attach hone ke liye */
    border-top: 3px solid var(--primary-orange);
    border-bottom: 3px solid var(--primary-orange);
}

/* Agar aapko sirf ek side par border chahiye */
.about-summary-section.border-top-only {
    border-top: 3px solid var(--primary-orange);
    border-bottom: none;
}

.about-summary-section.border-bottom-only {
    border-top: none;
    border-bottom: 3px solid var(--primary-orange);
}

/* Border with gradient effect */
.about-summary-section.border-gradient {
    border: none;
    position: relative;
}

.about-summary-section.border-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--secondary-orange), var(--primary-orange), transparent);
}

.about-summary-section.border-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--secondary-orange), var(--primary-orange), transparent);
}

/* Double border style */
.about-summary-section.border-double {
    border-top: 3px double var(--primary-orange);
    border-bottom: 3px double var(--primary-orange);
}

/* Dashed border style */
.about-summary-section.border-dashed {
    border-top: 2px dashed var(--primary-orange);
    border-bottom: 2px dashed var(--primary-orange);
}

/* Container styling */
.about-summary-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* Inner spacing */
    padding: 1rem 0;
}

/* Content styling */
.about-summary-content {
    text-align: left;
}

.about-summary-title {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.3;
}

.arabic-title {
    color: var(--dark-gray);
    font-size: 1.2rem;
    display: block;
    margin-top: 0.3rem;
}

/* Features list */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
    text-align: left;
}

.feature-icon {
    color: var(--primary-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-text {
    flex: 1;
    line-height: 1.6;
}

.feature-text strong {
    display: block;
    color: var(--dark-gray);
    margin-bottom: 0.2rem;
}

.feature-desc {
    color: #555;
    font-size: 0.95rem;
}

/* Read more button */
.about-read-more-btn {
    margin-top: 1rem;
    display: inline-block;
}

/* Image styling */
.about-summary-image {
    width: 100%;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block;
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .about-summary-section {
        padding: 3rem 4%;
        /* Mobile par bhi border side se attached rahega */
        border-width: 2px;
    }
    
    .about-summary-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-summary-content {
        order: 1;
    }
    
    .about-summary-image {
        order: 2;
    }
    
    .about-summary-title {
        font-size: 1.6rem;
    }
    
    .arabic-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-summary-section {
        padding: 2rem 4%;
    }
    
    .about-summary-title {
        font-size: 1.4rem;
    }
    
    .feature-item {
        gap: 8px;
    }
    
    .about-read-more-btn {
        width: 100%;
        text-align: center;
    }
}
.button-group {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile ke liye */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .button-group .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important; /* Koi extra margin na ho */
    }
}
/* ===== HERO BUTTONS - ALL SAME STYLE ===== */

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    min-width: 200px;
    padding: 16px 28px;  /* Thori si extra padding */
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    background: var(--primary-orange);
    color: white;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

/* Hover effect */
.hero-btn:hover {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.5);
}

/* Active effect */
.hero-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-btn {
        min-width: 280px;
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;  /* Mobile par thori kam padding */
        font-size: 0.95rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-btn {
        min-width: 100%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* ===== PURE CIRCLE ACTION BUTTONS - NO TEXT ===== */

.fixed-action-buttons-circle {
    position: fixed;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.fixed-action-buttons-circle a {
    pointer-events: auto;
    text-decoration: none;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;  /* Perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fixed-action-buttons-circle a i {
    font-size: 32px;
}

/* Call Button */
.fixed-call-circle {
    background: #ff6b00 !important;
}

.fixed-call-circle:hover {
    background: #ff8533 !important;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255,107,0,0.6);
}

/* WhatsApp Button */
.fixed-whatsapp-circle {
    background: #25D366 !important;
}

.fixed-whatsapp-circle:hover {
    background: #128C7E !important;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37,211,102,0.6);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .fixed-action-buttons-circle {
        bottom: 20px;
        left: 15px;
        right: 15px;
    }
    
    .fixed-action-buttons-circle a {
        width: 60px;
        height: 60px;
    }
    
    .fixed-action-buttons-circle a i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .fixed-action-buttons-circle {
        bottom: 15px;
        left: 10px;
        right: 10px;
    }
    
    .fixed-action-buttons-circle a {
        width: 55px;
        height: 55px;
    }
    
    .fixed-action-buttons-circle a i {
        font-size: 26px;
    }
}

@media (max-width: 360px) {
    .fixed-action-buttons-circle a {
        width: 50px;
        height: 50px;
    }
    
    .fixed-action-buttons-circle a i {
        font-size: 24px;
    }
}

/* Pulse Animation */
.fixed-call-circle {
    animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(255,107,0,0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255,107,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,107,0,0);
    }
}

.fixed-whatsapp-circle {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* ===== ABOUT PAGE - FULLY MOBILE RESPONSIVE ===== */

.about-page-section {
    padding: 4rem 5%;
    width: 100%;
    overflow-x: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Titles */
.about-main-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    margin-bottom: 2rem;
}

.section-subtitle.text-center {
    text-align: center;
}

.title-en, .subtitle-en {
    color: var(--dark-gray);
    display: block;
    font-size: 2.5rem;
    line-height: 1.2;
}

.title-ar, .subtitle-ar {
    color: var(--primary-orange);
    display: block;
    font-size: 1.8rem;
    margin-top: 0.5rem;
    font-weight: normal;
}

/* Company Profile */
.company-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.profile-image {
    width: 100%;
}

.profile-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.profile-content {
    text-align: left;
}

/* Text Styles */
.text-en {
    text-align: left;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.text-ar {
    text-align: right;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    direction: rtl;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card, .vision-card {
    background: var(--light-orange);
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.card-title {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.card-title .title-en {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.card-title .title-ar {
    font-size: 1.2rem;
}

.card-content .text-en {
    margin-bottom: 1rem;
}

.card-content .text-ar {
    margin-bottom: 0;
    border-top: 1px dashed rgba(255,107,0,0.2);
    padding-top: 1rem;
}

/* Experience Stats */
.experience-stats {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-orange);
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-en {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 500;
}

.stat-ar {
    color: var(--primary-orange);
    font-size: 1rem;
}

/* Team Section */
.team-section {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-exp {
    color: #666;
    font-size: 0.9rem;
}

/* Capabilities Section */
.capabilities-section {
    margin-top: 3rem;
    background: var(--light-orange);
    padding: 2rem;
    border-radius: 10px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.capability-title {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.capability-title i {
    font-size: 1.2rem;
}

.capability-list {
    list-style: none;
    padding: 0;
}

.capability-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
}

.capability-list li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .company-profile {
        gap: 2rem;
    }
    
    .title-en, .subtitle-en {
        font-size: 2rem;
    }
    
    .title-ar, .subtitle-ar {
        font-size: 1.5rem;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .company-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-image {
        order: 1;
    }
    
    .profile-content {
        order: 2;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .member-image {
        width: 180px;
        height: 180px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .about-page-section {
        padding: 2rem 4%;
    }
    
    .title-en, .subtitle-en {
        font-size: 1.8rem;
    }
    
    .title-ar, .subtitle-ar {
        font-size: 1.3rem;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        width: 160px;
        height: 160px;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .capability-card {
        padding: 1.2rem;
    }
    
    .capability-list li {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .title-en, .subtitle-en {
        font-size: 1.5rem;
    }
    
    .title-ar, .subtitle-ar {
        font-size: 1.1rem;
    }
    
    .text-en, .text-ar {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .member-image {
        width: 140px;
        height: 140px;
    }
}
/* ===== FIXED SELECT DROPDOWN - BARI NAHI HOGI ===== */

/* Main select styling */
.fixed-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    color: var(--dark-gray);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
    
    /* Important: Yeh fix karega ke dropdown bari na ho */
    max-height: 3.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Focus state */
.fixed-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

/* Hover state */
.fixed-select:hover {
    border-color: var(--secondary-orange);
}

/* Style for options - yeh dropdown menu ko control karega */
.fixed-select option {
    font-size: 0.95rem;
    padding: 12px;
    white-space: normal;
    word-wrap: break-word;
    min-height: auto;
    background: white;
    color: var(--dark-gray);
}

/* Style for option groups */
.fixed-select optgroup {
    font-weight: 600;
    color: var(--primary-orange);
    background: var(--light-orange);
    padding: 8px;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .fixed-select {
        padding: 1.2rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
        background-size: 1rem;
    }
    
    /* Mobile par dropdown menu ka style */
    .fixed-select option {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .fixed-select {
        padding: 1rem 0.9rem;
        font-size: 15px;
    }
    
    .fixed-select option {
        font-size: 0.85rem;
        padding: 8px;
    }
}

/* Firefox specific fix */
@-moz-document url-prefix() {
    .fixed-select {
        padding: 0.9rem 1.2rem;
    }
}

/* For very long text in options */
.fixed-select option {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* When select is opened - dropdown menu size fixed rahega */
.fixed-select:focus option {
    /* Dropdown menu ka size control */
    max-height: 200px;
    overflow-y: auto;
}

/* Custom scrollbar for dropdown */
.fixed-select::-webkit-scrollbar {
    width: 8px;
}

.fixed-select::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.fixed-select::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.fixed-select::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}
/* ===== IMPROVED CONTACT FORM - MOBILE FIRST DESIGN ===== */

.contact-form-improved-section {
    width: 100%;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form-improved-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

/* Form Header */
.form-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 2rem 1.5rem;
    color: white;
    text-align: center;
}

.form-main-title {
    margin-bottom: 0.5rem;
}

.title-en {
    font-size: 1.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.title-ar {
    font-size: 1.3rem;
    display: block;
    opacity: 0.9;
}

.form-subtitle {
    margin-top: 0.5rem;
}

.subtitle-en, .subtitle-ar {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Form Fields */
.improved-contact-form {
    padding: 2rem 1.5rem;
}

.form-field {
    margin-bottom: 1.8rem;
}

.field-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.field-icon {
    color: var(--primary-orange);
    font-size: 1rem;
    width: 20px;
}

.label-en {
    font-size: 1rem;
    color: var(--dark-gray);
}

.label-ar {
    font-size: 0.95rem;
    color: var(--primary-orange);
}

.required-star {
    color: #ff4444;
    font-size: 1.2rem;
    line-height: 1;
}

/* Input Fields */
.field-input,
.field-select,
.field-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark-gray);
}

/* Larger touch target for mobile */
@media (max-width: 768px) {
    .field-input,
    .field-select,
    .field-textarea {
        padding: 1.2rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.field-input:hover,
.field-select:hover,
.field-textarea:hover {
    border-color: var(--secondary-orange);
}

/* Select Field Styling */
.field-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

/* Optgroup styling */
.field-select optgroup {
    font-weight: 600;
    color: var(--primary-orange);
    background: var(--light-orange);
}

/* Textarea */
.field-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Field Hint */
.field-hint {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #666;
    padding-left: 0.5rem;
}

/* Submit Button */
.improved-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
    margin-top: 1rem;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-content i {
    font-size: 1.3rem;
    animation: fly 2s infinite;
}

@keyframes fly {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.btn-en {
    font-size: 1.2rem;
}

.btn-ar {
    font-size: 1.1rem;
    opacity: 0.9;
}

.improved-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
}

.improved-submit-btn:active {
    transform: translateY(-2px);
}

/* Form Footer */
.form-footer {
    padding: 1.5rem;
    background: var(--light-orange);
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.badge-en, .badge-ar {
    display: inline-block;
}

.badge-ar {
    color: var(--primary-orange);
    margin-left: 0.3rem;
}

/* ===== MOBILE RESPONSIVE ENHANCEMENTS ===== */

/* Small Mobile */
@media (max-width: 480px) {
    .form-header {
        padding: 1.5rem 1rem;
    }
    
    .title-en {
        font-size: 1.5rem;
    }
    
    .title-ar {
        font-size: 1.1rem;
    }
    
    .improved-contact-form {
        padding: 1.5rem 1rem;
    }
    
    .field-label {
        flex-wrap: wrap;
        gap: 0.2rem;
    }
    
    .label-en, .label-ar {
        font-size: 0.9rem;
    }
    
    .field-input,
    .field-select,
    .field-textarea {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .btn-content {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-en, .btn-ar {
        font-size: 1rem;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .title-en {
        font-size: 1.3rem;
    }
    
    .title-ar {
        font-size: 1rem;
    }
    
    .field-label {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .field-icon {
        display: none;
    }
    
    .field-input,
    .field-select,
    .field-textarea {
        padding: 0.9rem;
        font-size: 14px;
    }
    
    .improved-submit-btn {
        padding: 1rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .field-input,
    .field-select,
    .field-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .improved-submit-btn {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .field-select {
    background-position: left 1rem center;
}

[dir="rtl"] .field-icon {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* ===== LOCATION SECTION - YANBU EXACT LOCATION ===== */

.location-section {
    padding: 4rem 5%;
    background: var(--light-orange);
    width: 100%;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.location-title {
    text-align: center;
    margin-bottom: 3rem;
}

.location-title .title-en {
    display: block;
    color: var(--dark-gray);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-title .title-ar {
    display: block;
    color: var(--primary-orange);
    font-size: 1.8rem;
}

/* Address Card */
.address-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 107, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.address-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon i {
    font-size: 2.5rem;
    color: white;
}

.address-details {
    flex: 1;
    min-width: 300px;
}

.address-details h3 {
    margin-bottom: 1rem;
}

.address-details h3 .address-en {
    display: block;
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.address-details h3 .address-ar {
    display: block;
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.address-line {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.address-line .line-en {
    display: block;
    color: var(--dark-gray);
    font-size: 1rem;
}

.address-line .line-ar {
    display: block;
    color: var(--primary-orange);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

/* Direction Button */
.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 25px;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.direction-btn:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.direction-btn i {
    font-size: 1.2rem;
}

.direction-btn .btn-ar {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Map */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 3px solid white;
    height: 450px;
}

.google-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .location-title .title-en {
        font-size: 2rem;
    }
    
    .location-title .title-ar {
        font-size: 1.5rem;
    }
    
    .address-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .address-details {
        min-width: 100%;
    }
    
    .direction-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .location-section {
        padding: 2rem 4%;
    }
    
    .location-title .title-en {
        font-size: 1.6rem;
    }
    
    .location-title .title-ar {
        font-size: 1.2rem;
    }
    
    .address-icon {
        width: 60px;
        height: 60px;
    }
    
    .address-icon i {
        font-size: 2rem;
    }
    
    .address-details h3 .address-en {
        font-size: 1.1rem;
    }
    
    .address-details h3 .address-ar {
        font-size: 0.95rem;
    }
    
    .address-line .line-en {
        font-size: 0.9rem;
    }
    
    .address-line .line-ar {
        font-size: 0.85rem;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .direction-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* ===== TEAM SECTION - WITHOUT IMAGES ===== */

.team-section {
    padding: 4rem 5%;
    background: var(--light-orange);
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.team-card:hover::before {
    transform: translateX(100%);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

/* Team Icon */
.team-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.4s ease;
}

.team-card:hover .team-icon {
    transform: scale(1.1) rotate(360deg);
}

.team-icon i {
    font-size: 3rem;
    color: white;
}

/* Team Name */
.team-name {
    margin-bottom: 1rem;
}

.name-en {
    display: block;
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.name-ar {
    display: block;
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: normal;
}

/* Team Role */
.team-role {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 107, 0, 0.2);
}

.role-en {
    display: block;
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.role-ar {
    display: block;
    color: var(--primary-orange);
    font-size: 0.9rem;
}

/* Team Experience */
.team-exp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.team-exp i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.exp-en {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.exp-ar {
    color: var(--primary-orange);
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .team-section {
        padding: 3rem 4%;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-icon {
        width: 80px;
        height: 80px;
    }
    
    .team-icon i {
        font-size: 2.5rem;
    }
    
    .name-en {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 1.8rem 1.2rem;
    }
    
    .team-icon {
        width: 70px;
        height: 70px;
    }
    
    .team-icon i {
        font-size: 2rem;
    }
    
    .name-en {
        font-size: 1.1rem;
    }
    
    .exp-en {
        font-size: 0.9rem;
    }
    
    .exp-ar {
        font-size: 0.8rem;
    }
}

/* ===== CLEAN PROFESSIONAL ARABIC FONTS - ONLY CSS ===== */

/* Google Fonts Import - Cleanest Arabic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&family=Almarai:wght@300;400;700;800&family=Cairo:wght@300;400;500;600;700&family=El+Messiri:wght@400;500;600;700&family=Markazi+Text:wght@400;500;600;700&display=swap');

/* OPTION 1: Tajawal - Cleanest, Most Professional (Recommended) */
.arabic-tajawal {
    font-family: 'Tajawal', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
}

/* OPTION 2: Almarai - Very Clean, Newspaper Style */
.arabic-almarai {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* OPTION 3: Cairo - Elegant & Professional */
.arabic-cairo {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

/* OPTION 4: El Messiri - Unique & Clean */
.arabic-messiri {
    font-family: 'El Messiri', sans-serif;
    font-weight: 500;
    line-height: 1.8;
}

/* OPTION 5: Markazi Text - Very Clean Readable */
.arabic-markazi {
    font-family: 'Markazi Text', serif;
    font-weight: 400;
    line-height: 1.6;
}

/* ===== APPLY TO ALL ARABIC TEXT AUTOMATICALLY ===== */

/* Method 1: Target all spans with orange color (your current HTML pattern) */
span[style*="color: var(--primary)"]:not([class*="en"]):not([class*="English"]),
span[style*="color: var(--primary-orange)"]:not([class*="en"]):not([class*="English"]),
span[style*="color: #ff6b00"]:not([class*="en"]):not([class*="English"]) {
    font-family: 'Tajawal', 'Almarai', 'Cairo', sans-serif !important;
    font-weight: 500 !important;
    font-size: inherit !important;
    line-height: 1.7 !important;
    letter-spacing: 0 !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Method 2: Target any element containing Arabic text pattern */
[class*="ar"]:not([class*="en"]),
[lang="ar"],
*:lang(ar) {
    font-family: 'Tajawal', 'Almarai', 'Cairo', sans-serif !important;
}

/* Method 3: Target spans that are likely Arabic (after slash) */
h2 span:last-child,
h3 span:last-child,
p span:last-child,
.section-title span,
.card h3 span,
.btn span:last-child {
    font-family: 'Tajawal', 'Almarai', 'Cairo', sans-serif !important;
    font-weight: 500;
}

/* ===== SPECIFIC WEIGHTS FOR DIFFERENT ELEMENTS ===== */

/* Headings Arabic */
.section-title span[style*="color: var(--primary)"] {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
}

/* Card Titles Arabic */
.card h3 span {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-top: 0.3rem;
    display: block;
}

/* Button Arabic Text */
.btn span[style*="color: var(--primary)"],
.btn span:last-child {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
}

/* Footer Arabic */
.footer-section span[style*="color: var(--primary)"] {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

/* Contact Info Arabic */
.contact-line span:last-child {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 400 !important;
}

/* Hero Section Arabic */
.hero span[style*="color: var(--primary)"] {
    font-family: 'Tajawal', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title span[style*="color: var(--primary)"] {
        font-size: 1.5rem !important;
    }
    
    .hero span[style*="color: var(--primary)"] {
        font-size: 1.6rem !important;
    }
    
    span[style*="color: var(--primary)"]:not([class*="en"]) {
        font-size: 0.95rem !important;
    }
}

/* ===== CLEAN RENDERING ===== */
* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* ===== EXPERIENCE STATS - PERFECTLY CENTERED ===== */

.experience-stats {
    width: 100%;
    padding: 3rem 5%;
    background: var(--light-orange);
    text-align: center;
}

/* Section Subtitle - Centered */
.section-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
}

.text-center {
    text-align: center !important;
}

.subtitle-en {
    display: block;
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.subtitle-ar {
    display: block;
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: 400;
}

/* Stats Grid - Perfectly Centered */
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;  /* This centers the entire grid */
    padding: 0 1rem;
}

/* Stat Item - Center Content */
.stat-item {
    flex: 0 1 auto;
    min-width: 180px;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,107,0,0.1);
    transition: all 0.3s ease;
    text-align: center;  /* Center all text inside */
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center horizontally */
    justify-content: center;  /* Center vertically */
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255,107,0,0.15);
    border-color: var(--primary-orange);
}

/* Stat Number - Centered */
.stat-number {
    display: block;
    color: var(--primary-orange);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    text-align: center;
}

/* Stat Text Container - Centered */
.stat-text {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center items horizontally */
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    text-align: center;
}

/* English Text - Centered */
.stat-en {
    display: block;
    color: var(--dark-gray);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* Arabic Text - Centered */
.stat-ar {
    display: block;
    color: var(--primary-orange);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
    border-top: 1px dashed rgba(255,107,0,0.2);
    padding-top: 0.3rem;
    margin-top: 0.2rem;
    width: 100%;  /* Full width for border */
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
    
    .subtitle-en {
        font-size: 1.8rem;
    }
    
    .subtitle-ar {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .experience-stats {
        padding: 2rem 4%;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-en {
        font-size: 0.95rem;
    }
    
    .stat-ar {
        font-size: 0.85rem;
    }
    
    .subtitle-en {
        font-size: 1.6rem;
    }
    
    .subtitle-ar {
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .stat-item {
        max-width: 240px;
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
/* ===== FIXED LOCATION BUTTON ===== */

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    min-height: 380px; /* Enough height for button */
}

.location-details {
    margin: 1rem 0;
    width: 100%;
    flex: 1;
}

.location-line {
    font-size: 0.95rem;
    margin: 0.5rem 0;
    color: var(--dark-gray);
    line-height: 1.5;
}

.location-line strong {
    color: var(--primary-orange);
}

/* FIXED LOCATION BUTTON - Ab dikhega */
.location-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    background: var(--primary-orange) !important;
    color: white !important;
    padding: 14px 20px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    width: 100% !important;
    margin-top: 1rem !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(255,107,0,0.3) !important;
}

.location-btn:hover {
    background: var(--secondary-orange) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255,107,0,0.4) !important;
}

.location-btn i {
    font-size: 1.2rem !important;
    color: white !important;
    margin: 0 !important;
}

.location-btn:hover i {
    transform: translateX(5px) !important;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}

.btn-en {
    font-size: 1rem;
    font-weight: 600;
}

.btn-ar {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Make sure all cards have equal height */
.info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;
    justify-content: space-between;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .location-card {
        min-height: 350px;
    }
    
    .location-btn {
        padding: 12px 15px !important;
    }
    
    .btn-en {
        font-size: 0.95rem;
    }
    
    .btn-ar {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .location-btn {
        padding: 12px 10px !important;
    }
    
    .btn-text {
        line-height: 1.2;
    }
}