/* ============================================
   Aston ERP Frontend Pages - Unified Styles
   ============================================ */

/* Global Variables */
:root {
    --primary-color: #CC9D6A;
    --primary-gradient: linear-gradient(135deg, #CC9D6A 0%, #FFB84D 50%, #CC9D6A 100%);
    --primary-gradient-hover: linear-gradient(135deg, #FFB84D 0%, #CC9D6A 50%, #FFB84D 100%);
    --bg-dark: #10162E;
    --bg-dark-alt: rgba(28, 34, 56, 1);
    --text-white: #ffffff;
    --border-radius: 20px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Unified Button Styles - All Pages
   ============================================ */

.btn,
.form-button,
.cta-button,
.join-us-button,
.hero-cta,
.btn-primary,
.footer-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    background: #CC9D6A;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.015em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(204, 157, 106, 0.3);
    text-align: center;
}

.btn::before,
.form-button::before,
.cta-button::before,
.join-us-button::before,
.hero-cta::before,
.btn-primary::before,
.footer-banner-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before,
.form-button:hover::before,
.cta-button:hover::before,
.join-us-button:hover::before,
.hero-cta:hover::before,
.btn-primary:hover::before,
.footer-banner-button:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover,
.form-button:hover,
.cta-button:hover,
.join-us-button:hover,
.hero-cta:hover,
.btn-primary:hover,
.footer-banner-button:hover {
    background: #B8895A;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(204, 157, 106, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn:active,
.form-button:active,
.cta-button:active,
.join-us-button:active,
.hero-cta:active,
.btn-primary:active,
.footer-banner-button:active {
    /*transform: translateY(-2px);*/
    opacity: 0.95;
}

/* Form button specific - full width */
.form-button {
    width: 100%;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* CTA button specific */
.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
}

/* ============================================
   Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Manrope", Sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Hide scrollbars globally */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1200px) {
    .container {
        width: 1350px;
        max-width: 1350px;
    }
}

.container-fluid {
    padding: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 ;
        margin: 0;
    }
}

.tw-px-5 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}

.tw-pt-20 {
    padding-top: 0rem;
}

.main-content {
    padding-top: 43px;
}

/* ============================================
   Typography
   ============================================ */

h1 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    position: relative;
    z-index: 10;
}

h2 {
    font-size: 19px;
    font-weight: bold;
    color: var(--text-white);
    position: relative;
    z-index: 10;
}

h3 {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-white);
    position: relative;
    z-index: 10;
}

p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-white);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.033em;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.section-header .section-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

/* ============================================
   Hero Sections
   ============================================ */

/* Modern Hero Section */
.hero-modern {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    will-change: auto;
}

.hero-modern-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    padding: 0 2.5rem;
    margin: 0 auto;
}

.hero-modern-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3rem 0 5rem;
}

.hero-modern-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-modern-content {
        flex-direction: row;
        align-items: center;
        gap: 2.5rem;
    }
}

.hero-modern-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

@media (min-width: 1024px) {
    .hero-modern-text {
        width: 50%;
        padding-right: 2.5rem;
    }
}

.hero-modern-text-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    width: fit-content;
}

