/*
| AlamiHub - Main Stylesheet (v9.8 - Responsive Fix) | Version: 9.8 | Author: EL ALAMI AHMED ALAMI HUB |------------------------------------------------- | This build includes targeted fixes for the | checkout page's booking calendar to ensure it is | fully responsive on all devices.
*/

/* 1. Imports & Root Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
/* Ireland Flag Colors - Green and Orange Only */
--color-primary: #169B62; /* Green */
--color-primary-dark: #0d7a47;
--color-primary-light: #d4f4e8;
--color-secondary: #FF883E; /* Orange */
--color-secondary-dark: #e66a1f;
--color-secondary-light: #ffe8d6;
--color-accent: #FF883E;
--color-success: #169B62;
--color-warning: #FF883E;
--color-danger: #ef4444;
--color-white: #ffffff;
--color-text-dark: #0f172a;
--color-text-base: #334155;
--color-text-light: #64748b;
--color-background-light: #f8fafc;
--color-border: #e2e8f0;
--font-family-base: 'Inter', sans-serif;
--border-radius: 1.25rem;
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--shadow-lg: 0 10px 15px -3px rgba(22, 155, 98, 0.1), 0 4px 6px -4px rgba(22, 155, 98, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(22, 155, 98, 0.15), 0 10px 10px -5px rgba(22, 155, 98, 0.1);
--shadow-2xl: 0 25px 50px -12px rgba(22, 155, 98, 0.25);
}

/* Dark Mode Variables - Keep Green and Orange */
.dark {
--color-primary: #169B62; /* Keep green in dark mode */
--color-primary-dark: #0d7a47;
--color-primary-light: #d4f4e8;
--color-secondary: #FF883E; /* Keep orange in dark mode */
--color-secondary-dark: #e66a1f;
--color-secondary-light: #ffe8d6;
--color-text-dark: #f9fafb;
--color-text-base: #e5e7eb;
--color-text-light: #9ca3af;
--color-white: #1f2937;
--color-background-light: #111827;
--color-border: #374151;
}

/* Dark Mode Styles */
.dark body {
background-color: #0f172a;
color: var(--color-text-base);
}

.dark .bg-white {
background-color: #1f2937 !important;
}

.dark .bg-gray-50 {
background-color: #111827 !important;
}

.dark .text-gray-900 {
color: #f9fafb !important;
}

.dark .text-gray-800 {
color: #e5e7eb !important;
}

.dark .text-gray-700 {
color: #d1d5db !important;
}

.dark .text-gray-600 {
color: #9ca3af !important;
}

.dark .border-gray-200 {
border-color: #374151 !important;
}

.dark .shadow-lg {
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.2) !important;
}

/* 2. Base & Typography Styles */
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-family-base);
color: var(--color-text-base);
background-color: var(--color-white);
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 800;
color: var(--color-text-dark);
}
.title-accent {
display: none;
}

/* Footer Professional Styling */
footer {
position: relative;
}
.footer-social-link {
transition: transform 0.3s ease;
}
.footer-social-link:hover {
transform: translateY(-3px);
}
.footer-link {
position: relative;
padding-left: 0.5rem;
transition: padding-left 0.2s ease;
}
.footer-link:hover {
padding-left: 0.75rem;
}
.footer-link i {
transition: transform 0.2s ease;
}
.footer-link:hover i {
transform: translateX(3px);
}

/* 3. HEADER (Stable) */
#main-header {
background-color: var(--color-white);
box-shadow: var(--shadow-md);
padding: 1rem 0;
border-bottom: 1px solid var(--color-border);
transition: all 0.3s ease;
}
.dark #main-header {
background-color: #1f2937;
border-bottom-color: #374151;
}
#main-header nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-left { flex: 1 0 0; }
.header-center { display: flex; justify-content: center; gap: 1rem; }
.header-right { flex: 1 0 0; display: flex; justify-content: flex-end; align-items: center; }
.logo-link {
font-weight: 900;
font-size: 1.75rem;
color: var(--color-text-dark);
direction: ltr;
}
.logo-hub { 
color: var(--color-secondary); 
}
.dark .logo-link {
color: #f9fafb;
}
.dark .logo-hub {
color: var(--color-secondary);
}
.nav-link {
font-weight: 600;
color: var(--color-text-dark);
position: relative;
padding: 0.5rem 0.75rem;
border-radius: 0.375rem;
transition: color 0.3s ease, background-color 0.3s ease;
}
.nav-link span { position: relative; }
.nav-link span::after {
content: '';
position: absolute;
bottom: -8px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 3px;
background-color: var(--color-primary);
border-radius: 2px;
transition: width 0.3s ease;
}
.nav-link:hover span::after, .nav-link.active span::after {
width: 20px;
}
.nav-link:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.nav-link.active {
color: var(--color-primary);
}
.contact-cta {
font-size: 0.875rem;
font-weight: 600;
padding: 0.6rem 1.25rem;
border-radius: 9999px;
background: var(--color-primary);
color: var(--color-white);
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.3);
border: none;
cursor: pointer;
}
.contact-cta:hover {
background: var(--color-primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(22, 155, 98, 0.4);
}
.language-dropdown {
position: absolute;
inset-inline-end: 0;
margin-top: 0.5rem;
width: 10rem;
border-radius: var(--border-radius);
box-shadow: var(--shadow-lg);
background-color: var(--color-white);
border: 1px solid var(--color-border);
z-index: 50;
overflow: hidden;
}
.dropdown-item {
display: flex;
align-items: center;
padding: 0.75rem 1rem;
font-size: 0.875rem;
color: var(--color-text-dark);
transition: background-color 0.2s ease;
}
.dropdown-item:hover {
background-color: var(--color-background-light);
}
.dropdown-flag {
width: 1.25rem;
height: auto;
border-radius: 2px;
margin-inline-end: 0.75rem;
}

/* --- Mobile Menu (FIXED & POLISHED) --- */
.mobile-menu-button {
padding: 15px;
display: inline-block;
cursor: pointer;
background-color: transparent;
border: 0;
margin: 0;
z-index: 101;
}
.hamburger-box {
width: 24px;
height: 18px;
display: inline-block;
position: relative;
}
.hamburger-inner {
display: block;
top: 50%;
margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
width: 24px;
height: 2px;
background-color: var(--color-text-dark);
border-radius: 4px;
position: absolute;
transition: transform 0.2s ease-in-out;
}
.hamburger-inner::before, .hamburger-inner::after {
content: "";
display: block;
}
.hamburger-inner::before {
top: -8px;
}
.hamburger-inner::after {
bottom: -8px;
}
.menu-open .hamburger-inner {
transform: rotate(45deg);
}
.menu-open .hamburger-inner::before {
top: 0;
transform: rotate(-90deg);
}
.menu-open .hamburger-inner::after {
bottom: 0;
opacity: 0;
}
#mobile-menu-panel {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(4px);
z-index: 9998;
display: flex;
align-items: flex-start;
justify-content: flex-end;
padding: 0;
margin: 0;
border-radius: 0;
}
/* Mobile menu styles moved to mobile responsive section */
.mobile-lang-switcher {
border-top: 1px solid var(--color-border);
margin-top: 1rem;
padding-top: 1rem;
display: flex;
justify-content: space-around;
}

