/* CSS Variables */
:root {
    --primary-color: #00a651;
    --secondary-color: #fcb811;
    --accent-color: #fcb811;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 166, 81, 0.15);
    --shadow-hover: 0 15px 40px rgba(0, 166, 81, 0.25);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(0, 166, 81, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: var(--transition);
    max-width: 100%;
    overflow: hidden;
}

.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logo-english {
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-size: 1em;
    color: var(--primary-color);
}

.logo-separator {
    color: var(--primary-color);
    opacity: 0.3;
    font-weight: 300;
    font-size: 1.1em;
    margin: 0;
    line-height: 1;
    vertical-align: middle;
}

.arabic-name {
    font-family: 'Arial', 'Tahoma', 'Segoe UI', 'Arabic Typesetting', 'Noto Sans Arabic', sans-serif;
    font-weight: 500;
    font-size: 0.9em;
    color: var(--primary-color);
    opacity: 0.85;
    letter-spacing: 0.5px;
    font-style: normal;
    direction: rtl;
    unicode-bidi: embed;
    white-space: nowrap;
    line-height: 1.2;
    vertical-align: middle;
}

.logo .arabic-name {
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 0.85em;
    font-weight: 500;
}

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

.nav-menu li {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    display: block;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 166, 81, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 36px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 166, 81, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
    margin-left: 10px;
}

/* Special gradient for Deals button */
.nav-menu li.mobile-deals-btn .nav-link,
a[href*="deals.html"].nav-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f0a500 25%, #ffc107 50%, #f0a500 75%, var(--secondary-color) 100%) !important;
    background-size: 200% 100% !important;
    animation: gradientShift 3s ease infinite !important;
    box-shadow: 0 4px 20px rgba(252, 184, 17, 0.5) !important;
    border: 2px solid rgba(252, 184, 17, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.nav-menu li.mobile-deals-btn .nav-link::before,
a[href*="deals.html"].nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-menu li.mobile-deals-btn .nav-link:hover::before,
a[href*="deals.html"].nav-cta:hover::before {
    left: 100%;
}

.nav-menu li.mobile-deals-btn .nav-link:hover,
a[href*="deals.html"].nav-cta:hover {
    background: linear-gradient(135deg, #f0a500, var(--secondary-color), #f0a500) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 25px rgba(252, 184, 17, 0.6) !important;
    border-color: var(--secondary-color) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #008a44, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
    color: var(--white) !important;
}

/* Special gradient for Deals button - Desktop */
.nav-menu li.mobile-deals-btn .nav-link,
a[href*="deals.html"].nav-cta {
    background: linear-gradient(135deg, var(--secondary-color), #f0a500, var(--secondary-color)) !important;
    background-size: 200% 100% !important;
    animation: gradientShift 3s ease infinite !important;
    box-shadow: 0 4px 20px rgba(252, 184, 17, 0.5) !important;
    border: 2px solid rgba(252, 184, 17, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.nav-menu li.mobile-deals-btn .nav-link::before,
a[href*="deals.html"].nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-menu li.mobile-deals-btn .nav-link:hover::before,
a[href*="deals.html"].nav-cta:hover::before {
    left: 100%;
}

.nav-menu li.mobile-deals-btn .nav-link:hover,
a[href*="deals.html"].nav-cta:hover {
    background: linear-gradient(135deg, #f0a500 0%, var(--secondary-color) 25%, #ffc107 50%, var(--secondary-color) 75%, #f0a500 100%) !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 25px rgba(252, 184, 17, 0.6) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
    transition: var(--transition);
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--text-color);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0.6 !important;
    z-index: 1;
    animation: heroBackgroundZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBackgroundZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 166, 81, 0.1) 35%, rgba(252, 184, 17, 0.08) 55%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 166, 81, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 184, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 166, 81, 0.08) 0%, transparent 50%);
    z-index: 2;
    animation: patternMove 15s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px);
    }
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(252, 184, 17, 0.1));
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.2), rgba(252, 184, 17, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out 0.3s both;
    box-shadow: 0 8px 32px rgba(0, 166, 81, 0.3);
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 166, 81, 0.3);
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    line-height: 1.2;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
}