.hero-badge-new {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2b8cee;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge-desc {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Title */
.hero-modern-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.033em;
}

@media (min-width: 768px) {
    .hero-modern-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-modern-title {
        font-size: 3.75rem;
    }
}

/* Hero Subtitle */
.hero-modern-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

/* Hero Buttons */
.hero-modern-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-btn-primary {
    display: flex;
    min-width: 140px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    height: 3rem;
    padding: 0 1.5rem;
    background: #CC9D6A;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(204, 157, 106, 0.3);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: #B8895A;
    box-shadow: 0 15px 40px rgba(204, 157, 106, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

.hero-btn-secondary {
    display: flex;
    min-width: 140px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    height: 3rem;
    padding: 0 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(219, 224, 230, 1);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(240, 242, 244, 1);
    color: var(--bg-dark);
    text-decoration: none;
}

.hero-btn-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Features */
.hero-modern-features {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.hero-modern-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-check {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.hero-feature-divider {
    margin: 0 0.5rem;
}

/* Hero Image */
.hero-modern-image {
    flex: 1;
    margin-top: 2rem;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-modern-image {
        width: 50%;
        margin-top: 0;
    }
}

.hero-image-gradient {
    position: absolute;
    inset: -0.25rem;
    background: linear-gradient(to right, #2563eb, #06b6d4);
    border-radius: 1rem;
    filter: blur(1rem);
    opacity: 0.25;
    transition: opacity 1s ease, filter 0.2s ease;
}

.hero-modern-image:hover .hero-image-gradient {
    opacity: 0.4;
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(240, 242, 244, 0.05);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Social Proof Section */
.social-proof-section {
    width: 100%;
    border-top: 1px solid rgba(240, 242, 244, 0.1);
    border-bottom: 1px solid rgba(240, 242, 244, 0.1);
    background: rgba(28, 34, 56, 0.5);
    padding: 2rem 0;
}

.social-proof-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.social-proof-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.social-proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.social-proof-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-proof-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.social-proof-logos:hover {
    opacity: 0.8;
    filter: grayscale(0.5);
}

.social-proof-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.social-proof-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Old Hero Styles (kept for other pages) */
.hero,
.about-hero,
.contact-hero,
.hero-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, rgba(16,22,46,1) 0%, rgba(28,34,56,0.95) 50%, rgba(16,22,46,1) 100%);
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 81vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 70%
    );
    animation: shine 10s infinite;
    z-index: 0;
    pointer-events: none;
}

.hero::before,
.about-hero::before,
.contact-hero::before,
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(204, 157, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 60%);
    z-index: 1;
    animation: heroGradientShift 15s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content,
.hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hero-text,
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #CC9D6A 50%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, rgba(204, 157, 106, 0.3) 0%, rgba(204, 157, 106, 0.6) 50%, rgba(204, 157, 106, 0.3) 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ============================================
   Sections
   ============================================ */

.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(204, 157, 106, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    filter: blur(60px);
    animation: wave-flow 20s ease-in-out infinite;
    z-index: 0;
    opacity: 0.6;
}

.section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 70%
    );
    animation: shine 8s infinite;
    z-index: 0;
    pointer-events: none;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section-dark {
    background: var(--bg-dark);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(204, 157, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-light {
    background: var(--bg-dark);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(204, 157, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.image-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 40%, rgba(204, 157, 106, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    filter: blur(60px);
    animation: wave-flow 21s ease-in-out infinite;
    z-index: 0;
    opacity: 0.6;
}

.image-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 70%
    );
    animation: shine 10s infinite;
    z-index: 0;
    pointer-events: none;
}

.image-section > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Cards - Common Styles
   ============================================ */

.industry-card,
.value-card,
.team-member,
.achievement-card,
.category-card,
.location-card,
.mission-box,
.vision-box {
    background: rgba(28, 34, 56, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-box,
.vision-box {
    background: rgba(16, 22, 46, 0.6);
    padding: 3rem;
}

.location-card {
    background: rgba(16, 22, 46, 0.6);
}

.team-member {
    background: rgba(16, 22, 46, 0.6);
}

.industry-card:hover,
.value-card:hover,
.team-member:hover,
.achievement-card:hover,
.category-card:hover,
.location-card:hover,
.mission-box:hover,
.vision-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(204, 157, 106, 0.4);
    border-color: rgba(204, 157, 106, 0.5);
}

/* ============================================
   About Us Page Specific
   ============================================ */

.about-us-page {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-title,
.vision-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.mission-content,
.vision-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.values-grid,
.team-grid,
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card,
.achievement-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card.animated,
.achievement-card.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.value-icon,
.achievement-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(204, 157, 106, 0.2) 0%, rgba(204, 157, 106, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid rgba(204, 157, 106, 0.3);
}

.value-icon i,
.achievement-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    z-index: 1;
}

.value-title,
.achievement-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.value-description,
.achievement-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(204, 157, 106, 0.3);
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.team-position {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.join-us-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-us-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.global-presence-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.global-presence-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.global-map {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.global-map img {
    width: 100%;
    height: 100%;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(28,34,56,1), rgba(16,22,46,1));
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ============================================
   FAQ Page Specific
   ============================================ */

.faq-page {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
}

.categories-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.category-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #b8895a;
    text-decoration: none;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1.2rem 6rem 1.2rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(204, 157, 106, 0.6);
    box-shadow: 0 0 0 4px rgba(204, 157, 106, 0.2), 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 10px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #b8895a;
    /*transform: translateY(-2px);*/
}

.faq-section {
    padding: 5rem 0;
    background: var(--bg-dark-alt);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(204, 157, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(16, 22, 46, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #CC9D6A 0%, #FFB84D 50%, #CC9D6A 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(204, 157, 106, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

.faq-item.active::before,
.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.4s ease;
    position: relative;
    padding-left: 2.5rem;
}

.faq-question:hover {
    background: rgba(204, 157, 106, 0.1);
    color: #FFB84D;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 2.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    display: none;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-question {
    background: rgba(204, 157, 106, 0.15);
    color: #FFB84D;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #FFB84D;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.search-results {
    padding: 2rem 0;
    display: none;
}

.search-results-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.result-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.result-answer {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results-message {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.back-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #b8895a;
    text-decoration: none;
}

/* ============================================
   Contact Us Page Specific
   ============================================ */

.contact-us-page {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Manrope', sans-serif;
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--bg-dark-alt);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(204, 157, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    z-index: 10;
}

.contact-info-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(204, 157, 106, 0.2) 0%, rgba(204, 157, 106, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 2px solid rgba(204, 157, 106, 0.3);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(204, 157, 106, 0.3) 0%, rgba(204, 157, 106, 0.2) 100%);
    border-color: rgba(204, 157, 106, 0.5);
    box-shadow: 0 10px 30px rgba(204, 157, 106, 0.3);
}

.contact-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.contact-method:hover .contact-icon i {
    transform: scale(1.1);
    color: #FFB84D;
}

.contact-details {
    flex-grow: 1;
}

.contact-method-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.contact-method-value {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-method-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method-value a:hover {
    color: #b8895a;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(204, 157, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(16, 22, 46, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: rgba(204, 157, 106, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-align: center;
    position: relative;
    z-index: 10;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(204, 157, 106, 0.2);
    /*transform: translateY(-2px);*/
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.map-container {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.office-locations-section {
    padding: 6rem 0;
    background: var(--bg-dark-alt);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    z-index: 10;
}

.location-address {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-contact {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.location-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-contact a:hover {
    color: #b8895a;
    text-decoration: underline;
}

/* ============================================
   Welcome Page Specific Styles
   (Additional styles for welcome page elements)
   ============================================ */

.hero-features {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
}

.hero-feature-icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
    animation: subtle-pulse 2s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: normal;
    font-size: 0.875rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--bg-dark);
}

.industry-card h3 {
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(28, 34, 56, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--text-white);
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--bg-dark);
}

.benefit-content h3 {
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(28, 34, 56, 0.3);
    border-radius: 8px;
    border-top: 3px solid var(--text-white);
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-content img {
    width: 80%;
    height: auto;
    border-radius: 16px;
}

.image-text {
    display: flex;
    flex-direction: column;
}

.image-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.image-text p {
    margin-bottom: 20px;
}

.cta {
    background: rgba(28, 34, 56, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(204, 157, 106, 0.2);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(204, 157, 106, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    animation: wave-flow 15s ease-in-out infinite;
    z-index: 0;
    opacity: 0.9;
}

.cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    animation: shine 7s infinite;
    z-index: 0;
    pointer-events: none;
}

.cta h2 {
    font-size: 36px;
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

/* RTL Support for CTA Section */
[dir="rtl"] .cta h2,
[dir="rtl"] .cta p {
    text-align: right;
}

html[lang="ar"] .cta h2,
html[lang="ar"] .cta p {
    text-align: center;
}

.banner-section {
    text-align: center;
}

.banner-section img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: 40px;
}

.erp-modules-section {
    position: relative;
    overflow: hidden;
}

.erp-modules-wrapper {
    width: 100%;
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .erp-modules-wrapper {
        padding: 0 2.5rem;
    }
}

.erp-modules-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.erp-modules-header {
    text-align: center;
}

.erp-modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .erp-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .erp-modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.erp-module-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.erp-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.erp-module-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.erp-module-card:hover .erp-module-icon-wrapper {
    transform: scale(1.1);
}

.erp-module-icon {
    width: 2rem;
    height: 2rem;
}

.erp-module-icon-wrapper.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.erp-module-icon-wrapper.teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.erp-module-icon-wrapper.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.erp-module-icon-wrapper.rose {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.erp-module-icon-wrapper.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.erp-module-icon-wrapper.indigo {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.erp-module-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.erp-module-card:hover .erp-module-title {
    color: #CC9D6A;
}

.erp-module-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   Detail Sections (CRM, Inventory, HR)
   ============================================ */

.crm-detail-section,
.inventory-detail-section,
.hr-detail-section {
    position: relative;
    overflow: hidden;
}

.detail-section-wrapper {
    width: 100%;
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .detail-section-wrapper {
        padding: 0 2.5rem;
    }
}

.detail-section-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .detail-section-container {
        flex-direction: row;
        gap: 5rem;
    }
    
    .detail-section-container.reverse {
        flex-direction: row-reverse;
    }
}

.detail-section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.detail-section-visual {
    flex: 1;
    position: relative;
}

.detail-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    width: fit-content;
}

.detail-section-badge.orange {
    background: rgba(249, 115, 22, 0.1);
}

.detail-section-badge.teal {
    background: rgba(20, 184, 166, 0.1);
}

.detail-section-badge.sky {
    background: rgba(14, 165, 233, 0.1);
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

.detail-section-badge.orange .badge-icon,
.detail-section-badge.orange .badge-text {
    color: #f97316;
}

.detail-section-badge.teal .badge-icon,
.detail-section-badge.teal .badge-text {
    color: #14b8a6;
}

.detail-section-badge.sky .badge-icon,
.detail-section-badge.sky .badge-text {
    color: #0ea5e9;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .detail-section-title {
        font-size: 2.25rem;
    }
}

.highlight-orange {
    color: #f97316;
}

.highlight-teal {
    color: #14b8a6;
}

.highlight-sky {
    color: #0ea5e9;
}

.detail-section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CRM Section Specific */
.detail-section-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .detail-section-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.feature-card-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.feature-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-card-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.crm-card-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.crm-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.crm-card-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.crm-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
}

.crm-profile-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.crm-profile-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.crm-status-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.crm-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crm-interaction {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.crm-interaction-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.25rem;
}

.crm-interaction-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.crm-icon {
    width: 1rem;
    height: 1rem;
}

.crm-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.crm-metric {
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

.crm-metric.blue {
    background: rgba(59, 130, 246, 0.1);
}

.crm-metric.purple {
    background: rgba(168, 85, 247, 0.1);
}

.crm-metric.green {
    background: rgba(34, 197, 94, 0.1);
}

.crm-metric-value {
    font-size: 1.125rem;
    font-weight: 700;
}

.crm-metric.blue .crm-metric-value {
    color: #3b82f6;
}

.crm-metric.purple .crm-metric-value {
    color: #a855f7;
}

.crm-metric.green .crm-metric-value {
    color: #22c55e;
}

.crm-metric-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.crm-metric.blue .crm-metric-label {
    color: #60a5fa;
}

.crm-metric.purple .crm-metric-label {
    color: #c084fc;
}

.crm-metric.green .crm-metric-label {
    color: #4ade80;
}

/* Inventory Section Specific */
.detail-section-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.list-item-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.list-item-icon.teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.list-item-icon svg {
    width: 0.875rem;
    height: 0.875rem;
}

.list-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.list-item-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.inventory-dashboard-mockup {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header {
    background: #334155;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #eab308;
}

.dot.green {
    background: #22c55e;
}

.dashboard-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
}

.dashboard-content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-card.full {
    grid-column: span 2;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
}

.dashboard-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.dashboard-change {
    font-size: 0.75rem;
    font-weight: 700;
}

.dashboard-change.positive {
    color: #14b8a6;
}

.dashboard-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.dashboard-progress {
    margin-top: 0.75rem;
    height: 0.375rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #14b8a6;
    border-radius: 9999px;
}

.dashboard-status {
    font-size: 0.625rem;
    margin-top: 0.25rem;
}

.dashboard-status.positive {
    color: #22c55e;
}

.dashboard-status.negative {
    color: #ef4444;
}

.dashboard-movements {
    grid-column: span 2;
    margin-top: 0.5rem;
}

.movements-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.movement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.movement-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.movement-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
}

.movement-dot.green {
    background: #22c55e;
}

.movement-dot.blue {
    background: #3b82f6;
}

/* HR Section Specific */
.hr-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
}

.hr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hr-image-container:hover .hr-image {
    transform: scale(1.05);
}

.hr-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.hr-overlay-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 0.75rem;
    max-width: 20rem;
    transform: translateY(0.5rem);
    transition: transform 0.5s ease;
}

.hr-image-container:hover .hr-overlay-card {
    transform: translateY(0);
}

.hr-overlay-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.hr-overlay-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.hr-overlay-icon svg {
    width: 0.875rem;
    height: 0.875rem;
}

.hr-overlay-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
}

.hr-overlay-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    margin: 0;
}

.hr-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .hr-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1rem;
        row-gap: 1.5rem;
    }
}

.hr-feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hr-feature-icon {
    width: 3rem;
    height: 3rem;
}

.hr-feature-icon.sky {
    color: #0ea5e9;
}

.hr-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.hr-feature-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Accounting Section Specific */
.accounting-detail-section,
.operations-detail-section {
    position: relative;
    overflow: hidden;
}

.detail-section-badge.purple {
    background: rgba(168, 85, 247, 0.1);
}

.detail-section-badge.purple .badge-icon,
.detail-section-badge.purple .badge-text {
    color: #a855f7;
}

.detail-section-badge.amber {
    background: rgba(245, 158, 11, 0.1);
}

.detail-section-badge.amber .badge-icon,
.detail-section-badge.amber .badge-text {
    color: #f59e0b;
}

.highlight-purple {
    color: #a855f7;
}

.highlight-amber {
    color: #f59e0b;
}

.list-item-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.list-item-icon.amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.accounting-image-container,
.operations-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.accounting-image,
.operations-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.accounting-image-container:hover .accounting-image,
.operations-image-container:hover .operations-image {
    transform: scale(1.05);
}

/* Features Section Specific */
.features-detail-section {
    position: relative;
    overflow: hidden;
}

.detail-section-badge.blue {
    background: rgba(59, 130, 246, 0.1);
}

.detail-section-badge.blue .badge-icon,
.detail-section-badge.blue .badge-text {
    color: #3b82f6;
}

.highlight-blue {
    color: #3b82f6;
}

.list-item-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.features-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
}

.features-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.features-image-container:hover .features-image {
    transform: scale(1.05);
}

/* Promises Section Specific */
.promises-detail-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.promises-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.detail-section-badge.green {
    background: rgba(34, 197, 94, 0.1);
    margin: 0 auto 1.5rem;
}

.detail-section-badge.green .badge-icon,
.detail-section-badge.green .badge-text {
    color: #22c55e;
}

.highlight-green {
    color: #22c55e;
}

.promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Easy CTA Section */
.easy-cta-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.easy-cta-box {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.easy-cta-wave-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Perfect Fit Section */
.perfect-fit-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

/* Old CRM, Inventory, HR Sections */
.crm-old-detail-section,
.inventory-old-detail-section,
.hr-old-detail-section {
    position: relative;
    overflow: hidden;
}

.crm-old-image-container,
.inventory-old-image-container,
.hr-old-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.crm-old-image,
.inventory-old-image,
.hr-old-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.crm-old-image-container:hover .crm-old-image,
.inventory-old-image-container:hover .inventory-old-image,
.hr-old-image-container:hover .hr-old-image {
    transform: scale(1.05);
}

/* Why Choose Section */
.why-choose-detail-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.why-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.detail-section-badge.indigo {
    background: rgba(99, 102, 241, 0.1);
    margin: 0 auto 1.5rem;
}

.detail-section-badge.indigo .badge-icon,
.detail-section-badge.indigo .badge-text {
    color: #6366f1;
}

.why-choose-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.why-choose-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-choose-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-image-container:hover .why-choose-image {
    transform: scale(1.05);
}

/* Industries Modern Section */
.industries-modern-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.industries-modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.detail-section-badge.rose {
    background: rgba(244, 63, 94, 0.1);
    margin: 0 auto 1.5rem;
}

.detail-section-badge.rose .badge-icon,
.detail-section-badge.rose .badge-text {
    color: #f43f5e;
}

.highlight-rose {
    color: #f43f5e;
}

.industries-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-modern-card {
    background: rgba(28, 34, 56, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.industry-modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 20px 40px rgba(244, 63, 94, 0.2);
}

.industry-modern-card:hover .industry-modern-title,
.industry-modern-card:hover .industry-modern-desc {
    color: rgba(255, 255, 255, 1);
}

.industry-modern-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.industry-modern-icon.rose {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.industry-modern-card:hover .industry-modern-icon {
    transform: scale(1.1);
}

.industry-modern-icon svg {
    width: 32px;
    height: 32px;
}

.industry-modern-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
}

.industry-modern-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Benefits Modern Section */
.benefits-modern-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.benefits-modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.detail-section-badge.cyan {
    background: rgba(6, 182, 212, 0.1);
    margin: 0 auto 1.5rem;
}

.detail-section-badge.cyan .badge-icon,
.detail-section-badge.cyan .badge-text {
    color: #06b6d4;
}

.highlight-cyan {
    color: #06b6d4;
}

.benefits-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-modern-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(28, 34, 56, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.benefit-modern-item:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.15);
}

.benefit-modern-item:hover .benefit-modern-title,
.benefit-modern-item:hover .benefit-modern-desc {
    color: rgba(255, 255, 255, 1);
}

.benefit-modern-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.benefit-modern-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.benefit-modern-item:hover .benefit-modern-icon {
    transform: scale(1.1);
}

.benefit-modern-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-modern-content {
    flex: 1;
}

.benefit-modern-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.benefit-modern-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Stats Modern Section */
.stats-modern-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.stats-modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.detail-section-badge.emerald {
    background: rgba(16, 185, 129, 0.1);
    margin: 0 auto 1.5rem;
}

.detail-section-badge.emerald .badge-icon,
.detail-section-badge.emerald .badge-text {
    color: #10b981;
}

.highlight-emerald {
    color: #10b981;
}

.stats-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-modern-card {
    background: rgba(28, 34, 56, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-modern-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.stat-modern-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-modern-icon.emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-modern-card:hover .stat-modern-icon {
    transform: scale(1.1);
}

.stat-modern-icon svg {
    width: 28px;
    height: 28px;
}

.stat-modern-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.stat-modern-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Business Banner Modern Section */
.business-banner-modern-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.business-banner-modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.detail-section-badge.violet {
    background: rgba(139, 92, 246, 0.1);
    margin: 0 auto 1.5rem;
}

.detail-section-badge.violet .badge-icon,
.detail-section-badge.violet .badge-text {
    color: #8b5cf6;
}

.highlight-violet {
    color: #8b5cf6;
}

.business-banner-image-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.business-banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.business-banner-image-container:hover .business-banner-image {
    transform: scale(1.05);
}

/* Contact Modern Section */
.contact-modern-section {
    position: relative;
    overflow: hidden;
}

.detail-section-badge.gold {
    background: rgba(251, 191, 36, 0.1);
}

.detail-section-badge.gold .badge-icon,
.detail-section-badge.gold .badge-text {
    color: #fbbf24;
}

.highlight-gold {
    color: #fbbf24;
}

.contact-modern-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-modern-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.contact-modern-image-container:hover .contact-modern-image {
    transform: scale(1.05);
}

.accounting-section,
.operations-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
}

.accounting-section::before,
.operations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 35% 35%, rgba(204, 157, 106, 0.16) 0%, transparent 50%),
                radial-gradient(ellipse at 65% 65%, rgba(255, 184, 77, 0.14) 0%, transparent 50%);
    filter: blur(65px);
    animation: wave-flow 22s ease-in-out infinite;
    z-index: 0;
    opacity: 0.85;
}

.accounting-section::after,
.operations-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.035) 50%,
        transparent 70%
    );
    animation: shine 11s infinite;
    z-index: 0;
    pointer-events: none;
}

.accounting-section > .container,
.operations-section > .container {
    position: relative;
    z-index: 1;
}

.accounting-content,
.operations-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.accounting-image,
.operations-image {
    width: 70%;
    display: flex;
    justify-content: center;
}

.accounting-text,
.operations-text {
    width: 50%;
    text-align: left;
}

.accounting-features,
.operations-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accounting-feature-item,
.operations-feature-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.feature-check-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
    animation: subtle-pulse 2s ease-in-out infinite;
}

.promises-section {
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.promises-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 70%
    );
    animation: shine 12s infinite;
    z-index: 0;
    pointer-events: none;
}