/* 4. TWO-COLUMN HERO SECTION (Final Redesign) */
.hero-section-v5 {
background: #ffffff;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
}
.dark .hero-section-v5 {
background: #0f172a;
}
.hero-grid {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 4rem;
min-height: 100vh;
padding: 2rem 0;
}
.hero-text-content {
text-align: left;
}
[dir="rtl"] .hero-text-content {
text-align: right;
}
.hero-title {
font-size: 3.5rem;
font-weight: 900;
line-height: 1.1;
color: var(--color-text-dark);
margin-bottom: 1.5rem;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--color-text-base);
max-width: 550px;
margin-bottom: 2.5rem;
}
[dir="rtl"] .hero-subtitle {
margin-left: auto;
}
[dir="ltr"] .hero-subtitle {
margin-right: auto;
}
.hero-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(22, 155, 98, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.hero-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(22, 155, 98, 0.5);
}
.hero-image-placeholder {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.placeholder-shape {
position: relative;
width: 400px;
height: 400px;
display: flex;
align-items: center;
justify-content: center;
}
.placeholder-text {
font-size: 1.5rem;
font-weight: 600;
color: var(--color-text-light);
}

/* 5. Generic Section Styles */
section {
overflow: hidden;
position: relative;
}
#services, #why-choose-us, #pricing, #other-services, #portfolio, #testimonials, #about {
padding-top: 5rem;
padding-bottom: 5rem;
transition: background-color 0.3s ease;
}
.section-bg-gray {
background-color: var(--color-background-light);
}
.dark .section-bg-gray,
.dark #services,
.dark #portfolio,
.dark #testimonials {
background-color: #111827;
}
.dark #why-choose-us,
.dark #pricing,
.dark #other-services,
.dark #about {
background-color: #0f172a;
}
#pricing {
}

/* 6. PRICING SECTION REDESIGN (Ireland Flag Colors - Professional) */
.pricing-card-new {
background: #ffffff;
border-radius: 1.25rem;
border: 2px solid #e5e7eb;
display: flex;
flex-direction: column;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
height: 100%;
}
.dark .pricing-card-new {
background: #1f2937;
border-color: #374151;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.pricing-card-new::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--color-primary);
opacity: 0;
transition: opacity 0.3s ease;
}
.pricing-card-new:hover::before {
opacity: 1;
}
.pricing-card-new:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(22, 155, 98, 0.2);
border-color: var(--color-primary);
}
.pricing-card-new.popular:hover {
transform: translateY(-14px);
box-shadow: 0 25px 60px rgba(22, 155, 98, 0.3);
}
.pricing-card-new .card-header {
padding: 2.5rem 2rem 2rem;
text-align: center;
background: #f9fafb;
border-bottom: 2px solid #e5e7eb;
position: relative;
}
.dark .pricing-card-new .card-header {
background: #111827;
border-bottom-color: #374151;
}
.pricing-card-new .card-header h3 {
font-size: 1.75rem;
margin-bottom: 0.75rem;
color: #111827;
font-weight: 800;
letter-spacing: -0.02em;
}
.dark .pricing-card-new .card-header h3 {
color: #f9fafb;
}
.pricing-card-new .card-header p {
font-size: 0.9375rem;
color: #6b7280;
min-height: 40px;
line-height: 1.6;
}
.dark .pricing-card-new .card-header p {
color: #9ca3af;
}
.pricing-card-new .card-body {
padding: 2rem;
flex-grow: 1;
background: #ffffff;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.dark .pricing-card-new .card-body {
background: #1f2937;
}
.features-list h4 {
font-size: 0.8125rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: #374151;
margin: 0 0 1.25rem 0;
}
.dark .features-list h4 {
color: #d1d5db;
}
.features-list ul {
list-style: none;
padding: 0;
margin: 0;
}
.features-list li {
display: flex;
align-items: flex-start;
margin-bottom: 0.875rem;
color: #4b5563;
font-size: 0.9375rem;
line-height: 1.6;
gap: 0.75rem;
}
.dark .features-list li {
color: #d1d5db;
}
.features-list li i {
color: var(--color-primary);
margin-top: 0.125rem;
font-size: 1rem;
flex-shrink: 0;
width: 18px;
}
.dark .features-list li i {
color: #4ade80;
}
.addon-configurator {
margin-top: 1.25rem;
padding-top: 1.25rem;
border-top: 1px solid #f3f4f6;
}
.dark .addon-configurator {
border-top-color: #374151;
}
.addon-option {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5rem 0;
position: relative;
}
.addon-link {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 1rem;
border-radius: 0.75rem;
background: rgba(22, 155, 98, 0.05);
border: 1px solid rgba(22, 155, 98, 0.2);
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
}
.addon-link:hover {
background: rgba(22, 155, 98, 0.1);
border-color: var(--color-primary);
transform: translateX(5px);
}
.addon-link.active {
background: rgba(22, 155, 98, 0.15);
border-color: var(--color-primary);
}
.addon-link-text {
font-size: 0.9rem;
color: var(--color-text-dark);
font-weight: 500;
}
.dark .addon-link-text {
color: var(--color-text-base);
}
.addon-link:hover .addon-link-text {
color: var(--color-primary);
}
.addon-label {
font-size: 0.9rem;
display: flex;
align-items: center;
}
.addon-price-tag {
font-size: 0.85rem;
font-weight: 700;
color: var(--color-primary);
background: rgba(22, 155, 98, 0.1);
padding: 0.25rem 0.75rem;
border-radius: 0.5rem;
}
.dark .addon-price-tag {
background: rgba(22, 155, 98, 0.2);
}
.page-counter {
display: flex;
align-items: center;
gap: 0.5rem;
}
.addon-option.pages {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 1.125rem;
border-radius: 0.625rem;
background: #f9fafb;
border: 2px solid #e5e7eb;
margin-top: 0.75rem;
}
.dark .addon-option.pages {
background: #1f2937;
border-color: #374151;
}
.addon-label {
font-size: 0.875rem;
color: #374151;
font-weight: 600;
line-height: 1.5;
}
.dark .addon-label {
color: #d1d5db;
}
.page-counter {
display: flex;
align-items: center;
gap: 0.875rem;
}
.page-counter .counter-btn {
background-color: var(--color-white);
color: var(--color-primary);
border: 2px solid var(--color-primary);
width: 2.5rem;
height: 2.5rem;
border-radius: 0.5rem;
font-size: 1rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
cursor: pointer;
}
.dark .page-counter .counter-btn {
background-color: #374151;
color: #4ade80;
border-color: #4ade80;
}
.page-counter .counter-btn:hover {
background-color: var(--color-primary);
color: var(--color-white);
transform: scale(1.1);
}
.dark .page-counter .counter-btn:hover {
background-color: #4ade80;
color: #1f2937;
}
.page-count {
font-weight: 800;
min-width: 2.5rem;
text-align: center;
color: #1f2937;
font-size: 1rem;
}
.dark .page-count {
color: #f9fafb;
}
.info-icon {
color: var(--color-text-light);
cursor: pointer;
margin-inline-start: 0.5rem;
z-index: 10;
}
.info-tooltip {
position: absolute;
background-color: var(--color-text-dark);
color: var(--color-white);
padding: 1rem;
border-radius: 0.5rem;
width: 280px;
z-index: 20;
bottom: 130%;
left: 50%;
transform: translateX(-50%);
font-size: 0.875rem;
text-align: left;
visibility: hidden;
opacity: 0;
transition: opacity 0.2s, visibility 0.2s;
box-shadow: var(--shadow-lg);
}
.info-tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 8px;
border-style: solid;
border-color: var(--color-text-dark) transparent transparent transparent;
}
.info-tooltip.visible {
visibility: visible;
opacity: 1;
}
.pricing-card-new .card-footer {
padding: 2rem;
text-align: center;
border-top: 2px solid #e5e7eb;
margin-top: auto;
background: #fafafa;
}
.dark .pricing-card-new .card-footer {
background: #111827;
border-top-color: #374151;
}
.total-price {
font-size: 2rem;
font-weight: 800;
color: var(--color-primary);
margin-bottom: 1rem;
line-height: 1.2;
letter-spacing: -0.02em;
}
.dark .total-price {
color: #4ade80;
}
.pricing-card-new.popular .total-price {
font-size: 2.25rem;
color: var(--color-primary);
}
.pricing-card-new .card-footer p {
font-size: 0.625rem;
color: #9ca3af;
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 600;
}
.dark .pricing-card-new .card-footer p {
color: #6b7280;
}
.pricing-button-main {
width: 100%;
background: var(--color-primary);
color: var(--color-white);
padding: 1rem 1.5rem;
border-radius: 0.625rem;
font-weight: 700;
font-size: 0.9375rem;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.3);
border: none;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.pricing-button-main:hover {
background: var(--color-primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(22, 155, 98, 0.4);
}
.pricing-button-main:active {
transform: translateY(0);
}
.pricing-card-new.popular {
transform: translateY(-10px);
border: 3px solid var(--color-primary);
position: relative;
box-shadow: 0 20px 50px rgba(22, 155, 98, 0.2);
}
.pricing-card-new.popular::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 3px;
background: var(--color-primary);
z-index: 1;
opacity: 1;
}
.pricing-card-new.popular::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 3px;
background: var(--color-secondary);
z-index: 1;
opacity: 1;
}
.pricing-card-new.popular:hover {
transform: translateY(-12px);
box-shadow: 0 20px 40px rgba(22, 155, 98, 0.2);
}
.popular .badge {
background: var(--color-primary);
color: var(--color-white);
font-weight: 600;
font-size: 0.6875rem;
padding: 0.5rem 0;
text-align: center;
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 10;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.pricing-card-new.popular .card-header {
margin-top: 38px;
background: rgba(22, 155, 98, 0.05);
border-bottom-color: rgba(22, 155, 98, 0.2);
position: relative;
z-index: 1;
}
.dark .pricing-card-new.popular .card-header {
background: rgba(22, 155, 98, 0.1);
border-bottom-color: rgba(22, 155, 98, 0.3);
}
.pricing-card-new.popular .card-header h3 {
color: var(--color-primary);
font-size: 1.875rem;
}
.pricing-card-new.popular .card-header p {
color: #6b7280;
}
.dark .pricing-card-new.popular .card-header p {
color: #9ca3af;
}
.pricing-card-new.popular .total-price {
color: var(--color-primary);
font-size: 2.5rem;
}
.pricing-card-new.popular .pricing-button-main {
background: var(--color-primary);
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.3);
font-weight: 600;
}
.pricing-card-new.popular .pricing-button-main:hover {
background: var(--color-primary-dark);
box-shadow: 0 6px 16px rgba(22, 155, 98, 0.4);
}
.pricing-card-new.popular .card-footer {
background: rgba(22, 155, 98, 0.03);
border-top-color: rgba(22, 155, 98, 0.2);
}
.dark .pricing-card-new.popular .card-footer {
background: rgba(22, 155, 98, 0.08);
border-top-color: rgba(22, 155, 98, 0.3);
}

