:root {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --primary: #1e40af;
    --primary-hover: #1e3a8a;
    --secondary: #3b82f6;
    --secondary-hover: #2563eb;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
    animation: fadeIn 0.8s ease forwards;
}

/* Top Bar */
.top-bar {
    background: #000;
    color: white;
    padding: 12px 10%;
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-bar-message {
    color: white;
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.5rem;
    font-weight: 700;
    direction: rtl;
    unicode-bidi: plaintext;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* Navbar */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 10%;
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 8px 10%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 42px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .logo img {
    height: 35px;
}

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

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    background: #f1f5f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #e2e8f0;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1e293b;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 2px;
}

/* Animated X State */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary);
}

/* Menu Overlay Backdrop */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Professional Dropdown Menu Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    width: 260px;
    background: #ffffff;
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.15);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.dropdown-li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown li {
    width: 100%;
    margin: 0 !important;
    padding: 2px 0;
}

.dropdown li a {
    padding: 12px 18px;
    display: flex;
    align-items: center;
    font-size: 0.92rem;
    color: #334155;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown li a::after {
    display: none; /* Remove underline from dropdown links */
}

.dropdown li a:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateX(5px);
}

.nav-links a i {
    font-size: 0.75rem;
    margin-left: 6px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.nav-links li:hover .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary);
}

@media (max-width: 968px) {
    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none; /* Hide by default on mobile */
    }
    .nav-links li.active .dropdown {
        display: block;
    }
}

.cta-button {
    background: var(--secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section Control */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    padding: 0 5%;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease;
    transform: scale(1);
}

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

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.slide1 { background-image: url('images/hero_slide1.webp'); }
.slide2 { background-image: url('images/hero_slide2.webp'); }
.slide3 { background-image: url('images/hero_slide3.webp'); }

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    text-align: center;
}

.hero-tagline {
    display: inline-block;
    color: var(--secondary);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--secondary);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center; /* Center buttons */
}

.hero-whatsapp-btn {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.4);
}

.hero-call-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.hero-whatsapp-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
}

.hero-call-btn:hover {
    background: white;
    color: var(--text-dark);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-whatsapp-btn, .hero-call-btn { text-align: center; justify-content: center; }
}