.promises-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promises-section .section-title {
    text-align: center !important;
}

.promises-section .section-subtitle {
    text-align: center !important;
}

.promises-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(204, 157, 106, 0.08) 0%, transparent 55%);
    filter: blur(70px);
    animation: wave-flow 23s ease-in-out infinite;
    z-index: 0;
}

.promises-section > .container {
    position: relative;
    z-index: 1;
}

.promise-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(28, 34, 56, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.promise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.promise-card:hover .promise-title,
.promise-card:hover .promise-desc {
    color: rgba(255, 255, 255, 1);
}

.promise-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
    text-align: center;
}

.promise-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    transition: all 0.3s ease;
}

.promise-icon svg {
    height: 32px;
    width: 32px;
    transition: transform 0.3s ease;
}

.promise-card:hover .promise-icon {
    transform: scale(1.1);
    background: rgba(34, 197, 94, 0.15);
}

.promise-card:hover .promise-icon svg {
    transform: scale(1.1);
}

.promise-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.promise-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.promise-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.95) 0%,
        rgba(22, 163, 74, 0.95) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 2rem;*/
    transition: height 0.4s ease;
    z-index: 3;
    overflow: hidden;
    border-radius: 1rem;
}

.promise-hover-content p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease 0.15s;
    text-align: center;
    font-weight: 500;
}