/* 7. OTHER SECTIONS (Complete Styling) */
.other-service-card {
background: var(--color-white);
padding: 2.5rem;
border-radius: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid #e5e7eb;
position: relative;
overflow: hidden;
}
.other-service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 4px;
background: var(--color-primary);
opacity: 0;
transition: opacity 0.3s ease;
}
.other-service-card:hover::before {
opacity: 1;
}
.other-service-card::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 4px;
background: var(--color-secondary);
opacity: 0;
transition: opacity 0.3s ease;
}
.other-service-card:hover::after {
opacity: 1;
}
.other-service-card:hover {
transform: translateY(-12px) scale(1.02);
box-shadow: 0 20px 40px rgba(22, 155, 98, 0.25);
border-color: var(--color-primary);
}
.dark .other-service-card {
background: #1f2937;
border-color: #374151;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.other-service-card .service-icon {
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
font-size: 2rem;
transition: all 0.3s ease;
position: relative;
z-index: 1;
}
.other-service-card:hover .service-icon {
transform: scale(1.1) rotate(5deg);
}
.other-service-card h3 {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 1rem;
color: #111827;
position: relative;
z-index: 1;
}
.dark .other-service-card h3 {
color: #f9fafb;
}
.other-service-card p {
font-size: 0.9375rem;
color: #6b7280;
line-height: 1.6;
position: relative;
z-index: 1;
}
.dark .other-service-card p {
color: #d1d5db;
}
.other-service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-lg);
}
.order-button {
background: var(--color-primary);
color: var(--color-white);
padding: 0.75rem 1.5rem;
border-radius: 9999px;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.3);
}
.order-button:hover {
background: var(--color-primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(22, 155, 98, 0.4);
}
.custom-project-card {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(22, 155, 98, 0.3);
    position: relative;
    overflow: hidden;
}
.custom-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33%;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.2;
}
.custom-project-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33.33%;
    height: 100%;
    background: var(--color-secondary);
    opacity: 0.2;
}
.contact-button {
background-color: var(--color-white);
color: var(--color-primary);
font-weight: 700;
padding: 1rem 2rem;
border-radius: 9999px;
transition: all 0.3s ease;
border: 2px solid var(--color-primary);
cursor: pointer;
}
.contact-button:hover {
background-color: var(--color-primary);
color: var(--color-white);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(22, 155, 98, 0.3);
}
.portfolio-img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* 8. CHECKOUT & THANK YOU PAGES (Modern Professional Redesign) */
.form-section-title {
font-size: 1.5rem;
font-weight: 800;
color: #111827;
padding: 0;
margin-bottom: 2rem;
margin-top: 3rem;
display: flex;
align-items: center;
gap: 0.875rem;
transition: all 0.3s ease;
border-bottom: none;
position: relative;
letter-spacing: -0.02em;
}
.form-section-title:first-of-type {
margin-top: 0;
}
.form-section-title i {
font-size: 1.5rem;
width: 2.5rem;
height: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
background: var(--color-primary);
color: white;
border-radius: 0.75rem;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.25);
}
.form-section-title:nth-child(odd) i {
background: var(--color-primary);
}
.form-section-title:nth-child(even) i {
background: var(--color-secondary);
}
.form-section-title:hover i {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 6px 16px rgba(22, 155, 98, 0.35);
}
.dark .form-section-title {
color: #f3f4f6;
}
.dark .form-section-title i {
background: var(--color-primary);
}
.dark .form-section-title:nth-child(even) i {
background: var(--color-secondary);
}
.form-label {
display: block;
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.875rem;
color: #111827;
letter-spacing: -0.01em;
transition: all 0.3s ease;
position: relative;
}
.dark .form-label {
color: #f3f4f6;
}
.form-label::after {
display: none;
}
.form-input {
width: 100%;
padding: 1rem 1.25rem;
border: 1.5px solid #e5e7eb;
border-radius: 0.75rem;
font-size: 1rem;
font-weight: 500;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
background-color: #ffffff;
color: #111827;
min-height: 52px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form-input:hover {
border-color: #d1d5db;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.dark .form-input {
background-color: #1f2937;
border-color: #374151;
color: #d1d5db;
}
.dark .form-input:hover {
border-color: #4b5563;
background-color: #374151;
}
.form-input:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 4px rgba(22, 155, 98, 0.08), 0 4px 12px rgba(22, 155, 98, 0.12);
background-color: #ffffff;
transform: translateY(-1px);
}
.dark .form-input:focus {
background-color: #374151;
box-shadow: 0 0 0 4px rgba(22, 155, 98, 0.15), 0 4px 12px rgba(0, 0, 0, 0.25);
transform: translateY(-1px);
}
.form-input::placeholder {
color: #9ca3af;
font-size: 0.9375rem;
font-weight: 400;
opacity: 0.7;
transition: opacity 0.3s ease;
}
.form-input:focus::placeholder {
opacity: 0.5;
}
.dark .form-input::placeholder {
color: #6b7280;
}
/* Form Field Wrapper Enhancement - Removed green line */
form > div > div {
position: relative;
}
/* Textarea Styling */
textarea.form-input {
min-height: 120px;
resize: vertical;
padding-top: 1rem;
line-height: 1.6;
}
textarea.form-input:focus {
min-height: 130px;
}
/* Select Dropdown Styling */
select.form-input {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1.25rem center;
background-size: 14px;
padding-right: 3rem;
cursor: pointer;
}
.dark select.form-input {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d1d5db' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}
select.form-input:hover {
background-color: #f9fafb;
}
.dark select.form-input:hover {
background-color: #374151;
}
/* Form Fields Container - Single Column Layout */
.form-fields-container {
display: flex;
flex-direction: column;
gap: 0;
width: 100%;
}
.form-fields-container .form-group {
margin-bottom: 1.75rem;
width: 100%;
}
.form-fields-container .form-group:last-child {
margin-bottom: 0;
}
.form-fields-container .form-label {
display: block;
margin-bottom: 0.75rem;
width: 100%;
font-size: 0.9375rem;
font-weight: 600;
color: #374151;
}
.dark .form-fields-container .form-label {
color: #d1d5db;
}
.form-fields-container .form-input {
width: 100%;
}
/* Form Grid Enhancement */
form .grid {
gap: 1.5rem;
}
form .grid > div {
position: relative;
transition: all 0.3s ease;
}
form .grid > div:hover {
transform: translateY(-2px);
}
/* Smooth Animation for Form Sections */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
form > div {
animation: fadeInUp 0.5s ease-out;
}
form > div:nth-child(1) {
animation-delay: 0.1s;
}
form > div:nth-child(2) {
animation-delay: 0.2s;
}
form > div:nth-child(3) {
animation-delay: 0.3s;
}
/* Checkout Form Container Enhancement */
.bg-white.dark\\:bg-gray-800 {
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
}
.dark .bg-white.dark\\:bg-gray-800 {
border-color: #374151;
}
/* Form Card Enhancement - Modern Design */
.bg-white.dark\\:bg-gray-800.rounded-2xl {
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease;
border: 2px solid #f3f4f6;
background: #ffffff;
position: relative;
overflow: hidden;
}
.bg-white.dark\\:bg-gray-800.rounded-2xl::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--color-primary);
}
.dark .bg-white.dark\\:bg-gray-800.rounded-2xl {
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
border-color: #374151;
background: #1f2937;
}
/* Checkout Page Title Styling */
.bg-white.dark\\:bg-gray-800.rounded-2xl h1 {
font-size: 2.5rem;
font-weight: 900;
color: var(--color-primary);
letter-spacing: -0.03em;
margin-bottom: 0.75rem;
}
.dark .bg-white.dark\\:bg-gray-800.rounded-2xl h1 {
color: var(--color-primary);
}
.bg-white.dark\\:bg-gray-800.rounded-2xl > p {
font-size: 1.125rem;
color: #6b7280;
font-weight: 500;
line-height: 1.6;
}
.dark .bg-white.dark\\:bg-gray-800.rounded-2xl > p {
color: #9ca3af;
}
/* Input Group Enhancement */
.form-group {
margin-bottom: 1.5rem;
position: relative;
width: 100%;
}
.form-group label {
display: flex;
align-items: center;
gap: 0.5rem;
}
.form-group label i {
font-size: 0.875rem;
color: var(--color-primary);
opacity: 0.7;
}
/* Phone Input with Country Code and Flag - Professional Design with Search */
.phone-input-container {
display: flex;
gap: 0.75rem;
align-items: stretch;
position: relative;
}
.country-selector-dropdown {
position: relative;
min-width: 140px;
}
.country-selector-btn {
width: 100%;
display: flex;
align-items: center;
gap: 0.5rem;
padding: 1rem 1rem;
border: 2px solid #e5e7eb;
border-radius: 0.75rem;
background: white;
font-size: 1rem;
font-weight: 600;
color: #374151;
cursor: pointer;
transition: all 0.3s ease;
min-height: 52px;
}
.dark .country-selector-btn {
background: #1f2937;
border-color: #374151;
color: #d1d5db;
}
.country-selector-btn:hover {
border-color: var(--color-primary);
background-color: #f9fafb;
}
.dark .country-selector-btn:hover {
background-color: #374151;
}
.country-selector-btn.active {
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}
.country-selector-btn i {
margin-left: auto;
font-size: 0.75rem;
color: #6b7280;
transition: transform 0.3s ease;
}
.country-selector-dropdown.show .country-selector-btn i,
.country-selector-btn.active i {
transform: rotate(180deg);
}
.selected-flag-icon {
width: 24px;
height: 18px;
object-fit: cover;
border-radius: 3px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
flex-shrink: 0;
}
.country-dropdown-menu {
position: absolute;
top: calc(100% + 0.5rem);
left: 0;
right: 0;
background: white;
border: 2px solid #e5e7eb;
border-radius: 0.75rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
z-index: 1000;
max-height: 400px;
display: none;
overflow: hidden;
flex-direction: column;
}
.dark .country-dropdown-menu {
background: #1f2937;
border-color: #374151;
}
.country-dropdown-menu.show {
display: flex;
}
.country-search-wrapper {
position: relative;
padding: 0.75rem;
border-bottom: 1px solid #e5e7eb;
}
.dark .country-search-wrapper {
border-bottom-color: #374151;
}
.country-search-input {
width: 100%;
padding: 0.75rem 2.5rem 0.75rem 1rem;
border: 2px solid #e5e7eb;
border-radius: 0.5rem;
font-size: 0.9375rem;
background: #f9fafb;
color: #374151;
}
.dark .country-search-input {
background: #374151;
border-color: #4b5563;
color: #d1d5db;
}
.country-search-input:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}
.country-search-icon {
position: absolute;
right: 1.5rem;
top: 50%;
transform: translateY(-50%);
color: #6b7280;
pointer-events: none;
}
.country-list {
max-height: 320px;
overflow-y: auto;
padding: 0.5rem;
}
.country-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.875rem 1rem;
border-radius: 0.5rem;
cursor: pointer;
transition: all 0.2s ease;
}
.country-item:hover {
background-color: #f3f4f6;
}
.dark .country-item:hover {
background-color: #374151;
}
.country-item.selected {
background-color: rgba(22, 155, 98, 0.1);
border: 1px solid var(--color-primary);
}
.dark .country-item.selected {
background-color: rgba(22, 155, 98, 0.2);
}
.country-flag {
width: 24px;
height: 18px;
object-fit: cover;
border-radius: 3px;
flex-shrink: 0;
}
.country-name {
flex: 1;
font-size: 0.9375rem;
font-weight: 500;
color: #374151;
}
.dark .country-name {
color: #d1d5db;
}
.country-code {
font-size: 0.875rem;
font-weight: 600;
color: var(--color-primary);
}
.no-results {
padding: 1rem;
text-align: center;
color: #6b7280;
font-size: 0.875rem;
}
.phone-number-input {
flex: 1;
padding: 1rem 1.25rem;
border: 2px solid #e5e7eb;
border-radius: 0.75rem;
font-size: 1.125rem;
font-weight: 500;
transition: all 0.3s ease;
min-height: 52px;
}
.dark .phone-number-input {
background: #1f2937;
border-color: #374151;
color: #d1d5db;
}
.phone-number-input:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}
.phone-number-input::placeholder {
color: #9ca3af;
font-size: 1rem;
}
.dark .phone-number-input::placeholder {
color: #6b7280;
}
/* Scrollbar styling for country list */
.country-list::-webkit-scrollbar {
width: 8px;
}
.country-list::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
.dark .country-list::-webkit-scrollbar-track {
background: #374151;
}
.country-list::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
.country-list::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}

