/* ==========================================================================
   Petros Custom Theme - Design System & Stylesheet (Professional Light Layout)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Core Variables
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Clean Corporate Light Theme */
    --color-bg-dark: #ffffff; /* Main page background */
    --color-bg-slate: #f8fafc; /* Alternating light section background */
    --color-bg-card: #ffffff;
    --color-gold: #c5a85c; /* Sophisticated Dubai Gold */
    --color-gold-hover: #a3843b;
    --color-gold-rgb: 197, 168, 92;
    
    /* Text colors */
    --color-text-light: #ffffff; /* For dark components/overlays */
    --color-text-body: #334155; /* Slate-700 for body reading */
    --color-text-headings: #0f172a; /* Slate-900 for high contrast headers */
    --color-text-muted: #64748b; /* Slate-500 for secondary text */
    
    /* Borders & Accents */
    --color-border: #e2e8f0; /* Crisp light gray border */
    --color-border-glow: rgba(197, 168, 92, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(15, 23, 42, 0.08);

    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --section-padding-mobile: 60px 0;

    /* Transitions & Shadows */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 40px -10px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 20px 45px -12px rgba(15, 23, 42, 0.12);
    --shadow-gold: 0 0 25px rgba(197, 168, 92, 0.1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-text-headings);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-headings);
    font-weight: 700;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   3. Typography & Utility Classes
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.text-gold {
    color: var(--color-gold);
}

.text-center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-lead {
    color: var(--color-text-muted);
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-headings);
}

/* Glassmorphism utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-text-light);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 10px 25px rgba(197, 168, 92, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-headings);
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. Site Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-branding .custom-logo {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
    /* Filter to keep logo visible on transparent or white background if needed */
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
    color: var(--color-text-headings);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-headings);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   6. Hero & Stats Sections
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-text-headings);
}

.hero-content p {
    font-size: 18px;
    color: var(--color-text-body);
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(197, 168, 92, 0.08);
    border: 1px solid rgba(197, 168, 92, 0.25);
    color: var(--color-gold-hover);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

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

.hero-glass-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(197, 168, 92, 0.2);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.hero-glass-card .card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-glass-card h3 {
    font-size: 24px;
    color: var(--color-text-headings);
    margin-bottom: 12px;
}

.hero-glass-card p {
    color: var(--color-text-body);
    font-size: 15px;
    margin-bottom: 20px;
}

.card-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: 20px 0;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-headings);
}

/* Stats */
.stats-section {
    background-color: var(--color-bg-slate);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. About Section & Tabs
   -------------------------------------------------------------------------- */
.about-section {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-main-img {
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-border);
}

.floating-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-gold);
    color: var(--color-text-light);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(197, 168, 92, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-years {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-subtitle {
    font-size: 20px;
    color: var(--color-gold-hover);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}

.about-tabs-container {
    margin-top: 40px;
    background-color: var(--color-bg-slate);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    padding: 24px;
}

.about-tabs-header {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 20px;
    gap: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    color: var(--color-gold-hover);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.lead-text {
    font-size: 18px;
    font-style: italic;
    color: var(--color-text-headings);
    margin-bottom: 12px;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.list-bullet {
    color: var(--color-gold);
    font-weight: bold;
}

/* --------------------------------------------------------------------------
   8. Why Dubai Section
   -------------------------------------------------------------------------- */
.why-dubai-section {
    background-color: var(--color-bg-slate);
    padding: var(--section-padding);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.why-dubai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-premium);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
}

.why-card-icon {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: rgba(197, 168, 92, 0.25);
    line-height: 1;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--color-text-body);
    font-size: 15px;
    margin: 0;
}

.span-col-2 {
    grid-column: span 2;
}

/* --------------------------------------------------------------------------
   9. Industries Grid Section
   -------------------------------------------------------------------------- */
.industries-section {
    padding: var(--section-padding);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    border-radius: 16px;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 15%, rgba(15, 23, 42, 0.2) 100%);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
}

.industry-card:hover::before {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 35%, rgba(15, 23, 42, 0.3) 100%);
}

.industry-card-content {
    position: relative;
    z-index: 10;
    padding: 30px;
    transition: var(--transition-smooth);
}

.industry-card-content h3 {
    color: var(--color-text-light);
}

.industry-icon {
    font-size: 36px;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
    transform: scale(1.15);
}

.industry-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.industry-card p {
    color: #cbd5e1; /* Light gray text on image card overlay */
    font-size: 14px;
    margin: 0;
}

.span-center {
    grid-column: span 2;
}