.promise-card:hover .promise-hover-content {
    height: 100%;
}

.promise-card:hover .promise-hover-content p {
    opacity: 1;
    padding-left: 25px;
    padding-right: 25px;
}

.easy-cta-section {
    padding: 5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.easy-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 60%, rgba(147, 51, 234, 0.18) 0%, transparent 50%);
    filter: blur(80px);
    animation: wave-flow 16s ease-in-out infinite;
    z-index: 0;
    opacity: 0.85;
}

.easy-cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 70%
    );
    animation: shine 8s infinite;
    z-index: 0;
    pointer-events: none;
}

.easy-cta-box {
    background: linear-gradient(135deg, #3B82F6 0%, #9333EA 50%, #3B82F6 100%);
    border-radius: 1rem;
    padding: 5%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    gap: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.5s ease;
}

.easy-cta-box:hover {
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.perfect-fit-section {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.perfect-fit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 35% 45%, rgba(204, 157, 106, 0.16) 0%, transparent 50%),
                radial-gradient(ellipse at 65% 55%, rgba(255, 184, 77, 0.14) 0%, transparent 50%);
    filter: blur(65px);
    animation: wave-flow 19s ease-in-out infinite;
    z-index: 0;
    opacity: 0.8;
}

.perfect-fit-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 70%
    );
    animation: shine 9s infinite;
    z-index: 0;
    pointer-events: none;
}