/* RESPONSIVE FIX: Booking Component Styling */
.booking-component-wrapper {
display: flex;
flex-wrap: wrap;
gap: 2rem;
padding: 1.5rem;
background-color: var(--color-white);
border: 1px solid var(--color-border);
border-radius: var(--border-radius);
}
#calendar-container {
flex-grow: 1;
flex-basis: 300px;
min-width: 280px;
}
#time-slots-container {
flex-grow: 1;
flex-basis: 250px;
min-width: 250px;
border-inline-start: 1px solid var(--color-border);
padding-inline-start: 2rem;
text-align: center;
display: flex;
flex-direction: column;
}
[dir="rtl"] #time-slots-container {
border-inline-start: none;
border-inline-end: 1px solid var(--color-border);
padding-inline-start: 0;
padding-inline-end: 2rem;
}
#time-slots-title {
font-size: 1.1rem;
font-weight: 600;
color: var(--color-text-dark);
margin-bottom: 1.5rem;
align-self: flex-start;
}
.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
padding: 1rem;
background: rgba(22, 155, 98, 0.05);
border-radius: 1rem;
border: 1px solid rgba(22, 155, 98, 0.1);
}
.dark .calendar-header {
background: rgba(22, 155, 98, 0.1);
border-color: rgba(22, 155, 98, 0.2);
}
.calendar-header h3 {
flex-grow: 1;
margin: 0;
text-align: center;
font-weight: 800;
font-size: 1.375rem;
color: #111827;
letter-spacing: -0.02em;
}
.dark .calendar-header h3 {
color: #f3f4f6;
}
.calendar-nav-btn {
background: white;
border: 2px solid #e5e7eb;
width: 2.75rem;
height: 2.75rem;
border-radius: 0.75rem;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1.25rem;
color: var(--color-primary);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dark .calendar-nav-btn {
background: #1f2937;
border-color: #374151;
}
.calendar-nav-btn:hover {
background: var(--color-primary);
color: white;
border-color: var(--color-primary);
transform: scale(1.05);
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.3);
}
.dark .calendar-nav-btn:hover {
background: var(--color-primary);
border-color: var(--color-primary);
}
.calendar-grid-header, .calendar-grid-body {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
gap: 0.5rem;
}
.calendar-grid-header {
font-weight: 600;
color: var(--color-text-dark);
margin-bottom: 0.75rem;
font-size: 0.875rem;
}
.calendar-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0.75rem;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-weight: 600;
font-size: 0.9375rem;
border: 2px solid transparent;
background: #f9fafb;
}
.dark .calendar-day {
background: #1f2937;
}
.calendar-day:not(.disabled):hover {
background: var(--color-primary);
color: white;
transform: translateY(-2px) scale(1.05);
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.3);
border-color: transparent;
}
.calendar-day.disabled {
color: #d1d5db;
cursor: not-allowed;
background-color: #f3f4f6;
opacity: 0.5;
}
.dark .calendar-day.disabled {
background-color: #111827;
}
.calendar-day.today {
font-weight: 800;
color: var(--color-primary);
border: 2px solid var(--color-primary);
background: rgba(22, 155, 98, 0.1);
box-shadow: 0 2px 8px rgba(22, 155, 98, 0.2);
}
.dark .calendar-day.today {
background: rgba(22, 155, 98, 0.2);
}
.calendar-day.selected {
background: var(--color-primary);
color: var(--color-white);
border-color: transparent;
font-weight: 800;
box-shadow: 0 4px 16px rgba(22, 155, 98, 0.4);
transform: scale(1.1);
}
.time-slots-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
gap: 0.75rem;
width: 100%;
}
.time-slot-btn {
padding: 0.875rem 1.25rem;
border: 2px solid #e5e7eb;
border-radius: 0.75rem;
background: white;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
font-weight: 600;
font-size: 0.9375rem;
color: #374151;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.dark .time-slot-btn {
background: #1f2937;
border-color: #374151;
color: #d1d5db;
}
.time-slot-btn:hover:not(:disabled) {
border-color: var(--color-primary);
color: var(--color-primary);
background: rgba(22, 155, 98, 0.05);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.2);
}
.dark .time-slot-btn:hover:not(:disabled) {
background: rgba(22, 155, 98, 0.15);
}
.time-slot-btn.selected {
background: var(--color-primary);
color: var(--color-white);
border-color: transparent;
font-weight: 700;
box-shadow: 0 6px 20px rgba(22, 155, 98, 0.4);
transform: translateY(-2px) scale(1.05);
}
.time-slot-btn.booked {
background-color: #f3f4f6;
color: #9ca3af;
cursor: not-allowed;
text-decoration: line-through;
opacity: 0.6;
border-color: #e5e7eb;
}
.dark .time-slot-btn.booked {
background-color: #111827;
color: #6b7280;
border-color: #374151;
}
.loader {
width: 48px;
height: 48px;
border: 5px solid var(--color-primary-light);
border-bottom-color: var(--color-primary);
border-radius: 50%;
display: block;
box-sizing: border-box;
animation: rotation 1s linear infinite;
margin: 3rem auto;
}
@keyframes rotation {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.order-summary-card {
background-color: var(--color-white);
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
position: sticky;
top: 120px;
border: 1px solid #f3f4f6;
transition: all 0.3s ease;
}
.dark .order-summary-card {
background-color: #1f2937;
border-color: #374151;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.summary-item {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 1rem;
margin-bottom: 1rem;
border-bottom: 1px solid #e5e7eb;
}
.dark .summary-item {
border-bottom-color: #374151;
}
.addon-chip {
display: inline-block;
background-color: var(--color-primary-light);
color: var(--color-primary-dark);
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-size: 0.875rem;
margin-bottom: 0.5rem;
margin-inline-start: 0.5rem;
}
.summary-total {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 0;
border-top: 2px solid #e5e7eb;
margin-top: 1rem;
}
.dark .summary-total {
border-top-color: #374151;
}
.confirmation-fee-notice {
background-color: #f0fdf4;
color: #166534;
padding: 1rem;
border-radius: 0.75rem;
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
border: 1px solid #bbf7d0;
}
.dark .confirmation-fee-notice {
background-color: rgba(22, 101, 52, 0.2);
color: #86efac;
border-color: rgba(22, 101, 52, 0.3);
}
.confirmation-fee-notice i {
font-size: 1.125rem;
margin-top: 0.125rem;
flex-shrink: 0;
}
.checkout-features {
padding-top: 1rem;
border-top: 1px solid #e5e7eb;
}
.dark .checkout-features {
border-top-color: #374151;
}
.checkout-features .feature-item i {
font-size: 1rem;
}
.submit-button {
width: 100%;
background: var(--color-primary);
color: white;
padding: 1.125rem 2rem;
font-size: 1.0625rem;
font-weight: 700;
border: none;
border-radius: 0.75rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.25);
letter-spacing: 0.02em;
}
.submit-button:hover {
background: var(--color-primary-dark);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(22, 155, 98, 0.35);
}
.submit-button:active {
transform: translateY(0);
}
.thank-you-container {
display: flex;
align-items: center;
justify-content: center;
min-height: 80vh;
padding: 2rem;
background-color: var(--color-background-light);
transition: background-color 0.3s ease;
}
.dark .thank-you-container {
background-color: #0f172a;
}
.thank-you-card {
background-color: var(--color-white);
border-radius: var(--border-radius);
box-shadow: var(--shadow-lg);
padding: 3rem;
max-width: 700px;
width: 100%;
text-align: center;
transition: all 0.3s ease;
}
.dark .thank-you-card {
background-color: #1f2937;
}
.success-icon {
font-size: 4rem;
color: #16a34a;
margin-bottom: 1.5rem;
}
.thank-you-card h1 {
font-size: 2.25rem;
margin-bottom: 0.5rem;
}
.thank-you-card p {
color: var(--color-text-light);
margin-bottom: 2rem;
}
.order-number-badge {
display: inline-block;
background-color: var(--color-primary-light);
color: var(--color-primary-dark);
padding: 0.75rem 1.5rem;
border-radius: 9999px;
font-weight: 600;
margin-bottom: 2.5rem;
}
.bank-info-box {
border: 1px solid var(--color-border);
border-radius: var(--border-radius);
padding: 1.5rem;
text-align: left;
margin-bottom: 1.5rem;
transition: all 0.3s ease;
}
.dark .bank-info-box {
background-color: #1f2937;
border-color: #374151;
}
.bank-info-box h3 {
font-size: 1.25rem;
margin-bottom: 1rem;
}
.detail-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 0;
border-bottom: 1px solid #f3f4f6;
}
.detail-row:last-child {
border-bottom: none;
}
.copy-btn {
background: #f3f4f6;
border: 1px solid var(--color-border);
border-radius: 0.375rem;
padding: 0.375rem 0.75rem;
font-size: 0.875rem;
cursor: pointer;
}
.upload-form-section {
margin-top: 2rem;
border-top: 1px solid var(--color-border);
padding-top: 2rem;
}
.upload-button {
width: 100%;
background-color: var(--color-primary);
color: var(--color-white);
padding: 0.75rem;
border-radius: 0.5rem;
font-weight: 600;
transition: background-color 0.2s ease;
}
.upload-button:hover {
background-color: var(--color-primary-dark);
}
.site-footer {
background-color: var(--color-text-dark);
color: #d1d5db;
padding: 4rem 1.5rem;
}
.site-footer a {
color: var(--color-white);
transition: color 0.2s ease;
}
.site-footer a:hover {
color: var(--color-primary);
}