.hero-title-main {
    background: linear-gradient(135deg, #ffffff 0%, rgba(252, 184, 17, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.6;
}

.hero-name-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: nowrap;
}

.hero-title .logo-separator {
    color: rgba(255, 255, 255, 0.6);
    opacity: 0.7;
    font-size: 0.5em;
    font-weight: 200;
    line-height: 1;
    vertical-align: middle;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.hero-title .arabic-name {
    font-size: 0.45em;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(252, 184, 17, 0.4);
    letter-spacing: 1px;
    opacity: 0.98;
    white-space: nowrap;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.7s both;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-subtitle i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.9s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn-primary::before,
.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn-primary:hover::before,
.hero-btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary i,
.hero-btn-secondary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i,
.hero-btn-secondary:hover i {
    transform: rotate(15deg) scale(1.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.3s both;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.3);
    border-color: var(--primary-color);
}

.hero-feature i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeInUp 1s ease-out 1.5s both, bounce 2s infinite 2s;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
}

.scroll-indicator:hover {
    color: var(--secondary-color);
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    font-weight: 600;
    color: inherit;
    display: inline-block;
}

.btn i {
    transition: transform 0.3s ease;
    color: inherit;
    font-size: 1rem;
}

.btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #008a44, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(252, 184, 17, 0.1));
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.2);
    font-weight: 600;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

/* Ensure buttons in light sections are readable */
.reviews .btn-secondary,
.contact .btn-secondary {
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    color: var(--white);
    border-color: var(--primary-color);
}

.reviews .btn-secondary:hover,
.contact .btn-secondary:hover {
    background: linear-gradient(135deg, #008a44, var(--primary-color));
    color: var(--white);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.15), rgba(252, 184, 17, 0.15));
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 166, 81, 0.2);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.section-tag:hover::before {
    left: 100%;
}

.section-title {
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    line-height: 1.3;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.section-name-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: nowrap;
}

.section-title .logo-separator {
    color: var(--text-light);
    opacity: 0.35;
    font-weight: 200;
    font-size: 1.1em;
    line-height: 1;
    vertical-align: middle;
}

.section-title .arabic-name {
    font-size: 0.7em;
    color: var(--text-light);
    font-weight: 400;
    opacity: 0.75;
    white-space: nowrap;
    line-height: 1.2;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-tagline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(252, 184, 17, 0.1));
    border-left: 4px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 166, 81, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.about-tagline:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 166, 81, 0.2);
}

.tagline-arabic {
    font-family: 'Arial', 'Tahoma', 'Segoe UI', 'Arabic Typesetting', 'Noto Sans Arabic', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    direction: rtl;
    text-align: right;
    line-height: 1.6;
}

.tagline-english {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(0, 166, 81, 0.05));
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 166, 81, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(0, 166, 81, 0.12));
}

.feature-icon-wrapper {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.35);
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.5);
}

.feature-card:hover .feature-icon-wrapper::after {
    opacity: 0.3;
}

.feature-content h4 {
    margin: 0 0 5px 0;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 600;
}

.feature-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

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

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: 28% center;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 166, 81, 0.2);
    transition: all 0.5s ease;
    filter: brightness(1);
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(252, 184, 17, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.image-wrapper:hover::before {
    opacity: 1;
}

.image-wrapper:hover .about-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.image-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.5);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-badge i {
    font-size: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--light-color);
    align-items: stretch;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(252, 184, 17, 0.1));
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 166, 81, 0.2);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.stat-item:hover::before {
    width: 200px;
    height: 200px;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 166, 81, 0.35);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    color: var(--primary-color);
    line-height: 1.2;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    line-height: 1.4;
    display: block;
    text-align: center;
}

/* Menu Section */
.menu {
    background: var(--light-color);
    padding: 100px 0;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(0, 166, 81, 0.05));
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    border: 2px solid rgba(0, 166, 81, 0.1);
}