/* --------------------------------------------------------------------------
   10. Services & Accordion
   -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--color-bg-slate);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-subtitle {
    font-size: 20px;
    color: var(--color-gold-hover);
    font-weight: 600;
    margin-bottom: 20px;
}

.services-intro p {
    color: var(--color-text-body);
    font-size: 16px;
    margin-bottom: 30px;
}

.services-graphic-card {
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
}

.services-graphic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
    border-radius: 15px;
}

.services-graphic-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    position: relative;
    color: var(--color-text-light);
}

.services-graphic-card p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 24px;
    position: relative;
}

.services-graphic-card .btn {
    position: relative;
}

.services-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-accordion-item {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.service-accordion-item.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.accordion-number {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold-hover);
    margin-right: 20px;
}

.accordion-header h4 {
    font-size: 18px;
    margin: 0;
    flex-grow: 1;
    color: var(--color-text-headings);
}

.accordion-toggle-icon {
    font-size: 20px;
    color: var(--color-text-muted);
    font-weight: bold;
}

.accordion-content {
    padding: 0 30px 24px 68px;
    display: none;
    color: var(--color-text-body);
    font-size: 15px;
}

.service-accordion-item.active .accordion-content {
    display: block;
    animation: slideDown 0.3s ease-out;
}

/* --------------------------------------------------------------------------
   11. Case Study & Timeline
   -------------------------------------------------------------------------- */
.case-study-section {
    padding: var(--section-padding);
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.case-study-subtitle {
    font-size: 20px;
    color: var(--color-gold-hover);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

.case-study-card {
    background-color: var(--color-bg-slate);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
}

.case-study-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.case-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.case-bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.case-bullets li::before {
    content: '▶';
    color: var(--color-gold);
    font-size: 12px;
    margin-top: 4px;
}

.case-result-box {
    background-color: rgba(197, 168, 92, 0.1);
    border-left: 3px solid var(--color-gold);
    padding: 20px;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--color-text-headings);
    font-weight: 600;
}

.case-quote {
    color: var(--color-text-muted);
    margin: 0;
}

.case-study-graphic {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-img-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
}

.case-img {
    width: 100%;
    object-fit: cover;
    height: 280px;
}

.timeline-box {
    background-color: var(--color-bg-slate);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    padding: 30px;
}

.timeline-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--color-border);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 30%;
    text-align: center;
}

.step-month {
    width: 36px;
    height: 36px;
    background-color: var(--color-bg-dark);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gold-hover);
    margin-bottom: 12px;
}

.step-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-headings);
}

/* --------------------------------------------------------------------------
   12. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-choose-section {
    background-color: var(--color-bg-slate);
    padding: var(--section-padding);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-card {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.choose-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.choose-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.choose-card p {
    color: var(--color-text-body);
    font-size: 14px;
    margin: 0;
}

/* --------------------------------------------------------------------------
   13. FAQs Section
   -------------------------------------------------------------------------- */
.faqs-section {
    padding: var(--section-padding);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.faq-intro h2 {
    font-size: 40px;
    font-weight: 800;
}

.faq-cta-box {
    margin-top: 30px;
    padding: 24px;
    background-color: var(--color-bg-slate);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.faq-cta-box p {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-headings);
}

.text-link {
    color: var(--color-gold-hover);
    font-weight: 700;
}

.text-link:hover {
    color: var(--color-text-headings);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    color: var(--color-text-headings);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--color-gold-hover);
}

.faq-icon {
    font-size: 20px;
    color: var(--color-gold);
    margin-left: 20px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content p {
    color: var(--color-text-body);
    font-size: 15px;
    padding-bottom: 24px;
    margin: 0;
}

/* --------------------------------------------------------------------------
   14. CTA Banner Section (Closing Contrast Panel)
   -------------------------------------------------------------------------- */
.cta-banner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--color-text-light);
}

.cta-banner-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-container h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.cta-banner-container p {
    color: #cbd5e1;
    font-size: 18px;
    margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   15. Site Footer (Professional Light Footer)
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-bg-slate); /* Light gray footer background */
    border-top: 1px solid var(--color-border);
    padding-top: 80px;
    color: var(--color-text-body);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 60px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-blurb {
    color: var(--color-text-body);
    font-size: 14.5px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-info-list-brief {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-list-brief li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
}

.contact-info-list-brief .contact-text {
    color: var(--color-text-body);
    font-weight: 500;
}

.contact-info-list-brief .contact-text:hover {
    color: var(--color-gold-hover);
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
    color: var(--color-text-headings);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-gold);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--color-text-body);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--color-gold-hover);
    padding-left: 5px;
}

.footer-address-heading {
    margin-top: 30px !important;
}

.footer-address-text {
    font-size: 14.5px;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 10px 0 0 0;
}

/* Contact Form 7 Form Integration */
.footer-form-wrapper form p {
    margin-bottom: 16px;
}