/* 9. RESPONSIVE & UTILITY */
@media (max-width: 1024px) {
.pricing-card-new.popular {
transform: translateY(0);
}
.order-summary-card {
margin-top: 2rem;
position: static;
}
.booking-component-wrapper {
flex-direction: column;
}
#time-slots-container {
border-inline-start: none;
padding-inline-start: 0;
border-top: 1px solid var(--color-border);
padding-top: 2rem;
}
[dir="rtl"] #time-slots-container {
border-inline-end: none;
padding-inline-end: 0;
}
}
@media (max-width: 767px) {
/* Prevent Horizontal Scrolling */
html, body {
overflow-x: hidden;
max-width: 100%;
}
body {
position: relative;
width: 100%;
}
* {
max-width: 100%;
box-sizing: border-box;
}
.container {
max-width: 100%;
overflow-x: hidden;
}
/* Header Mobile */
#main-header {
padding: 0.875rem 0;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
#main-header nav {
display: flex;
justify-content: space-between;
align-items: center;
gap: 0.75rem;
padding: 0 1rem;
}
.header-center, .header-right {
display: none !important;
}
.header-left {
flex: none;
}
.logo-link {
font-size: 1.5rem;
}
.md:hidden {
display: flex !important;
gap: 0.5rem;
align-items: center;
}
/* Hero Section Mobile - Professional */
.hero-section-v5 {
min-height: auto;
padding: 4rem 0 5rem 0;
background: #ffffff;
position: relative;
overflow: hidden;
}
.hero-section-v5::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, rgba(22, 155, 98, 0.03) 0%, rgba(251, 191, 36, 0.02) 100%);
pointer-events: none;
}
.dark .hero-section-v5 {
background: #0f172a;
}
.dark .hero-section-v5::before {
background: linear-gradient(180deg, rgba(22, 155, 98, 0.05) 0%, rgba(251, 191, 36, 0.03) 100%);
}
.hero-grid {
grid-template-columns: 1fr;
display: flex;
flex-direction: column;
gap: 0;
min-height: auto;
padding: 0;
position: relative;
z-index: 1;
}
.hero-text-content {
order: 1;
text-align: center;
padding: 2rem 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.hero-image-placeholder {
display: none !important;
}
.hero-title {
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 1.5rem;
font-weight: 900;
letter-spacing: -0.03em;
color: #111827;
max-width: 100%;
}
.dark .hero-title {
color: #f9fafb;
}
[dir] .hero-text-content {
text-align: center;
}
.hero-subtitle {
margin: 0 auto 2.5rem auto;
font-size: 1.125rem;
max-width: 100%;
line-height: 1.75;
color: #4b5563;
padding: 0;
font-weight: 400;
}
.dark .hero-subtitle {
color: #d1d5db;
}
.hero-button {
width: 100%;
text-align: center;
max-width: 100%;
margin: 0 auto;
padding: 1.25rem 2.5rem;
font-size: 1.125rem;
font-weight: 700;
box-shadow: 0 10px 25px rgba(22, 155, 98, 0.4);
border-radius: 9999px;
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
}
.hero-button:active {
transform: translateY(2px);
box-shadow: 0 6px 18px rgba(22, 155, 98, 0.35);
}
.hero-button:hover {
transform: translateY(-2px);
box-shadow: 0 12px 30px rgba(22, 155, 98, 0.5);
}
/* Mobile Menu - Professional Design */
#mobile-menu-panel {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(4px);
z-index: 9998;
display: flex;
align-items: flex-start;
justify-content: flex-end;
padding: 0;
margin: 0;
border-radius: 0;
}
.mobile-menu-content {
width: 85%;
max-width: 340px;
height: 100%;
background: white;
box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
padding: 0;
display: flex;
flex-direction: column;
overflow-y: auto;
position: relative;
}
.dark .mobile-menu-content {
background: #1f2937;
box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}
.mobile-menu-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
z-index: 1;
}
.mobile-menu-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.75rem 1.5rem 1.25rem 1.5rem;
border-bottom: 2px solid #e5e7eb;
margin-bottom: 0;
position: relative;
z-index: 2;
background: white;
}
.dark .mobile-menu-header {
border-bottom-color: #374151;
background: #1f2937;
}
.mobile-menu-title {
font-size: 1.625rem;
font-weight: 800;
color: #111827;
margin: 0;
letter-spacing: -0.02em;
}
.dark .mobile-menu-title {
color: #f9fafb;
}
.mobile-menu-close {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background: #f3f4f6;
border: 2px solid transparent;
border-radius: 0.75rem;
color: #6b7280;
cursor: pointer;
transition: all 0.3s ease;
flex-shrink: 0;
}
.dark .mobile-menu-close {
background: #374151;
color: #9ca3af;
border-color: transparent;
}
.mobile-menu-close:hover {
background: var(--color-primary);
color: white;
border-color: var(--color-primary);
transform: rotate(90deg);
}
.mobile-menu-close:active {
transform: rotate(90deg) scale(0.95);
}
.mobile-menu-close i {
font-size: 1.375rem;
}
/* Mobile Menu Controls */
.mobile-menu-controls {
padding: 1.5rem 1.5rem;
background: linear-gradient(135deg, rgba(22, 155, 98, 0.06) 0%, rgba(251, 191, 36, 0.04) 100%);
border-bottom: 2px solid #e5e7eb;
display: flex;
flex-direction: column;
gap: 1.25rem;
position: relative;
}
.dark .mobile-menu-controls {
background: linear-gradient(135deg, rgba(22, 155, 98, 0.12) 0%, rgba(251, 191, 36, 0.08) 100%);
border-bottom-color: #374151;
}
.mobile-controls-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1.25rem;
}
.mobile-control-label {
font-size: 0.8125rem;
font-weight: 700;
color: #374151;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.dark .mobile-control-label {
color: #d1d5db;
}
.mobile-menu-divider {
height: 2px;
background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
margin: 0.75rem 0;
}
.dark .mobile-menu-divider {
background: linear-gradient(90deg, transparent 0%, #374151 20%, #374151 80%, transparent 100%);
}
.mobile-nav-link {
padding: 1.25rem 1.5rem;
font-size: 1.0625rem;
font-weight: 600;
color: #111827;
border-radius: 0;
border-bottom: 1px solid #e5e7eb;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 1rem;
text-decoration: none;
position: relative;
}
.dark .mobile-nav-link {
color: #f3f4f6;
border-bottom-color: #374151;
}
.mobile-nav-link:first-of-type {
border-top: none;
}
.mobile-nav-link i {
width: 24px;
text-align: center;
color: var(--color-primary);
font-size: 1.125rem;
flex-shrink: 0;
}
.mobile-nav-link span {
flex: 1;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
background: rgba(22, 155, 98, 0.1);
color: var(--color-primary);
padding-left: 1.75rem;
}
.dark .mobile-nav-link:hover,
.dark .mobile-nav-link:active {
background: rgba(22, 155, 98, 0.2);
}
.mobile-nav-link::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: var(--color-primary);
transform: scaleY(0);
transition: transform 0.3s ease;
}
.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
transform: scaleY(1);
}
.mobile-contact-cta {
padding: 1.375rem 1.5rem;
font-size: 1.0625rem;
font-weight: 700;
margin: 1.5rem 1.5rem 2rem 1.5rem;
border-radius: 0.875rem;
box-shadow: 0 6px 16px rgba(22, 155, 98, 0.35);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
text-decoration: none;
background: var(--color-primary);
color: white;
transition: all 0.3s ease;
}
.mobile-contact-cta:hover {
background: var(--color-primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(22, 155, 98, 0.45);
}
.mobile-contact-cta:active {
transform: translateY(0);
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.35);
}
.mobile-contact-cta i {
font-size: 1.125rem;
}
/* Mobile Menu Button - Enhanced */
.mobile-menu-button {
padding: 0.75rem;
background: white;
border: 2px solid #e5e7eb;
border-radius: 0.75rem;
transition: all 0.3s ease;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.dark .mobile-menu-button {
background: #1f2937;
border-color: #374151;
}
.mobile-menu-button:hover {
border-color: var(--color-primary);
background: rgba(22, 155, 98, 0.08);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(22, 155, 98, 0.2);
}
.dark .mobile-menu-button:hover {
background: rgba(22, 155, 98, 0.2);
}
.mobile-menu-button:active {
transform: translateY(0);
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
background-color: #111827;
width: 22px;
height: 2.5px;
}
.dark .hamburger-inner,
.dark .hamburger-inner::before,
.dark .hamburger-inner::after {
background-color: #f3f4f6;
}
/* Pricing Mobile */
#pricing .grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.pricing-card-new.popular {
transform: translateY(0);
}
/* Mobile Header Controls - Inside Menu */
.mobile-header-toggle {
width: 52px;
height: 52px;
display: flex;
align-items: center;
justify-content: center;
background: white;
border: 2px solid #e5e7eb;
border-radius: 0.875rem;
transition: all 0.3s ease;
cursor: pointer;
flex-shrink: 0;
position: relative;
z-index: 100;
pointer-events: auto;
-webkit-tap-highlight-color: rgba(22, 155, 98, 0.2);
user-select: none;
}
.dark .mobile-header-toggle {
background: #1f2937;
border-color: #374151;
}
.mobile-header-toggle:hover {
border-color: var(--color-primary);
background: rgba(22, 155, 98, 0.12);
transform: scale(1.08);
box-shadow: 0 6px 16px rgba(22, 155, 98, 0.3);
}
.dark .mobile-header-toggle:hover {
background: rgba(22, 155, 98, 0.25);
border-color: var(--color-primary);
}
.mobile-header-toggle:active {
transform: scale(0.92);
}
.mobile-header-toggle i {
font-size: 1.5rem;
color: var(--color-primary);
transition: transform 0.3s ease;
pointer-events: none;
}
.dark .mobile-header-toggle i {
color: #fbbf24;
}
.mobile-header-toggle:hover i {
transform: rotate(20deg);
}
.mobile-header-lang {
display: flex;
gap: 0.5rem;
align-items: center;
background: white;
border: 2px solid #e5e7eb;
border-radius: 0.75rem;
padding: 0.375rem;
flex-shrink: 0;
}
.dark .mobile-header-lang {
background: #1f2937;
border-color: #374151;
}
.mobile-lang-btn {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0.5rem;
transition: all 0.3s ease;
text-decoration: none;
padding: 0.25rem;
position: relative;
}
.mobile-lang-btn:hover {
background: rgba(22, 155, 98, 0.1);
transform: scale(1.1);
}
.mobile-lang-btn.active {
background: var(--color-primary);
box-shadow: 0 2px 8px rgba(22, 155, 98, 0.3);
}
.mobile-lang-btn.active::after {
content: '';
position: absolute;
bottom: -2px;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 4px;
background: white;
border-radius: 50%;
}
.mobile-lang-btn img {
width: 28px;
height: auto;
border-radius: 4px;
display: block;
}
.mobile-lang-btn.active img {
filter: brightness(1.2);
}
/* Prevent body scroll when menu is open */
body.menu-open {
overflow: hidden;
position: fixed;
width: 100%;
}
/* Services Cards Mobile */
#services .grid {
grid-template-columns: 1fr;
gap: 1.25rem;
}
/* Portfolio Cards Mobile */
#portfolio .grid {
grid-template-columns: 1fr;
gap: 1.25rem;
}
/* Testimonials Mobile */
#testimonials .grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}
/* Footer Mobile */
footer {
padding: 2rem 0;
}
footer .container {
flex-direction: column;
gap: 2rem;
text-align: center;
}
footer .grid {
grid-template-columns: 1fr;
gap: 2rem;
}
/* Checkout Page Mobile - Full Responsive */
main.bg-gray-50 {
padding: 1.5rem 0;
overflow-x: hidden;
width: 100%;
max-width: 100%;
}
main.bg-gray-50 .container {
padding-left: 1rem;
padding-right: 1rem;
max-width: 100%;
overflow-x: hidden;
}
main.bg-gray-50 .max-w-5xl {
max-width: 100%;
overflow-x: hidden;
}
main.bg-gray-50 .grid {
grid-template-columns: 1fr !important;
gap: 1.5rem;
width: 100%;
max-width: 100%;
overflow-x: hidden;
}
/* Checkout Form Card Mobile - Professional */
.bg-white.dark\\:bg-gray-800.rounded-2xl {
padding: 1.75rem 1.25rem !important;
margin: 0 auto 1.5rem auto !important;
width: 100%;
max-width: 100%;
overflow-x: hidden;
text-align: left;
}
.bg-white.dark\\:bg-gray-800.rounded-2xl h1 {
font-size: 1.75rem !important;
line-height: 1.3;
margin-bottom: 0.75rem;
text-align: left;
font-weight: 900;
color: #111827;
}
.dark .bg-white.dark\\:bg-gray-800.rounded-2xl h1 {
color: #f9fafb;
}
.bg-white.dark\\:bg-gray-800.rounded-2xl > p {
font-size: 0.9375rem !important;
line-height: 1.6;
margin-bottom: 2rem;
text-align: left;
color: #6b7280;
}
.dark .bg-white.dark\\:bg-gray-800.rounded-2xl > p {
color: #9ca3af;
}
/* Form Section Titles Mobile - Professional */
.form-section-title {
font-size: 1.25rem !important;
margin-top: 2rem !important;
margin-bottom: 1.25rem !important;
gap: 0.75rem;
justify-content: flex-start;
text-align: left;
display: flex;
align-items: center;
font-weight: 800;
color: #111827;
}
.dark .form-section-title {
color: #f3f4f6;
}
.form-section-title:first-of-type {
margin-top: 0 !important;
}
.form-section-title i {
width: 2rem !important;
height: 2rem !important;
font-size: 1.125rem !important;
border-radius: 0.5rem;
flex-shrink: 0;
}
/* Form Fields Mobile - Professional */
.form-fields-container {
gap: 1.25rem !important;
width: 100%;
max-width: 100%;
overflow-x: hidden;
display: flex;
flex-direction: column;
}
.form-group {
margin-bottom: 1.25rem !important;
width: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
}
.form-label {
font-size: 0.9375rem !important;
margin-bottom: 0.625rem !important;
text-align: left;
width: 100%;
font-weight: 600;
color: #374151;
letter-spacing: 0;
}
.dark .form-label {
color: #d1d5db;
}
.form-input {
padding: 0.875rem 1rem !important;
font-size: 1rem !important;
min-height: 48px !important;
width: 100%;
max-width: 100%;
text-align: left;
border-radius: 0.75rem;
border: 1.5px solid #e5e7eb;
background: #ffffff;
}
.dark .form-input {
background: #1f2937;
border-color: #374151;
color: #f3f4f6;
}
.form-input:focus {
border-color: var(--color-primary);
box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}
.form-input::placeholder {
text-align: left;
color: #9ca3af;
font-size: 0.9375rem;
}
.dark .form-input::placeholder {
color: #6b7280;
}
textarea.form-input {
min-height: 110px !important;
resize: vertical;
text-align: left;
padding: 0.875rem 1rem !important;
line-height: 1.6;
}
textarea.form-input::placeholder {
text-align: left;
}
/* Phone Input Mobile - Professional */
.phone-input-container {
flex-direction: column;
gap: 0.75rem;
width: 100%;
max-width: 100%;
}
.country-selector-dropdown {
width: 100%;
max-width: 100%;
}
.country-selector-btn {
width: 100%;
max-width: 100%;
justify-content: space-between;
padding: 0.875rem 1rem;
font-size: 1rem;
border-radius: 0.75rem;
border: 1.5px solid #e5e7eb;
background: #ffffff;
min-height: 48px;
}
.dark .country-selector-btn {
background: #1f2937;
border-color: #374151;
}
.phone-number-input {
width: 100%;
max-width: 100%;
margin-top: 0;
text-align: left;
border-radius: 0.75rem;
}
.phone-number-input::placeholder {
text-align: left;
}
/* Country Dropdown Mobile */
.country-dropdown-menu {
width: 100%;
max-width: 100%;
left: 0;
right: 0;
}
.country-list {
max-height: 200px;
}
/* Calendar Mobile - Professional */
.booking-component-wrapper {
flex-direction: column;
gap: 1.5rem;
padding: 1.25rem 0;
width: 100%;
max-width: 100%;
overflow-x: hidden;
}
#calendar-container {
flex-basis: auto;
min-width: 100%;
max-width: 100%;
overflow-x: hidden;
}
.calendar-header {
padding: 0.875rem;
margin-bottom: 1.25rem;
width: 100%;
justify-content: space-between;
}
.calendar-header h3 {
font-size: 1.125rem !important;
text-align: center;
font-weight: 700;
}
.calendar-nav-btn {
width: 2.25rem;
height: 2.25rem;
font-size: 1rem;
}
.calendar-grid-header {
grid-template-columns: repeat(7, 1fr);
gap: 0.25rem;
padding: 0.5rem 0;
font-size: 0.75rem;
}
.calendar-grid-body {
grid-template-columns: repeat(7, 1fr);
gap: 0.25rem;
}
.calendar-day {
min-height: 36px;
font-size: 0.875rem;
}
/* Time Slots Mobile */
#time-slots-container {
flex-basis: auto;
min-width: 100%;
border-left: none !important;
border-right: none !important;
border-top: none !important;
padding-left: 0 !important;
padding-right: 0 !important;
padding-top: 1.5rem;
margin-top: 1.5rem;
}
[dir="rtl"] #time-slots-container {
border-left: none !important;
border-right: none !important;
border-top: none !important;
}
#time-slots-title {
font-size: 1rem !important;
margin-bottom: 1rem;
text-align: center;
align-self: center;
}
.time-slots-grid {
grid-template-columns: repeat(3, 1fr) !important;
gap: 0.5rem;
}
.time-slot-btn {
padding: 0.75rem 0.5rem;
font-size: 0.875rem;
}
/* Order Summary Card Mobile */
.order-summary-card {
position: static !important;
margin-top: 0;
padding: 1.5rem !important;
}
.order-summary-card h2 {
font-size: 1.5rem !important;
margin-bottom: 1.25rem;
}
.order-summary-card h2 i {
font-size: 1.25rem;
}
.summary-item {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
padding-bottom: 0.875rem;
margin-bottom: 0.875rem;
}
.summary-item .text-right {
text-align: left !important;
width: 100%;
}
.addon-chip {
font-size: 0.8125rem;
padding: 0.375rem 0.625rem;
margin-bottom: 0.375rem;
display: inline-block;
}
.summary-total {
flex-direction: column;
align-items: flex-start;
gap: 0.75rem;
padding: 1.25rem 0;
}
.summary-total span:last-child {
font-size: 1.5rem !important;
}
.confirmation-fee-notice {
padding: 0.875rem;
font-size: 0.875rem;
margin-top: 1.25rem;
margin-bottom: 1.25rem;
}
.confirmation-fee-notice i {
font-size: 1rem;
}
/* Submit Button Mobile - Professional */
.submit-button {
padding: 1rem 1.5rem !important;
font-size: 1.0625rem !important;
width: 100%;
max-width: 100%;
margin: 1.5rem 0 0 0 !important;
display: block;
border-radius: 0.75rem;
font-weight: 700;
letter-spacing: 0.02em;
}
/* Error Messages Mobile */
.bg-red-100 {
padding: 0.875rem;
font-size: 0.875rem;
}
.bg-red-100 i {
font-size: 1rem;
}
}
h1, #home h1 {
font-size: 2.5rem;
}
h2 {
font-size: 1.875rem;
}
#checkout-form, .order-summary-card {
padding: 1.5rem;
}
.thank-you-card {
padding: 2rem 1.5rem;
}
.detail-row {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
[dir="rtl"] .bank-info-box, [dir="rtl"] .info-tooltip {
text-align: right;
}