.category-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.1);
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
    border-color: var(--primary-color);
}

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

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 166, 81, 0.08);
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 166, 81, 0.3);
    border-color: var(--primary-color);
}

.menu-item.hidden {
    display: none !important;
}

.menu-item-header-gradient {
    width: 100%;
    min-height: 130px;
    padding: 28px 130px 28px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.menu-item-header-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.9), rgba(252, 184, 17, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-header-gradient::before {
    opacity: 1;
}

.menu-item-header-gradient h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    z-index: 1;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-item-header-gradient .arabic-name {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 8px;
    font-family: 'Arial', 'Tahoma', 'Segoe UI', 'Arabic Typesetting', 'Noto Sans Arabic', sans-serif;
    direction: rtl;
    unicode-bidi: embed;
    letter-spacing: 0.3px;
    line-height: 1.4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    margin-top: 4px;
}

.menu-item-header-gradient .menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    max-width: calc(100% - 30px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--white);
}

.menu-item-header {
    display: none;
}

.menu-badge {
    background: linear-gradient(135deg, var(--accent-color), #f0a500);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(252, 184, 17, 0.3);
}

.menu-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.95rem;
    min-height: 2.4em;
}

.menu-price {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: auto;
    font-family: 'Playfair Display', serif;
    padding-top: 18px;
    border-top: 2px solid var(--light-color);
    letter-spacing: 0.5px;
}

/* Specialties Section */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialty-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(0, 166, 81, 0.05));
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 166, 81, 0.12);
    border: 2px solid rgba(0, 166, 81, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.specialty-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.specialty-category:hover::before {
    transform: scaleX(1);
}

.specialty-category:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 166, 81, 0.25);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(0, 166, 81, 0.08));
}

.specialty-category h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.specialty-category:hover h3 {
    color: var(--primary-color);
}

.specialty-category h3 i {
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.specialty-category:hover h3 i {
    transform: rotate(15deg) scale(1.1);
    color: var(--secondary-color);
}

.specialty-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialty-category ul li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-category ul li:last-child {
    border-bottom: none;
}

.specialty-category ul li .arabic-name {
    color: var(--text-light);
    font-size: 0.9rem;
    direction: rtl;
    unicode-bidi: embed;
}

.specialty-badge {
    background: linear-gradient(135deg, var(--secondary-color), #e6a500);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(252, 184, 17, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.specialty-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(252, 184, 17, 0.6);
}

.specialties-cta {
    margin-top: 60px;
}

/* Responsive Styles */

/* Large Tablets and Small Desktops */
.services {
    background: var(--white);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(0, 166, 81, 0.05));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 166, 81, 0.25);
    border-color: var(--primary-color);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    color: var(--white);
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(0, 166, 81, 0.4);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 166, 81, 0.5);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.service-card.featured:hover .service-icon {
    transform: rotate(-10deg) scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-card.featured .service-features li {
    color: var(--white);
}

.service-card.featured .service-features li i {
    color: var(--white);
}

/* Reviews Section */
.reviews {
    background: var(--light-color);
    padding: 100px 0;
}

.google-reviews-link {
    margin-top: 20px;
    margin-bottom: 40px;
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.review-card:hover::before {
    transform: scaleY(1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 166, 81, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reviewer-avatar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.review-card:hover .reviewer-avatar::after {
    opacity: 0.2;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}

.review-stars i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(255, 193, 7, 0.2));
}

.review-card:hover .review-stars i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.4));
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-source i {
    color: #4285f4;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.3), rgba(252, 184, 17, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 166, 81, 0.3);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(1);
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

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

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(0, 166, 81, 0.05));
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 166, 81, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 166, 81, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.info-card:hover::before {
    width: 300px;
    height: 300px;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 166, 81, 0.3);
    border-color: var(--primary-color);
}

.info-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.12), rgba(252, 184, 17, 0.12));
    width: 90px;
    height: 90px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

.info-card i::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.info-card:hover i {
    transform: rotate(15deg) scale(1.15);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.4);
}

.info-card:hover i::after {
    opacity: 0.3;
}