/* Page Header */
.page-header {
    height: 40vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('images/hero_slide1.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb span {
    color: white;
}

/* Services */
.section {
    padding: 64px 10%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .gallery-item {
        aspect-ratio: 16 / 9;
        border-radius: 0;
    }
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.service-img-container {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: visible;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-circle {
    position: absolute;
    bottom: -30px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 76, 210, 0.2);
    border: 4px solid var(--white);
    z-index: 10;
}

.service-content {
    padding: 45px 24px 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more-arrow {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-read-more:hover .read-more-arrow {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    margin: 0;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    background: #e2e8f0;
    aspect-ratio: 4 / 3;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, 0.42) 100%);
    opacity: 0.8;
    pointer-events: none;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    padding-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(26, 76, 210, 0.1);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    z-index: 10;
}

.experience-badge h3 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

.secondary-btn {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.secondary-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

/* Modern Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 2rem;
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 76, 210, 0.1);
    transition: var(--transition);
}

.process-step:hover .step-num {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(26, 76, 210, 0.3);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .process-grid::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
.side-by-side {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--white);
    padding: 64px 10%;
}

.side-content {
    flex: 1;
}

.side-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.side-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.side-image-container {
    flex: 1;
}

.side-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    display: block;
}

@media (max-width: 991px) {
    .side-by-side {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .side-content h2 {
        font-size: 2rem;
    }
}

/* Modern FAQ Section */
#faq {
    background: #fdfdfd;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--primary);
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(26, 76, 210, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
}

.faq-question i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-item.active {
    background: var(--primary);
    box-shadow: 0 15px 40px rgba(26, 76, 210, 0.3);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-question {
    color: var(--white);
}

.faq-item.active .faq-question i {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: rotate(180deg);
}

/* Floating contact buttons */
.floating-btn,
.floating-whatsapp {
    position: fixed;
    right: 30px;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    text-decoration: none;
    transition: var(--transition);
    border: 3px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.whatsapp-btn,
.floating-whatsapp {
    bottom: 30px;
    background: #25d366;
}

.call-btn {
    bottom: 102px;
    background: var(--primary);
}

.floating-btn:hover,
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

.floating-btn:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.45);
    outline-offset: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* Why Choose Us */
.why-us {
    background: var(--primary);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.why-item h4 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 76, 210, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 76, 210, 0.1);
}

/* Modern Footer Styles */
footer {
    background-color: #0f172a;
    color: #f1f5f9;
    padding: 80px 10% 40px;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo img {
    display: block;
    width: min(100%, 280px);
    height: auto !important;
    max-height: 74px;
    filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.brand-col .footer-desc {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
    text-justify: inter-word;
}

.footer-column h5 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

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

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a i {
    color: currentColor;
    width: 18px;
    text-align: center;
    flex: 0 0 18px;
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-contact-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.footer-contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-logo img {
        width: min(100%, 210px);
        max-height: 60px;
    }

    .brand-col .footer-desc {
        text-align: justify;
        text-align-last: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: left;
        align-items: flex-start;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* Review Card Styles */
.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    align-items: flex-start;
}

.review-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.review-user-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name-date {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    font-size: 1rem;
    color: #3c4043;
}

.review-date {
    font-size: 0.85rem;
    color: #70757a;
}

.google-logo {
    width: 24px;
    height: 24px;
}

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

.review-rating i.fa-star {
    color: #fbbc04;
    font-size: 0.9rem;
}

.verified-badge {
    color: #1a73e8;
    font-size: 12px;
    margin-left: 4px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3c4043;
    margin: 4px 0;
}

.read-more-btn {
    color: #70757a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1200px) {
    nav, .section, .top-bar-content { padding-left: 5%; padding-right: 5%; }
}

@media (max-width: 1024px) {
    .side-by-side {
        flex-direction: column;
        gap: 40px;
    }
    
    .side-content, .side-image-container {
        width: 100%;
        text-align: center;
    }
    
    .side-image-container {
        order: -1;
    }
    
    .about-features {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }

    nav.menu-open {
        z-index: 10002;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-hover) 100%);
        flex-direction: column;
        padding: 92px 20px 24px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.25);
        z-index: 10003;
        gap: 10px;
        align-items: stretch;
        transform: translateX(101%); /* Move slightly more to ensure it's off-screen */
        visibility: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 10004;
        position: relative;
        padding: 5px;
    }

    .nav-actions {
        z-index: 10005;
    }

    .nav-links li {
        width: 100%;
        display: block;
    }

    .nav-links .dropdown-li {
        display: block !important;
    }

    .nav-links a {
        color: #ffffff !important;
        width: 100%;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .nav-links .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 6px;
        gap: 12px;
    }

    .nav-links a:visited,
    .nav-links a:hover,
    .nav-links a:active,
    .nav-links a:focus {
        color: #ffffff !important;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a i {
        color: #ffffff !important;
    }

    .nav-links .fa-chevron-down {
        color: #ffffff !important;
        margin-left: auto;
    }

    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 6px 0 0 0;
        display: none;
        background: transparent;
        margin-top: 0;
        width: 100%;
        border-radius: 0;
        overflow: visible;
    }

    .dropdown-li.active .dropdown {
        display: block;
    }

    .dropdown-li.active .fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown li a {
        color: #ffffff !important;
        padding: 11px 16px 11px 34px;
        border-radius: 12px;
        width: 100%;
        line-height: 1.25;
        font-size: 0.95rem;
        opacity: 0.95;
        background: rgba(255, 255, 255, 0.06);
    }

    .dropdown li a:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff !important;
        transform: none;
    }

    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 5%;
    }

    .top-bar-message {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    nav { top: 0; }
    
    .section { padding: 50px 5%; }
    .section-header h2 { font-size: 2.2rem; }

    .page-header {
        height: auto;
        min-height: 260px;
        padding: 110px 5% 70px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 6px;
    }
    
    .hero { padding-top: 100px; }
    .hero h1 { font-size: 2.5rem; }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section {
        padding: 40px 5% 30px;
    }

    .gallery-section .section-header {
        margin-bottom: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
        margin: 0;
    }

    .side-by-side {
        padding: 40px 5%;
        gap: 28px;
    }

    .side-content,
    .side-image-container {
        width: 100%;
    }

    .side-content h2 {
        font-size: 1.9rem;
    }

    .side-content p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: justify;
        text-justify: inter-word;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        width: 100%;
    }

    .about-feature {
        justify-content: center;
        text-align: center;
    }

    .service-card {
        align-items: center;
        text-align: center;
    }

    .service-img-container {
        height: 180px;
    }

    .service-content {
        padding: 40px 18px 24px;
    }

    .faq-question {
        padding: 1.15rem 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
    }

    .contact-container > div {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 1.5rem !important;
        border-radius: 22px !important;
    }

    .contact-form-wrapper > form > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .contact-form-wrapper input,
    .contact-form-wrapper select,
    .contact-form-wrapper textarea {
        padding: 1rem !important;
    }

    .contact-info .info-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 28px;
    }

    .footer-content > .brand-col {
        order: 0;
    }

    .footer-content > .brand-col .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-content > .contact-col {
        order: 1;
    }

    .footer-content > .footer-column:not(.brand-col):not(.contact-col) {
        order: 2;
    }

    .footer-content > .contact-col {
        text-align: center;
    }

    .footer-content > .contact-col h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-content > .contact-col .footer-contact-info {
        align-items: center;
    }

    .footer-content > .contact-col .footer-contact-item {
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }

    .footer-content > .contact-col .footer-contact-item i {
        margin-top: 2px;
        flex: 0 0 18px;
    }
    
    .brand-col .footer-desc,
    .footer-column ul li a,
    .footer-contact-item p,
    .footer-contact-item a,
    .footer-bottom,
    .footer-bottom-links a {
        color: #ffffff;
    }

    .footer-column h5 {
        padding-bottom: 12px;
    }

    .footer-column h5::after {
        left: 0;
        transform: none;
    }
    
    .footer-contact-item {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        gap: 12px;
        text-align: left;
    }

    .footer-contact-info {
        align-items: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .contact-info .info-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info .info-card i {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info .info-card p,
    .contact-info .info-card h4 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.1rem; }
    .page-header h1 { font-size: 1.9rem; }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-whatsapp-btn, .hero-call-btn {
        width: 100%;
        justify-content: center;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cta-button {
        display: none; /* Hide button on very small screens to save space */
    }

    .side-content h2 {
        font-size: 1.7rem;
    }

    .service-content {
        padding: 36px 16px 20px;
    }

    .faq-question {
        font-size: 0.96rem;
    }
}