.footer-form-wrapper form input[type="text"],
.footer-form-wrapper form input[type="email"],
.footer-form-wrapper form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-headings);
    font-family: var(--font-body);
    font-size: 14.5px;
    outline: none;
    transition: var(--transition-smooth);
}

.footer-form-wrapper form input[type="text"]:focus,
.footer-form-wrapper form input[type="email"]:focus,
.footer-form-wrapper form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-border-glow);
    background-color: #ffffff;
}

.footer-form-wrapper form input[type="submit"],
.fallback-contact-form button[type="submit"] {
    background-color: #131e35; /* Navy Blue */
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: var(--transition-smooth);
}

.footer-form-wrapper form input[type="submit"]:hover,
.fallback-contact-form button[type="submit"]:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 168, 92, 0.2);
}

.footer-bottom {
    background-color: #ffffff;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
}

.footer-bottom-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 13.5px;
}

.copyright, .developed-by {
    margin: 0;
}

/* --------------------------------------------------------------------------
   16. Blog & Archive Grid Layout (Light Professional)
   -------------------------------------------------------------------------- */
.page-header-banner {
    background-color: var(--color-bg-slate);
    border-bottom: 1px solid var(--color-border);
    padding: 120px 0 60px 0;
    text-align: center;
}

.banner-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: var(--color-text-headings);
}

.page-subtitle {
    color: var(--color-text-muted);
    font-size: 16px;
    margin: 0;
}

.blog-archive-container {
    padding: 80px 24px;
    background-color: var(--color-bg-dark);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-hover);
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.fallback-thumbnail {
    width: 100%;
    height: 220px;
    background-color: var(--color-bg-slate);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-icon {
    font-size: 48px;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.blog-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--color-text-headings);
}

.blog-card-title a:hover {
    color: var(--color-gold-hover);
}

.blog-card-excerpt {
    color: var(--color-text-body);
    font-size: 14px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-read-more {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold-hover);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-read-more .arrow {
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    color: var(--color-text-headings);
}

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

/* Pagination */
.posts-pagination {
    text-align: center;
}

.posts-pagination .nav-links {
    display: inline-flex;
    gap: 8px;
}

.posts-pagination .page-numbers {
    padding: 10px 18px;
    border-radius: 50px;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-headings);
}

.posts-pagination .page-numbers:hover,
.posts-pagination .page-numbers.current {
    background-color: var(--color-gold);
    color: var(--color-text-light);
    border-color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   17. Single Post Details Layout (Light Professional)
   -------------------------------------------------------------------------- */
.single-post-article {
    padding-bottom: 80px;
    background-color: var(--color-bg-dark);
}

.post-meta-top {
    font-size: 13px;
    color: var(--color-gold-hover);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.post-divider {
    color: var(--color-border);
}

.post-category a {
    color: var(--color-gold-hover);
}

.post-category a:hover {
    color: var(--color-text-headings);
}

.post-content-container {
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 0 24px;
}

.post-featured-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
}

.post-featured-image img {
    width: 100%;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-body);
}

.entry-content p {
    margin-bottom: 24px;
}

.entry-content h2, .entry-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-text-headings);
}

.entry-content ul, .entry-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.entry-content ul {
    list-style-type: disc;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.post-tags {
    font-size: 14px;
}

.tags-title {
    font-weight: bold;
    margin-right: 8px;
    color: var(--color-text-headings);
}

.post-tags a {
    background-color: var(--color-bg-slate);
    border: 1px solid var(--color-border);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 6px;
    color: var(--color-text-body);
}

.post-tags a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-hover);
}

.post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-previous, .nav-next {
    width: 50%;
}

.nav-next {
    text-align: right;
}

.meta-nav {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.post-nav-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-headings);
}

.post-nav-title:hover {
    color: var(--color-gold-hover);
}

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

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

/* --------------------------------------------------------------------------
   19. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .why-dubai-grid {
        grid-template-columns: 1fr 1fr;
    }

    .span-col-2 {
        grid-column: span 2;
    }

    .industries-grid {
        grid-template-columns: 1.5fr 1.5fr;
    }

    .span-center {
        grid-column: span 2;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 768px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-bg-dark);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
    }

    .navigation-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: 18px;
        width: 100%;
        display: block;
    }

    .header-cta {
        width: 100%;
    }

    .header-cta .btn {
        width: 100%;
    }

    /* Active Hamburger Menu Animation */
    .mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Font sizes */
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 15px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .why-dubai-grid {
        grid-template-columns: 1fr;
    }

    .span-col-2 {
        grid-column: span 1;
    }

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

    .span-center {
        grid-column: span 1;
    }

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

    .post-navigation .nav-links {
        flex-direction: column;
    }

    .nav-previous, .nav-next {
        width: 100%;
    }

    .nav-next {
        text-align: left;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