.info-card h3,
.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-link {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px 24px;
}

.map-link .btn {
    margin: 0 auto;
}

.map-link-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 166, 81, 0.3);
    z-index: 10;
    border: 2px solid var(--primary-color);
}

.map-link-btn:hover {
    background: #008a44;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 166, 81, 0.4);
    color: var(--white) !important;
    border-color: #008a44;
}

.map-link-btn i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    max-width: 400px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.3;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h3 .logo-english {
    color: var(--primary-color);
    font-size: 1em;
}

.footer-section h3 .logo-separator {
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.5;
    font-weight: 300;
    font-size: 1em;
    line-height: 1;
    vertical-align: middle;
}

.footer-section h3 .arabic-name {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0.9;
    white-space: nowrap;
    line-height: 1.2;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-section ul li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: var(--transition);
    color: var(--primary-color);
}

.footer-section ul li a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
    color: var(--white);
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    position: relative;
    font-weight: 600;
}

.floating-call {
    background: linear-gradient(135deg, var(--primary-color), #008a44);
    animation: pulse 2s infinite;
    color: var(--white);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: var(--white);
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.floating-btn-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-weight: 500;
}

.floating-btn-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark-color);
}

.floating-btn:hover .floating-btn-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(0, 166, 81, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(0, 166, 81, 0);
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe, video {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll on mobile only */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .container, section, .navbar {
        max-width: 100%;
        overflow-x: hidden;
    }

    .navbar {
        overflow-x: hidden;
    }

    .nav-wrapper {
        overflow-x: hidden;
        max-width: 100%;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    html, body {
        -webkit-overflow-scrolling: touch;
    }
    
    .btn,
    .nav-link,
    .category-btn,
    .floating-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .menu-item:hover,
    .service-card:hover,
    .review-card:hover,
    .info-card:hover,
    .specialty-category:hover {
        transform: none;
    }
    
    /* Optimize scroll performance on touch devices */
    * {
        -webkit-tap-highlight-color: transparent;
    }
}

/* Smooth scrolling for all devices */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Desktop Styles - Ensure proper layout */
@media (min-width: 1201px) {
    html, body {
        overflow-x: visible;
        width: 100%;
    }
    
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .navbar {
        width: 100%;
    }
    
    section {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow-y: visible !important;
        z-index: auto !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: none !important;
        margin: 0 !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 0 !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow-y: visible !important;
        z-index: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: none !important;
        margin: 0 !important;
    }
    
    .nav-menu li {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
    }
    
    .nav-menu li:last-child,
    .nav-menu li:nth-last-child(2),
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        display: block !important;
    }
    
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        margin-left: 0 !important;
    }
    
    .nav-link.nav-cta {
        margin-left: 0 !important;
        margin-top: 0 !important;
        width: auto !important;
        text-align: center !important;
        padding: 10px 20px !important;
        background: linear-gradient(135deg, var(--primary-color), #008a44) !important;
        color: var(--white) !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
    }
    
    .nav-link.nav-cta:hover {
        background: linear-gradient(135deg, #008a44, var(--primary-color)) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3) !important;
    }
    
    .container {
        padding: 0 25px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .section-description {
        font-size: 1.05rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-tagline {
        padding: 25px 20px;
    }
    
    .tagline-arabic {
        font-size: 1.2rem;
    }
    
    .tagline-english {
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .about-img {
        height: 400px;
    }
    
    /* Specialties Section */
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .specialty-category {
        padding: 25px;
    }
    
    .specialty-category h3 {
        font-size: 1.3rem;
    }
    
    .specialties-cta {
        padding: 40px 30px !important;
    }
    
    .specialties-cta h3 {
        font-size: 1.7rem !important;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        padding: 35px 30px;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    /* Reviews Section */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    /* Contact Section */
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

/* Mobile and Small Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Navigation */
    .nav-wrapper {
        padding: 0.8rem 0;
        gap: 10px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
    }

    .logo h1 {
        font-size: 1.2rem;
        gap: 6px;
        white-space: nowrap;
    }
    
    .logo .arabic-name {
        font-size: 0.75em;
    }

    .hamburger {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 6px !important;
        align-items: center !important;
        flex-shrink: 0;
        min-width: 0;
    }
    
    .nav-menu li {
        display: none !important;
        flex-shrink: 0;
    }
    
    .nav-menu li:last-child,
    .nav-menu li:nth-last-child(2),
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        margin-left: 0 !important;
    }
    
    .nav-menu li.mobile-deals-btn .nav-link,
    a[href*="deals.html"].nav-cta {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #f0a500 25%, #ffc107 50%, #f0a500 75%, var(--secondary-color) 100%) !important;
        background-size: 200% 100% !important;
        animation: gradientShift 3s ease infinite !important;
        box-shadow: 0 4px 20px rgba(252, 184, 17, 0.5) !important;
        border: 2px solid rgba(252, 184, 17, 0.4) !important;
    }
    
    .nav-menu li.mobile-deals-btn .nav-link:hover,
    a[href*="deals.html"].nav-cta:hover {
        background: linear-gradient(135deg, #f0a500 0%, var(--secondary-color) 25%, #ffc107 50%, var(--secondary-color) 75%, #f0a500 100%) !important;
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 6px 25px rgba(252, 184, 17, 0.6) !important;
        border-color: var(--secondary-color) !important;
    }
    
    .nav-link.nav-cta {
        margin-left: 0 !important;
        margin-top: 0 !important;
        width: auto !important;
        text-align: center !important;
        padding: 8px 14px !important;
        background: linear-gradient(135deg, var(--primary-color), #008a44) !important;
        color: var(--white) !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        font-size: 0.85rem !important;
        min-height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
    }
    
    .nav-link.nav-cta:hover {
        background: linear-gradient(135deg, #008a44, var(--primary-color)) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3) !important;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
        padding-top: 80px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        gap: 8px;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .hero-title-main {
        font-size: 1em;
    }

    .hero-title .arabic-name {
        font-size: 0.4em;
        display: inline-block;
    }

    .hero-name-wrapper {
        display: flex;
        align-items: baseline;
        gap: 6px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        gap: 10px;
    }
    
    .hero-subtitle i {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 30px;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 44px;
        margin: 0 auto;
    }
    
    .hero-features {
        gap: 15px;
        margin-top: 20px;
        padding: 0 15px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .hero-feature {
        padding: 10px 18px;
        font-size: 0.85rem;
        flex: 1;
        min-width: 140px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-feature i {
        font-size: 1rem;
    }
    
    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 0.9rem;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
    }
    
    .scroll-indicator i {
        font-size: 1rem;
    }
    
    .scroll-indicator:hover {
        transform: translateX(-50%) translateY(-5px) !important;
    }

    /* Section Titles */
    .section-title {
        gap: 6px;
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .section-title .arabic-name {
        font-size: 0.6em;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .stat-item {
        padding: 15px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 0.7rem;
        line-height: 1.4;
        text-align: center;
    }

    .tagline-arabic {
        font-size: 1.1rem;
    }

    .tagline-english {
        font-size: 0.95rem;
    }

    .about-img {
        min-height: 280px;
        height: auto;
    }
    
    .feature-card {
        padding: 18px;
    }
    
    .feature-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Menu Section */
    .menu-categories {
        gap: 8px;
        padding: 15px;
        position: relative;
        top: 0;
        margin-bottom: 30px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .menu-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .menu-categories::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item-header-gradient {
        min-height: 110px;
        padding: 22px 110px 22px 22px;
    }
    
    .menu-item-header-gradient h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        gap: 5px;
    }
    
    .menu-item-header-gradient .arabic-name {
        font-size: 0.8rem;
        padding: 3px 8px;
        margin-top: 3px;
    }
    
    .menu-item-header-gradient .menu-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.7rem;
        max-width: calc(100% - 24px);
    }
    
    .menu-item-content {
        padding: 22px;
        gap: 14px;
    }
    
    .menu-price {
        font-size: 1.4rem;
        padding-top: 16px;
    }

    /* Specialties Section */
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .specialty-category {
        padding: 20px;
    }
    
    .specialty-category h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .specialty-category ul li {
        padding: 10px 0;
        font-size: 0.95rem;
    }
    
    .specialty-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .specialties-cta {
        margin-top: 40px;
        padding: 30px 20px !important;
    }
    
    .specialties-cta h3 {
        font-size: 1.5rem !important;
    }
    
    .specialties-cta p {
        font-size: 1rem !important;
    }
    
    .google-reviews-link {
        margin-top: 15px;
        margin-bottom: 30px;
    }
    
    .google-reviews-link .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
    }

    /* Reviews Section */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
        border-radius: 10px;
    }

    .reviewer-avatar {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .reviewer-name {
        font-size: 0.9rem;
    }
    
    .review-date {
        font-size: 0.75rem;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .review-source {
        font-size: 0.75rem;
    }

    /* Contact Section */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card i {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .info-card h3,
    .info-card h4 {
        font-size: 1.2rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-link {
        text-align: center;
        padding: 0 15px;
    }
    
    .map-link .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .map-link-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Footer */
    .footer {
        padding: 60px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-section:first-child {
        max-width: 100%;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        min-width: 44px;
        min-height: 44px;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        min-width: 55px;
        min-height: 55px;
    }

    .floating-btn-tooltip {
        display: none;
    }
}

/* Small Mobile Devices */
@media (max-width: 568px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }

    /* Navigation */
    .nav-wrapper {
        padding: 0.7rem 0;
        gap: 8px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
    }

    .logo h1 {
        font-size: 1rem;
        gap: 5px;
        white-space: nowrap;
    }
    
    .logo .arabic-name {
        font-size: 0.7em;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 5px !important;
        align-items: center !important;
        flex-shrink: 0;
        min-width: 0;
    }
    
    .nav-menu li {
        display: none !important;
        flex-shrink: 0;
    }
    
    .nav-menu li:last-child,
    .nav-menu li:nth-last-child(2),
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        margin-left: 0 !important;
    }
    
    .nav-menu li.mobile-deals-btn .nav-link,
    a[href*="deals.html"].nav-cta {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #f0a500 25%, #ffc107 50%, #f0a500 75%, var(--secondary-color) 100%) !important;
        background-size: 200% 100% !important;
        animation: gradientShift 3s ease infinite !important;
        box-shadow: 0 4px 20px rgba(252, 184, 17, 0.5) !important;
        border: 2px solid rgba(252, 184, 17, 0.4) !important;
    }
    
    .nav-menu li.mobile-deals-btn .nav-link:hover,
    a[href*="deals.html"].nav-cta:hover {
        background: linear-gradient(135deg, #f0a500 0%, var(--secondary-color) 25%, #ffc107 50%, var(--secondary-color) 75%, #f0a500 100%) !important;
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 6px 25px rgba(252, 184, 17, 0.6) !important;
        border-color: var(--secondary-color) !important;
    }
    
    .nav-link.nav-cta {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        background: linear-gradient(135deg, var(--primary-color), #008a44) !important;
        color: var(--white) !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        min-height: 38px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
    }
    
    .nav-link.nav-cta:hover {
        background: linear-gradient(135deg, #008a44, var(--primary-color)) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3) !important;
    }

    /* Hero */
    .hero {
        min-height: 550px;
        padding-top: 70px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        gap: 6px;
        margin-bottom: 1rem;
    }
    
    .hero-title-main {
        font-size: 1em;
    }
    
    .hero-title .arabic-name {
        font-size: 0.38em;
    }

    .hero-subtitle {
        font-size: 1rem;
        gap: 8px;
    }
    
    .hero-subtitle i {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        margin-bottom: 25px;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-features {
        gap: 10px;
        margin-top: 15px;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
    }
    
    .hero-feature {
        padding: 10px 16px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-feature i {
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
        font-size: 0.85rem;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto;
        margin: 0 auto;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem;
    }
    
    .scroll-indicator i {
        font-size: 0.9rem;
    }
    
    .scroll-indicator:hover {
        transform: translateX(-50%) translateY(-5px) !important;
    }

    /* Sections */
    .section-title {
        font-size: 1.6rem;
        gap: 5px;
    }
    
    .section-title .arabic-name {
        font-size: 0.55em;
    }
    
    .section-description {
        font-size: 0.95rem;
    }

    /* About */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 12px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .tagline-arabic {
        font-size: 1rem;
    }
    
    .tagline-english {
        font-size: 0.9rem;
    }
    
    .about-img {
        min-height: 250px;
    }
    
    .feature-card {
        padding: 15px;
        gap: 12px;
    }
    
    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature-content h4 {
        font-size: 0.95rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }

    /* Menu */
    .menu-categories {
        padding: 12px;
        gap: 6px;
    }
    
    .category-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .menu-item-header-gradient {
        min-height: 100px;
        padding: 20px 100px 20px 18px;
    }
    
    .menu-item-header-gradient h3 {
        font-size: 1.15rem;
        line-height: 1.35;
        gap: 4px;
    }
    
    .menu-item-header-gradient .arabic-name {
        font-size: 0.75rem;
        padding: 3px 7px;
        margin-top: 3px;
    }
    
    .menu-item-header-gradient .menu-badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.65rem;
        max-width: calc(100% - 20px);
    }
    
    .menu-item-content {
        padding: 18px;
        gap: 12px;
    }
    
    .menu-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .menu-price {
        font-size: 1.25rem;
        padding-top: 14px;
    }

    /* Specialties */
    .specialty-category {
        padding: 18px;
    }
    
    .specialty-category h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .specialty-category ul li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .specialties-cta {
        padding: 25px 15px !important;
    }
    
    .specialties-cta h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    
    .specialties-cta p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }
    
    .specialties-cta .btn {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }

    /* Services */
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Reviews */
    .review-card {
        padding: 18px;
        border-radius: 10px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .reviewer-name {
        font-size: 0.85rem;
    }
    
    .review-date {
        font-size: 0.7rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .review-source {
        font-size: 0.7rem;
    }

    /* Contact */
    .info-card {
        padding: 20px 18px;
    }
    
    .info-card i {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .info-card h3,
    .info-card h4 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-link {
        text-align: center;
        padding: 0 10px;
    }
    
    .map-link .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-section ul li {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
        font-size: 0.85rem;
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Extra Small Devices */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 0.9rem;
        gap: 4px;
    }
    
    .logo .arabic-name {
        font-size: 0.65em;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-wrapper {
        padding: 0.6rem 0;
        gap: 6px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 4px !important;
        align-items: center !important;
        flex-shrink: 0;
        min-width: 0;
    }
    
    .nav-menu li {
        display: none !important;
        flex-shrink: 0;
    }
    
    .nav-menu li:last-child,
    .nav-menu li:nth-last-child(2),
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-menu li.mobile-deals-btn,
    .nav-menu li.mobile-menu-btn {
        margin-left: 0 !important;
    }
    
    .nav-menu li.mobile-deals-btn .nav-link,
    a[href*="deals.html"].nav-cta {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #f0a500 25%, #ffc107 50%, #f0a500 75%, var(--secondary-color) 100%) !important;
        background-size: 200% 100% !important;
        animation: gradientShift 3s ease infinite !important;
        box-shadow: 0 4px 20px rgba(252, 184, 17, 0.5) !important;
        border: 2px solid rgba(252, 184, 17, 0.4) !important;
    }
    
    .nav-menu li.mobile-deals-btn .nav-link:hover,
    a[href*="deals.html"].nav-cta:hover {
        background: linear-gradient(135deg, #f0a500 0%, var(--secondary-color) 25%, #ffc107 50%, var(--secondary-color) 75%, #f0a500 100%) !important;
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 6px 25px rgba(252, 184, 17, 0.6) !important;
        border-color: var(--secondary-color) !important;
    }
    
    .nav-link.nav-cta {
        padding: 7px 10px !important;
        font-size: 0.75rem !important;
        background: linear-gradient(135deg, var(--primary-color), #008a44) !important;
        color: var(--white) !important;
        border-radius: 20px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        min-height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
    }
    
    .nav-link.nav-cta:hover {
        background: linear-gradient(135deg, #008a44, var(--primary-color)) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3) !important;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    
    .specialty-category,
    .service-card,
    .review-card,
    .info-card {
        padding: 15px;
    }
    
    .scroll-indicator {
        bottom: 10px;
        font-size: 0.8rem;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto;
        margin: 0 auto;
    }
    
    .scroll-indicator span {
        font-size: 0.65rem;
    }
    
    .scroll-indicator i {
        font-size: 0.85rem;
    }
    
    .scroll-indicator:hover {
        transform: translateX(-50%) translateY(-5px) !important;
    }
    
    .menu-item-header-gradient {
        min-height: 95px;
        padding: 18px 95px 18px 15px;
    }
    
    .menu-item-header-gradient h3 {
        font-size: 1.05rem;
        line-height: 1.3;
        gap: 3px;
    }
    
    .menu-item-header-gradient .arabic-name {
        font-size: 0.7rem;
        padding: 2px 6px;
        margin-top: 2px;
    }
    
    .menu-item-header-gradient .menu-badge {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 0.6rem;
        max-width: calc(100% - 16px);
    }
    
    .menu-item-content {
        padding: 16px;
        gap: 10px;
    }
    
    .menu-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .menu-price {
        font-size: 1.15rem;
        padding-top: 12px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        padding: 80px 2rem 2rem;
    }
}

/* Deals Section Styles */
.deals-section {
    background: var(--light-color);
}

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

.deal-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 166, 81, 0.08);
    height: 100%;
}

.deal-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 166, 81, 0.3);
    border-color: var(--primary-color);
}

.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #e6a500);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(252, 184, 17, 0.4);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
    white-space: nowrap;
}

.deal-card.featured-deal {
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.2);
}

.deal-card.featured-deal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 1;
}

.deal-card.premium-deal {
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(252, 184, 17, 0.2);
}

.deal-card.premium-deal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 1;
}

.deal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 35px 30px;
    padding-right: 140px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.deal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.9), rgba(252, 184, 17, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.deal-card:hover .deal-header::before {
    opacity: 1;
}

.deal-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1;
    position: relative;
    flex: 1;
    min-width: 200px;
}

.deal-price {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1;
    position: relative;
    white-space: nowrap;
}

.deal-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--white);
}

.deal-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deal-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.deal-items li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    animation: checkPulse 2s ease-in-out infinite;
}

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

.deal-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deal-serves {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.deal-serves i {
    color: var(--primary-color);
    font-size: 1rem;
}

.deals-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(252, 184, 17, 0.1));
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.1);
}

/* Responsive Deals Styles */
@media (max-width: 992px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deal-header {
        padding: 25px 20px;
        padding-right: 100px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .deal-header h3 {
        font-size: 1.4rem;
    }
    
    .deal-price {
        font-size: 1.8rem;
    }
    
    .deal-content {
        padding: 25px 20px;
    }
    
    .deal-items li {
        font-size: 0.95rem;
    }
    
    .deal-badge {
        top: 15px;
        right: 15px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    
    .deals-cta {
        padding: 30px 20px;
    }
    
    .deals-cta h3 {
        font-size: 1.5rem !important;
    }
    
    .deals-cta p {
        font-size: 1rem !important;
    }
}

@media (max-width: 568px) {
    .deal-header {
        padding: 20px 18px;
        padding-right: 90px;
    }
    
    .deal-header h3 {
        font-size: 1.3rem;
    }
    
    .deal-price {
        font-size: 1.6rem;
    }
    
    .deal-content {
        padding: 20px 18px;
    }
    
    .deal-items li {
        font-size: 0.9rem;
    }
    
    .deal-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .deals-cta {
        padding: 25px 15px;
    }
    
    .deals-cta h3 {
        font-size: 1.3rem !important;
    }
    
    .deals-cta .btn {
        width: 100%;
        max-width: 100%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-buttons,
    .scroll-indicator {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}
