/* Base Variables & Setup */
:root {
    --primary-blue: #0c2b4c;
    --primary-blue-dark: #092039;
    --primary-orange: #ff7f00;
    --primary-orange-hover: #e67200;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #1ebd5a;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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);
    --shadow-blue: 0 10px 25px -5px rgba(12, 43, 76, 0.2);
    --shadow-orange: 0 10px 25px -5px rgba(255, 127, 0, 0.3);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

body {
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography Utilities */
.highlight {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-align: center;
}

.btn i {
    font-size: 1.2rem;
}

.btn-dark {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-dark:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(12, 43, 76, 0.3);
}

.btn-dark .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-dark .btn-text span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-green {
    background-color: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.3);
}

.btn-green:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.4);
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(255, 127, 0, 0.4);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-text h1 span {
    color: var(--primary-orange);
}

.logo-text p {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width var(--transition-normal);
}

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

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

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 1px solid var(--primary-blue);
}

.lang-btn.outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.lang-btn.outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 40px;
    padding: 180px 0 180px;
    background: url('assets/images/hero.png') no-repeat bottom right / auto 110%,
                linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 35%),
                      radial-gradient(circle at 15% 50%, rgba(255, 127, 0, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 85% 30%, rgba(12, 43, 76, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-left: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-img {
    max-width: 90%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
}

.hero-badge {
    position: absolute;
    top: 20%;
    right: 0;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(12, 43, 76, 0.3);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-badge i {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary-orange);
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-badge strong {
    font-size: 0.85rem;
    display: block;
    margin-top: 2px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.section-header h2::before {
    right: 100%;
    margin-right: 20px;
}

.section-header h2::after {
    left: 100%;
    margin-left: 20px;
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
    min-height: 45px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.why-choose h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 800;
}

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

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.feature-box:hover i {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.feature-box p {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

/* Request & Help Section */
.request-help-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.request-form-card,
.help-stats-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.help-stats-card {
    background-color: var(--primary-blue);
    color: var(--white);
}

.request-form-card h3,
.help-stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.request-form-card h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.help-stats-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Form Styles */
.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #ef4444;
    margin-left: 3px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
    background-color: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.btn-submit {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color var(--transition-fast);
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--primary-orange-hover);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    flex-grow: 1;
    align-items: center;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 50px;
}

.testimonials-slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.slider-btn {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-blue);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
    width: 100%;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal);
}

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

.stars {
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--primary-blue-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.5px;
}

.footer-brand .logo-text p {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-contact ul li i {
    color: var(--primary-orange);
    margin-top: 4px;
}

.footer-chat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.chat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-icon {
    font-size: 2.5rem;
    color: var(--whatsapp-green);
}

.chat-text {
    display: flex;
    flex-direction: column;
}

.chat-text strong {
    font-size: 1.1rem;
    color: var(--white);
}

.chat-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-chat {
    padding: 10px 25px;
    border-radius: 30px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-container {
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-chat {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .split-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0 80px 0;
        background: url('assets/images/hero.png') no-repeat center center / cover,
                    linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    }

    .hero-bg-shapes {
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

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

    .hero-actions {
        justify-content: center;
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .lang-toggle .lang-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand, .footer-chat {
        grid-column: span 1;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-chat {
        align-items: center;
    }
}

/* =========================================
   Sub-Services Modal Popup (Premium Styling)
   ========================================= */
.subservices-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 32, 57, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
}

.subservices-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-box {
    background: var(--white);
    width: 100%;
    max-width: 800px;
    max-height: 88vh;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(12, 43, 76, 0.35);
    overflow-y: auto;
    position: relative;
    padding: 35px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 127, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.subservices-modal.active .modal-content-box {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-right: 40px;
}

.modal-service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(255, 127, 0, 0.1) 0%, rgba(12, 43, 76, 0.08) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 4px 10px rgba(0, 0, 0, 0.04);
}

.modal-title-desc h2 {
    font-size: 1.6rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.modal-title-desc p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.modal-divider {
    height: 1px;
    background: linear-gradient(to right, #e5e7eb, rgba(255, 127, 0, 0.3), #e5e7eb);
    margin-bottom: 25px;
}

.modal-subservices-section {
    flex-grow: 1;
}

.modal-sub-title {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-sub-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 20px;
    background-color: var(--primary-orange);
    border-radius: 4px;
}

.subservices-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
}

.subservice-card {
    background: #fdfdfd;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subservice-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subservice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -6px rgba(12, 43, 76, 0.12);
    border-color: rgba(255, 127, 0, 0.3);
}

.subservice-card:hover::after {
    opacity: 1;
}

.subservice-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.subservice-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.3;
}

.subservice-price {
    background-color: rgba(255, 127, 0, 0.12);
    color: var(--primary-orange-hover);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.subservice-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.subservice-book-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.subservice-book-btn i {
    transition: transform 0.2s ease;
}

.subservice-book-btn:hover {
    background: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(255, 127, 0, 0.3);
}

.subservice-book-btn:hover i {
    transform: translateX(4px);
}

.no-subservices-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
}

/* Service Card Interactive Cursor */
.service-card {
    cursor: pointer;
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
    .modal-content-box {
        padding: 25px 20px;
        max-height: 92vh;
    }

    .modal-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-right: 30px;
    }

    .subservices-list-grid {
        grid-template-columns: 1fr;
    }
}
/* ====== NEW LAYOUT STYLES ====== */

/* Top Bar */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left {
    display: flex;
    gap: 20px;
}
.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-left a:hover {
    color: var(--primary-orange);
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Adjust navbar to sit below top bar */
.navbar {
    position: sticky;
    top: 0;
}
.hero {
    margin-top: 0;
}

/* Services New Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 992px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}
.service-card-new {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.service-card-new:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.service-icon-new {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}
.service-card-new h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    min-height: 45px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-list li {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.service-list li i {
    color: var(--primary-orange);
    font-size: 0.75rem;
    margin-top: 3px;
}

/* Why Choose Us New */
.why-choose-new {
    background-color: var(--primary-blue-dark);
    padding: 50px 0;
    color: #fff;
    text-align: center;
}
.why-choose-new h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.features-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.feature-item-col {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.feature-item-col i {
    font-size: 2.5rem;
    color: #fff;
}
.feature-item-col p {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}
.steps-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.steps-row::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}
.step-col {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-icon-wrap {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid #ff7f00;
    position: relative;
}
.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff7f00;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}
.step-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}
.step-col p {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 150px;
}

/* Stats Bar */
.stats-bar {
    background-color: var(--primary-blue);
    padding: 30px 0;
    color: #fff;
}
.stats-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.stat-box {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 10px;
}
.stat-box h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5px;
}
.stat-box p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer CTA */
.footer-cta {
    flex: 1.5;
}
.footer-container {
    display: flex;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}
.footer-links {
    flex: 1;
    min-width: 150px;
}
.footer-contact {
    flex: 1.5;
    min-width: 200px;
}