.perfect-fit-section > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Animations
   ============================================ */

@keyframes wave-flow {
    0%, 100% {
        transform: translate(0%, 0%);
    }
    50% {
        transform: translate(-3%, 3%);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-decorations,
.erp-decorations,
.accounting-decorations,
.operations-decorations,
.easy-cta-decorations,
.perfect-fit-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
}

.hero-decoration,
.erp-decoration,
.accounting-decoration,
.operations-decoration,
.easy-cta-decoration,
.perfect-fit-decoration {
    position: absolute;
    animation: gentle-float 6s ease-in-out infinite;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .values-grid,
    .team-grid,
    .achievements-grid,
    .locations-grid,
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .erp-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-row,
    .hero-content {
        flex-direction: column;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text,
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .mission-vision-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accounting-content,
    .operations-content {
        flex-direction: column;
    }

    .accounting-image,
    .accounting-text,
    .operations-text,
    .operations-image {
        width: 100%;
    }

    .accounting-text,
    .operations-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .values-grid,
    .team-grid,
    .achievements-grid,
    .categories-grid,
    .locations-grid,
    .faq-grid,
    .promises-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-text {
        order: 1;
    }

    .image-content img {
        order: 2;
    }

    .erp-modules-grid {
        grid-template-columns: 1fr;
    }

    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promises-section {
        padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 0 1rem;
    }

    .section {
        padding: 60px 1rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .search-button {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .industries-grid,
    .stats-grid,
    .promises-grid {
        grid-template-columns: 1fr;
    }

    .promise-desc {
        font-size: 1rem;
    }
    
    .promise-hover-content p {
        font-size: 0.9rem;
    }
}

/* ============================================
   RTL Support for Arabic
   ============================================ */

html[dir="rtl"] body,
html[dir="rtl"] .hero-text,
html[dir="rtl"] .accounting-text,
html[dir="rtl"] .operations-text,
html[dir="rtl"] .promise-title,
html[dir="rtl"] .promise-desc,
html[dir="rtl"] .erp-module-card,
html[dir="rtl"] .image-text,
html[dir="rtl"] .hero-modern-text-inner {
    text-align: right;
}

/* Keep centered elements centered in RTL */
html[dir="rtl"] .section-title,
html[dir="rtl"] .section-subtitle,
html[dir="rtl"] .hero-modern-title,
html[dir="rtl"] .hero-modern-subtitle {
    text-align: right;
}

html[dir="rtl"] .hero-features {
    justify-content: flex-end;
}

html[dir="rtl"] .accounting-feature-item,
html[dir="rtl"] .operations-feature-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .feature-check-icon {
    margin-right: 0;
    margin-left: 1rem;
}

html[dir="rtl"] .hero-feature-icon {
    margin-right: 0;
    margin-left: 0.5rem;
}

html[dir="rtl"] .hero-content {
    text-align: right;
}

html[dir="rtl"] .accounting-text,
html[dir="rtl"] .operations-text {
    text-align: right;
}

html[dir="rtl"] .image-content {
    direction: rtl;
}

html[dir="rtl"] .image-text {
    text-align: right;
}

/* ============================================
   Modern Navbar Styles - Tailwind Inspired
   ============================================ */

/* Main Navbar Container */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(28, 34, 56, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(240, 242, 244, 0.1);
    font-family: "Manrope", sans-serif;
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    padding: 0 2.5rem;
}

.navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    padding: 1rem 0;
}

/* Logo Section */
.navbar-logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.navbar-logo-link:hover {
    opacity: 0.8;
}

.navbar-logo-img {
    width: 198px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Desktop Navigation Links */
.navbar-links-desktop {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
}

.navbar-link:hover {
    color: #CC9D6A;
    text-decoration: none;
}

/* Dropdown Styles - Modern Design */
.navbar-dropdown {
    position: relative;
}

.navbar-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.navbar-dropdown-toggle:hover {
    color: #CC9D6A;
}

.navbar-dropdown-icon {
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.navbar-dropdown.active .navbar-dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.navbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #ffffff;
    border: 1px solid rgba(219, 224, 230, 1);
    border-radius: 0.75rem;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
}

.navbar-dropdown.active .navbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.navbar-dropdown-item {
    display: flex;
    align-items: center;
    color: #111418;
    text-decoration: none;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.navbar-dropdown-item:hover {
    background: rgba(43, 140, 238, 0.08);
    color: #2b8cee;
    text-decoration: none;
}

/* Individual Dropdown Widths */
#servicesDropdown .navbar-dropdown-menu {
    min-width: 240px;
    width: max-content;
}

#languageDropdown .navbar-dropdown-menu {
    min-width: 120px;
    width: max-content;
}

/* RTL Support for Arabic */
[dir="rtl"] .navbar-dropdown-menu {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(-8px);
}

[dir="rtl"] .navbar-dropdown.active .navbar-dropdown-menu {
    transform: translateX(50%) translateY(0);
}

[dir="rtl"] .navbar-dropdown-item {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .navbar-dropdown-toggle {
    flex-direction: row-reverse;
}

/* Dark mode support for dropdowns */
@media (prefers-color-scheme: dark) {
    .navbar-dropdown-menu {
        background: #1A2633;
        border-color: #303f50;
    }
    
    .navbar-dropdown-item {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .navbar-dropdown-item:hover {
        background: rgba(43, 140, 238, 0.15);
        color: #2b8cee;
    }
}

/* Action Buttons Section */
.navbar-actions-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-btn-secondary {
    display: flex;
    min-width: 84px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    background: rgba(240, 242, 244, 0.1);
    color: #ffffff;
    border: 1px solid rgba(204, 157, 106, 0.3);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    transition: all 0.3s ease;
}

.navbar-btn-secondary:hover {
    background: rgba(204, 157, 106, 0.2);
    border-color: #CC9D6A;
    color: #ffffff;
    text-decoration: none;
}

.navbar-btn-primary {
    display: flex;
    min-width: 84px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    background: #CC9D6A;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    transition: all 0.3s ease;
    border: none;
}

.navbar-btn-primary:hover {
    background: #B8895A;
    color: #ffffff;
    text-decoration: none;
}

.navbar-btn-primary span,
.navbar-btn-secondary span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile Menu Toggle */
.navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.navbar-mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(28, 34, 56, 0.98);
    padding: 1rem;
    z-index: 999;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.navbar-mobile-menu::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.navbar-mobile-menu.active {
    transform: translateY(0);
    display: block;
}

.navbar-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.navbar-mobile-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.navbar-mobile-link:hover {
    background: rgba(204, 157, 106, 0.15);
    color: #CC9D6A;
    text-decoration: none;
}

.navbar-mobile-submenu {
    padding-left: 2rem;
    font-size: 0.875rem;
    background: rgba(16, 22, 46, 0.5);
    border-left: 3px solid #CC9D6A;
}

.navbar-mobile-lang {
    margin-top: 1rem;
    padding: 0 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .navbar-links-desktop {
        gap: 1.5rem;
    }
    
    .navbar-link {
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        
        padding: 0 0rem;
    }
    
    .navbar-header {
        margin: 0 -65px;
        padding: 0.75rem 0;
    }
    
    .navbar-links-desktop {
        display: none;
    }
    
    .navbar-mobile-toggle {
        display: block;
    }
    
    .navbar-logo-img {
        width: 140px;
        height: 32px;
    }
    
    .navbar-btn-secondary {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar-logo-img {
        width: 120px;
        height: 28px;
    }
    
    .navbar-btn-primary {
        min-width: 70px;
        padding: 0 0.75rem;
        font-size: 0.8125rem;
    }
}

/* TailwindCSS Menu Color Override */
.tw-dw-menu :where(li:not(.tw-dw-menu-title)>:not(ul,details,.tw-dw-menu-title,.tw-dw-btn)), 
.tw-dw-menu :where(li:not(.tw-dw-menu-title)>details>summary:not(.tw-dw-menu-title)) {
    color: black;
}

/* ============================================
   CTA Section Styles
   ============================================ */

.cta-section-wrapper {
    width: 100%;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    background: var(--bg-dark);
}

.cta-section-container {
    width: 100%;
    max-width: 1280px;
    border-radius: 1.5rem;
    background: #2b8cee;
    color: #ffffff;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 25px 50px -12px rgba(43, 140, 238, 0.2);
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .cta-section-container {
        padding: 4rem;
    }
}

.cta-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .cta-section-content {
        flex-direction: row;
    }
}

.cta-decorative-circle {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.cta-circle-top {
    top: 0;
    right: 0;
    margin-top: -5rem;
    margin-right: -5rem;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle-bottom {
    bottom: 0;
    left: 0;
    margin-bottom: -5rem;
    margin-left: -5rem;
    background: rgba(0, 0, 0, 0.1);
}

.cta-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* RTL Support for CTA Section Wrapper */
[dir="rtl"] .cta-text-content,
html[lang="ar"] .cta-text-content {
    text-align: right;
}

[dir="rtl"] .cta-text-content h2,
[dir="rtl"] .cta-text-content p,
html[lang="ar"] .cta-text-content h2,
html[lang="ar"] .cta-text-content p {
    text-align: right;
}

@media (min-width: 768px) {
    .cta-text-content {
        text-align: left;
    }
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-subtitle {
    color: rgba(219, 234, 254, 1);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 40rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-btn-primary {
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #2b8cee;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cta-btn-primary:hover {
    background: rgba(239, 246, 255, 1);
    text-decoration: none;
    color: #2b8cee;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    padding: 0.875rem 2rem;
    background: rgba(29, 78, 216, 0.5);
    color: #ffffff;
    border: 1px solid rgba(147, 197, 253, 0.3);
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-btn-secondary:hover {
    background: rgba(29, 78, 216, 1);
    text-decoration: none;
    color: #ffffff;
}

/* ============================================
   Modern Footer Styles
   ============================================ */

.footer-modern {
    background: rgba(240, 242, 244, 1);
    border-top: 1px solid rgba(226, 232, 240, 1);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-modern-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .footer-modern-wrapper {
        padding: 0 2.5rem;
    }
}

.footer-modern-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand-section {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .footer-brand-section {
        grid-column: span 1;
    }
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #111418;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-icon {
    width: auto;
    height: 1.5rem;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.footer-brand-description {
    color: rgba(100, 116, 139, 1);
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 20rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-title {
    font-weight: 700;
    color: #111418;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}

.footer-link {
    color: rgba(100, 116, 139, 1);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #2b8cee;
    text-decoration: none;
}

.footer-bottom-modern {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 1);
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .footer-bottom-modern {
        flex-direction: row;
    }
}

.footer-copyright-modern {
    color: rgba(100, 116, 139, 1);
    font-size: 0.875rem;
    margin: 0;
}

.footer-social-modern {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: rgba(148, 163, 184, 1);
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: #2b8cee;
}

.footer-social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* RTL Support for Footer */
[dir="rtl"] .footer-brand-section {
    align-items: flex-start;
}

[dir="rtl"] .footer-brand-header {
    justify-content: flex-start;
}

[dir="rtl"] .footer-brand-description {
    text-align: right;
}

[dir="rtl"] .footer-column {
    text-align: right;
}

[dir="rtl"] .footer-bottom-modern {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    [dir="rtl"] .footer-bottom-modern {
        flex-direction: row-reverse;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .footer-modern {
        background: #0d141c;
        border-top-color: rgba(51, 65, 85, 1);
    }
    
    .footer-brand-header,
    .footer-column-title {
        color: #ffffff;
    }
    
    .footer-brand-description,
    .footer-link,
    .footer-copyright-modern {
        color: rgba(148, 163, 184, 1);
    }
    
    .footer-link:hover {
        color: #2b8cee;
    }
    
    .footer-bottom-modern {
        border-top-color: rgba(51, 65, 85, 1);
    }
}

/* Old footer styles kept for backward compatibility */
.footer-newsletter {
    margin-top: 1.5rem;
}

.footer-newsletter-form-group {
    display: flex;
    margin-top: 1rem;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 0 0 4px;
    color: #ffffff;
    font-size: 0.875rem;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
    border-color: #CC9D6A;
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter-button {
    padding: 0.75rem 1rem;
    background: #CC9D6A;
    color: #ffffff;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
    background: #a87f50;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #CC9D6A;
    color: #10162E;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Font Awesome Icons */
.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

.fa-facebook-f:before { 
    content: "\f39e"; 
}

.fa-twitter:before { 
    content: "\f099"; 
}

.fa-linkedin-in:before { 
    content: "\f0e1"; 
}

.fa-instagram:before { 
    content: "\f16d"; 
}

.fa-whatsapp:before {
    content: "\f232";
}

/* Footer RTL Support */
html[dir="rtl"] .footer-links a:hover {
    padding-right: 5px;
    padding-left: 0;
}

html[dir="rtl"] .footer-links a::after {
    left: auto;
    right: 0;
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-banner {
        padding: 2rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 1rem 1rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-custom .container-fluid {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section-about {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-banner {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-banner-title {
        font-size: 1.5rem;
    }
    
    .footer-banner-text {
        font-size: 1rem;
    }
    
    .footer-banner-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

