/* Root Variables - Colors from Stratosphere Events */
:root {
    --primary-color: #D4A574; /* Gold/Bronze */
    --secondary-color: #2C2C2C; /* Dark Gray/Black */
    --tertiary-color: #1A1A1A; /* Deeper Black */
    --accent-color: #E8C9A0; /* Light Gold */
    --text-light: #F5F5F5;
    --text-dark: #333333;
    --background-light: #FFFFFF;
    --background-dark: #0F0F0F;
	--gap: 16px;
    --radius: 22px;
    --shadow: 0 18px 45px rgba(20, 15, 5, .12);
    --overlay: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 85%);
    --ease: cubic-bezier(.2,.8,.2,1);
	
	--gold: #D4A574;
    --gold-light: #E8C9A0;
    --dark: #111111;
    --dark2: #1C1C1C;
    --dark3: #2C2C2C;
    --cream: #F9F5EF;
    --cream2: #F0EAE0;
    --text: #333333;
    --muted: #888888;
	
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

 /*Logo 
 ============================== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 65px;          /* adjust as needed */
    /* width: 200px; */
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
	font-weight: 500;
}

/* Navigation */
.navbar {
    background-color: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

.brand-text {
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.brand-icon {
    color: var(--primary-color);
    margin: 0 5px;
}

.brand-subtitle {
    font-size: 0.65rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-top: -5px;
}

/* TRANSPARENT BLACK NAVBAR */
.art-navbar {
    background: rgba(0, 0, 0, 0.65); /* transparent black */
    backdrop-filter: blur(10px); /* glass effect */
    transition: transform 0.4s ease, background 0.3s ease;
}

/* NAVBAR HIDDEN */
.art-navbar.nav-hidden {
    transform: translateY(-100%);
}

/* NAVBAR VISIBLE */
.art-navbar.nav-visible {
    transform: translateY(0);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-size: 1rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.contact-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 8px 20px !important;
    border-radius: 25px;
    margin-left: 20px !important;
}

.navbar-nav .nav-link.contact-btn.active {
	background: var(--primary-color);
    color: #fff !important;
}

.contact-btn.active {
    background: var(--primary-color);
    color: #fff !important;
}

.contact-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    background: 
	linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
				url('../images/hero-bg.jpg');
                /* url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C2C2C" width="1200" height="600"/><g><circle fill="%23D4A574" opacity="0.1" cx="100" cy="100" r="80"/><circle fill="%23D4A574" opacity="0.1" cx="1000" cy="400" r="120"/><circle fill="%23D4A574" opacity="0.1" cx="600" cy="500" r="100"/></g></svg>'); */
	background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    position: relative;
    padding-top: 100px;
	border-bottom-left-radius:200px;
	overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(160, 130, 64, 0.1) 0%, rgba(201,169,97, 0.15) 100%);
	/* background: linear-gradient(145deg, var(--secondary-color) 80%, var(--primary-color) 90%); */
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title, .hero-subtitle, .btn {
    position: relative;
    z-index: 10;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: var(--secondary-color);
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Services Preview Section */
.services-preview {
    background-color: #F8F8F8;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #E0E0E0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 1rem;
}

/* About Preview Section */
.about-preview {
    padding: 40px 0;
}

.about-image-wrapper {
    position: relative;
    height: 400px;
}

.about-image {
    width: 100%;
    height: 100%; 
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); */
	/* background: url('../images/home.jpg'); */
	background: url('../images/about.jpg');
	/* linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), */
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* .about-image::before { */
    /* content: ''; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* width: 80%; */
    /* height: 100%; */
	/* background: url('../images/about.jpg'); */
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="50%" y="50%" text-anchor="middle" dy=".3em" fill="rgba(255,255,255,0.1)" font-size="120" font-family="monospace">{ }</text></svg>'); */
    /* background-size: contain; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
/* } */

/* Stats Section */
.stats-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* All Services Section */
.all-services {
    background-color: white;
}

.service-box {
    background-color: #F8F8F8;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-box:hover {
    background-color: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-box-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-box h5 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-box p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #F8F8F8;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--tertiary-color);
    color: var(--text-light);
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
	display: flex;
    align-items: flex-start;
    color: var(--text-light);
}

.footer-contact li i {
    width: 25px;
    margin-right: 12px;
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact li span {
    flex: 1;          
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(212, 165, 116, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Page Header */
.page-header {
    /* padding: 150px 0 80px; */
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%); */
    /* color: var(--text-light); */
	height: 60vh;
    display: flex;
    align-items: center;
	text-align: center;
    background: 
	linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
				url('../images/hero-bg.jpg');
	background-size: cover;
    background-position: center;
	color: var(--text-light);
    /* background-attachment: fixed; */
    position: relative;
	padding-top: 100px;
    /* padding-top: 200x; */
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
}

    #design6 { padding-top: 25px; 0; }

    .d6-rule { width: 40px; height: 1px; background: #b8960c; margin: 0 auto 20px; }
    .d6-sub {
      text-align: center; font-family: 'Space Mono', monospace;
      font-size: 10px; letter-spacing: 5px; color: #b8960c;
      text-transform: uppercase; margin-bottom: 16px;
    }
    h2 {
      text-align: center; font-size: clamp(36px,5vw,54px);
      color: #1a1208; font-weight: 300; 
      margin-bottom: 50px;
    }
    .d6-item { text-align: center; padding: 0 20px; margin-bottom: 40px; }
    .d6-icon-ring {
      width: 80px; height: 80px; border-radius: 50%;
      border: 1px solid #b8960c; display: flex; align-items: center;
      justify-content: center; margin: 0 auto 24px; font-size: 28px; color: #D4A574;
      transition: background .3s, color .3s;
    }
    .d6-item:hover .d6-icon-ring { background: #D4A574; color: #fff; }
    .d6-item h3 { font-size: 22px; color: #1a1208; margin-bottom: 10px; font-weight: 600; }
    .d6-item p { font-family: 'DM Sans', sans-serif; font-size: 14px; color: #7a6c50; line-height: 1.7; }
    .d6-divider {
      display: flex; align-items: center; gap: 12px; justify-content: center;
      margin: 50px 0 0; color: #c9b370;
    }
    .d6-divider::before, .d6-divider::after {
      content: ''; flex: 1; max-width: 120px; height: 1px; background: #d4c49a;
    }

/* About Page Styles */
.about-content {
    background-color: white;
}

/* ── WHO WE ARE – SPLIT BENTO ── */
    .who-section { background: var(--cream); padding: 80px 0 40px; }
    .who-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 20px;
    }
    .who-text-block {
      background: var(--dark); border-radius: 24px;
      padding: 56px 52px;
      grid-column: 1; grid-row: 1;
    }
    .who-text-block .section-label {
      font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 20px; font-weight: 500;
    }
    .who-text-block h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 54px);
      font-weight: 400; color: #fff; line-height: 1.1;
      margin-bottom: 24px; letter-spacing: -0.5px;
	  text-align: left;
    }
    .who-text-block p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.75; }

    .who-stat-block {
      background: var(--gold); border-radius: 24px;
      padding: 48px 44px;
      grid-column: 2; grid-row: 1;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .who-stat-block .big-stat {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 100px; color: var(--dark); line-height: 1;
    }
    .who-stat-block .stat-label { font-size: 14px; color: var(--dark3); font-weight: 600; margin-top: 8px; }
    .who-stat-block .stat-sub { font-size: 15px; color: rgba(0,0,0,0.85); line-height: 1.6; margin-top: 16px; max-width: 240px; font-weight:500;}

    .who-pill-row {
      grid-column: 1 / -1; grid-row: 2;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .who-pill {
      background: #fff; border-radius: 18px;
      padding: 32px 28px; border: 1px solid #e8e2d8;
      display: flex; align-items: flex-start; gap: 18px;
      transition: box-shadow .3s, transform .3s;
	  margin-top: 20px;
    }
    .who-pill:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
    .who-pill-icon {
      width: 46px; height: 46px; border-radius: 12px;
      background: var(--cream2); display: flex; align-items: center;
      justify-content: center; font-size: 18px; color: var(--gold);
      flex-shrink: 0;
    }
    .who-pill h5 { font-size: 15px; color: var(--dark); margin-bottom: 6px; font-weight: 600; }
    .who-pill p { font-size: 13px; color: var(--text); line-height: 1.6; margin: 0; }

    /* ── MISSION & VISION – DIAGONAL SPLIT ── */
    .mv-section { background: #fff; padding: 50px 0; overflow: hidden; }
    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }

    .mv-card {
      padding: 72px 60px;
      position: relative; overflow: hidden;
    }
    .mv-card.mission { background: var(--dark); }
    .mv-card.vision  { background: var(--cream2); }

    .mv-card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px; border-radius: 50%;
      opacity: 0.06;
    }
    .mv-card.mission::before { background: var(--gold); }
    .mv-card.vision::before  { background: var(--dark); }

    .mv-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 140px; line-height: 1; opacity: 0.05;
      position: absolute; bottom: -20px; right: 20px;
      color: inherit; user-select: none;
    }
    .mv-card.mission .mv-number { color: #fff; }
    .mv-card.vision  .mv-number { color: var(--dark); }

    .mv-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--gold); display: flex; align-items: center;
      justify-content: center; font-size: 22px; color: var(--dark);
      margin-bottom: 28px;
    }
    .mv-card.vision .mv-icon { background: var(--dark); color: var(--gold); }

    .mv-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px; font-weight: 400; line-height: 1.1;
      margin-bottom: 20px; letter-spacing: -0.3px;
    }
    .mv-card.mission h3 { color: #fff; }
    .mv-card.vision  h3 { color: var(--dark); }

    .mv-card p { font-size: 15px; line-height: 1.8; position: relative; z-index: 1; }
    .mv-card.mission p { color: rgba(255,255,255,0.55); }
    .mv-card.vision  p { color: #555; }

    /* ── CORE VALUES ── */
    .values-section { background: var(--dark); padding: 50px 0; }
    .values-header { margin-bottom: 60px; }
    .values-header .section-label {
      font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .values-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: #fff;
      letter-spacing: -0.5px; line-height: 1.1;
    }
    .values-header h2 em { font-style: italic; color: var(--gold-light); }

    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .value-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px; padding: 40px 28px;
      transition: background .3s, border-color .3s, transform .3s;
      position: relative; overflow: hidden;
    }
    .value-card:hover {
      background: rgba(212,165,116,0.08);
      border-color: rgba(212,165,116,0.35);
      transform: translateY(-6px);
    }
    .value-card::after {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--gold); transform: scaleX(0); transform-origin: left;
      transition: transform .4s cubic-bezier(.77,0,.18,1);
    }
    .value-card:hover::after { transform: scaleX(1); }
    .value-icon { font-size: 28px; color: var(--gold); margin-bottom: 20px; }
    .value-card h5 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
    .value-card p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.65; margin: 0; }
	
/* .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; } */

    /* ── WHY UAE – HORIZONTAL FEATURE LIST ── */
    .why-section { background: #fff; padding: 50px 0; }
    .why-top {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center; margin-bottom: 10px;
    }
    .why-label {
      font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px; font-weight: 600;
    }
    .why-top h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px,4vw,52px); font-weight: 400; color: var(--dark);
      letter-spacing: -0.5px; line-height: 1.15;
    }
    .why-top p { font-size: 15px; color: rgba(0,0,0,0.7); line-height: 1.75; }

    .why-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
    .why-feat {
      border-radius: 20px; padding: 36px 30px;
      background: var(--cream2);
      border: 1px solid #e8e2d8;
      position: relative; overflow: hidden;
      transition: transform .3s, box-shadow .3s;
    }
    .why-feat:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.07); }
    .why-feat-num {
      position: absolute; top: 20px; right: 24px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 60px; color: rgba(0,0,0,0.05); line-height: 1;
    }
    .why-feat i { font-size: 22px; color: var(--gold); margin-bottom: 16px; display: block; }
    .why-feat h5 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
    .why-feat p { font-size: 14px; color: rgba(0,0,0,0.8); line-height: 1.65; margin: 0; }

.about-image-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 15px;
    position: relative;
}

.about-image-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.mission-vision {
    background-color: #F8F8F8;
}

.mission-card {
    background-color: white;
    padding: 50px 40px;
    border-radius: 15px;
    height: 100%;
    border-left: 5px solid rgba(212, 165, 116, 0.8);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.mission-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.core-values {
    background-color: white;
}

.expertise {
    background-color: #F8F8F8;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
	/* margin-bottom: 2px; */
	line-height: 1;
}

.expertise-list i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

.expertise-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    position: relative;
}

.expertise-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,20 180,60 180,140 100,180 20,140 20,60" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="2"/><polygon points="100,40 160,70 160,130 100,160 40,130 40,70" fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.team-section {
    background-color: white;
}

.team-card {
    text-align: center;
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 0 auto 20px;
    border: 5px solid white;
}

.team-card h5 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-bio {
    color: #666;
    font-size: 0.9rem;
}

.why-uae {
    background-color: #F8F8F8;
}

.uae-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 15px;
}

.uae-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.uae-feature i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 15px;
}

.uae-feature span {
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Services Page Styles */
.services-detailed {
    background-color: white;
}

.service-detail-card {
    padding: 2px 0;
}

.service-detail-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-detail-card h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.service-features li {
    padding: 1px 0;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 12px;
}

/* .service-detail-image { */
    /* width: 100%; */
    /* height: 400px; */
    /* border-radius: 15px; */
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%); */
    /* position: relative; */
/* } */
/* Service Images — real photos */
.service-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.service-img-1 { background: url('../images/service1.jpg') center/cover no-repeat; }
.service-img-2 { background: url('../images/service2.jpg') center/cover no-repeat; }
.service-img-3 { background: url('../images/service3.jpg') center/cover no-repeat; }
.service-img-4 { background: url('../images/service4.jpg') center/cover no-repeat; }
.service-img-5 { background: url('../images/service5.jpg') center/cover no-repeat; }
.service-img-6 { background: url('../images/service6.jpg') center/cover no-repeat; }
.service-img-7 { background: url('../images/service7.jpg') center/cover no-repeat; }
.service-img-8 { background: url('../images/service8.jpg') center/cover no-repeat; }

/* Remove all the emoji ::before pseudo-elements */
.service-img-1::before,
.service-img-2::before,
.service-img-3::before,
.service-img-4::before,
.service-img-5::before,
.service-img-6::before,
.service-img-7::before,
.service-img-8::before { content: none; }

/* .service-img-1::before { */
    /* content: '⚡'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

/* .service-img-2::before { */
    /* content: '☁️'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

/* .service-img-3::before { */
    /* content: '🎨'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

/* .service-img-4::before { */
    /* content: '📱'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

/* .service-img-5::before { */
    /* content: '💻'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

/* .service-img-6::before { */
    /* content: '📊'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

/* .service-img-7::before { */
    /* content: '🔧'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

/* .service-img-8::before { */
    /* content: '🌐'; */
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* font-size: 8rem; */
    /* opacity: 0.2; */
/* } */

.process-section {
    background-color: #F8F8F8;
}

.process-card {
    background-color: white;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.process-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.6;
}

.process-card h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Contact Page Styles */
.contact-section {
    background-color: white;
}

.contact-form-wrapper {
    background-color: #F8F8F8;
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 2px solid #E0E0E0;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.form-control#service {
    appearance: none;       /* Hides default browser arrow (Chrome/Safari) */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;    /* Make room for the arrow */
    background-color: #fff;
    cursor: pointer;
}

/* Creating the custom dropdown arrow */
.select-wrapper::after {
    content: '\f078';       /* FontAwesome chevron-down code */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--primary-color); /* Your Stratosphere Green */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;    /* Allows clicks to pass through to the select */
}

.contact-info-wrapper {
    background-color: #F8F8F8;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.contact-info-wrapper h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.social-links-contact {
    margin-top: 30px;
}

.social-link-item {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 45px;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link-item:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 0;
}

.map-container iframe {
    border-radius: 0;
}

.faq-section {
    background-color: #F8F8F8;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    background-color: white;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}


.wcu-wrap{
    padding-top: 10px;
    background: #fff;
	padding-bottom: 50px;
    }
.wcu-title{
    font-weight: 650;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.wcu-sub{
    color: #5f5f5f;
    max-width: 62ch;
    margin-bottom: 26px;
}

    /* Expanding gallery (desktop) */
.expanding-gallery{
    display: flex;
    gap: var(--gap);
    height: 440px;
    align-items: stretch;
}

.panel{
    position: relative;
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    background: #ddd center/cover no-repeat;
    transition: flex 650ms var(--ease), transform 650ms var(--ease), filter 650ms var(--ease);
    outline: none;
    min-width: 0;
}

.panel::after{
    content:"";
    position:absolute;
    inset:0;
    background: var(--overlay);
    opacity: .95;
    transition: opacity 650ms var(--ease);
}

.panel.active{
    flex: 3.2;
    transform: translateY(-2px);
}
.panel:not(.active){
    filter: saturate(.92) contrast(.95);
}
.panel.active::after{
    opacity: .78;
}

    /* Caption */
.panel__caption{
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: #fff;
    display: grid;
    gap: 4px;
}
.panel__caption h3{
    font-size: 1.15rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.panel__caption p{
    margin: 0;
    opacity: .92;
    font-size: .95rem;
    line-height: 1.35;
}


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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav .nav-link {
        margin: 10px 0;
    }

    .contact-btn {
        margin-left: 0 !important;
        margin-top: 10px;
    }
	.about-preview .about-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-image-wrapper,
    .about-image-large,
    .expertise-image,
    .uae-image,
    .service-detail-image {
        height: 300px;
    }
    .expanding-gallery{
       flex-direction: column;
       height: auto;
    }

    .panel{
       flex: none;
       height: 110px;
       transition: height 650ms var(--ease), transform 650ms var(--ease), filter 650ms var(--ease);
    }

       height: 340px;
       transform: translateY(0);
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Success Message */
.alert-success {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
}

.alert-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
}
/* ============================================================
   MOBILE OPTIMISATION – Full responsive overhaul
   Breakpoints: 576px (xs), 768px (md), 992px (lg)
   Strategy: mobile-first overrides on top of existing styles
   ============================================================ */

/* ── GLOBAL ── */
@media (max-width: 767px) {
  body { font-size: 15px; }

  h2 {
    font-size: clamp(24px, 6vw, 36px) !important;
    margin-bottom: 32px !important;
  }

  .section-title {
    font-size: 1.6rem !important;
  }

  .btn-primary, .btn-outline-primary {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    font-size: 1rem;
  }
}

/* ── NAVBAR ── */
@media (max-width: 991px) {
  .logo img { height: 54px !important; }

  /* Mobile menu dropdown */
  .navbar-collapse {
    background: rgba(10,10,10,0.97);
    border-radius: 12px;
    margin-top: 10px;
    padding: 16px 20px;
    border: 1px solid rgba(212,165,116,0.15);
  }

  .navbar-nav .nav-link {
    margin: 6px 0 !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }

  .navbar-nav .nav-link:last-child { border-bottom: none; }

  .navbar-nav .nav-link::after { display: none; }

  .contact-btn {
    display: inline-block;
    margin: 10px 0 4px !important;
    border-radius: 25px !important;
    text-align: center;
    width: auto !important;
    padding: 10px 22px !important;
  }
}

/* ── HERO (index) ── */
@media (max-width: 767px) {
  .hero-section {
    height: auto !important;
    min-height: 85vh;
    padding-top: 100px !important;
    padding-bottom: 60px;
    border-bottom-left-radius: 60px !important;
    align-items: flex-end;
  }

  .hero-title {
    font-size: 1.9rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.65;
  }
}

/* ── PAGE HEADER (About/Services/Contact banner) ── */
@media (max-width: 767px) {
  .page-header {
    height: 38vh !important;
    min-height: 200px;
    padding-top: 70px;
  }

  .page-title {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
  }

  .page-subtitle { font-size: 1rem !important; }
}

/* ── DESIGN6 – 3-pillar section (index) ── */
@media (max-width: 767px) {
  #design6 {
    padding-top: 40px !important;
    padding-bottom: 10px;
  }

  /* Stack the 3 col-md-4 items into a 1-col grid */
  #design6 .row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  #design6 .col-md-4 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .d6-item {
    padding: 28px 20px !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #e8e2d8;
  }

  .d6-item:last-child { border-bottom: none; }

  .d6-icon-ring {
    width: 64px !important;
    height: 64px !important;
    font-size: 22px !important;
    margin-bottom: 16px !important;
  }

  .d6-item h3 { font-size: 18px !important; }
  .d6-item p  { font-size: 13px !important; }
}

/* ── ABOUT PREVIEW (index) ── */
@media (max-width: 767px) {
  .about-preview { padding: 40px 0 !important; }

  .about-image-wrapper {
    height: 220px !important;
    margin-bottom: 24px !important;
  }

  .about-preview .section-title { margin-top: 4px; }
}

/* ── WHO WE ARE BENTO (about page) ── */
@media (max-width: 991px) {
  .who-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }

  .who-text-block  { grid-column: 1 !important; grid-row: 1 !important; }
  .who-stat-block  { grid-column: 1 !important; grid-row: 2 !important; }
  .who-pill-row    { grid-column: 1 !important; grid-row: 3 !important;
                     grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 575px) {
  .who-section { padding: 50px 0 50px !important; }

  .who-text-block {
    padding: 36px 28px !important;
    border-radius: 18px !important;
  }

  .who-text-block h2 { font-size: 26px !important; }

  .who-stat-block {
    padding: 32px 28px !important;
    border-radius: 18px !important;
    gap: 20px;
  }

  .who-pill-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .who-pill { padding: 22px 18px !important; }
}

/* ── MISSION & VISION (about page) ── */
@media (max-width: 767px) {
  .mv-section { padding: 0 !important; }

  .mv-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .mv-card {
    padding: 48px 28px !important;
  }

  .mv-card h3 { font-size: 28px !important; }
  .mv-card p  { font-size: 14px !important; }
  .mv-number  { font-size: 90px !important; }
}

/* ── CORE VALUES GRID (about page) ── */
@media (max-width: 991px) {
  .values-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 575px) {
  .values-section { padding: 50px 0 !important; }
  .values-header  { margin-bottom: 36px !important; }
  .values-grid    { grid-template-columns: 1fr !important; gap: 12px !important; }
  .value-card     { padding: 28px 22px !important; }
  .values-header h2 { font-size: 28px !important; }
}

/* ── WHY UAE FEATURES (about page) ── */
@media (max-width: 991px) {
  .why-top {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 32px !important;
  }

  .why-features { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 575px) {
  .why-section  { padding: 50px 0 !important; }
  .why-features { grid-template-columns: 1fr !important; gap: 12px !important; }
  .why-feat     { padding: 26px 22px !important; }
  .why-feat-num { font-size: 44px !important; }
  .why-top h2   { font-size: 28px !important; }
}

/* ── WHY CHOOSE US EXPANDING GALLERY (index) ── */
@media (max-width: 767px) {
  .expanding-gallery {
    flex-direction: column !important;
    height: auto !important;
    gap: 12px !important;
  }

  .panel {
    flex: none !important;
    height: 180px !important;
    border-radius: 16px !important;
    transition: height 500ms var(--ease) !important;
  }

  .panel.active {
    height: 280px !important;
    transform: none !important;
  }

  .panel__caption h3 { font-size: 1rem !important; }
  .panel__caption p  { font-size: 0.85rem !important; display: none; }
  .panel.active .panel__caption p { display: block !important; }

  .wcu-wrap { padding-bottom: 30px !important; }
}

/* ── SERVICES DETAIL PAGE ── */
@media (max-width: 767px) {
  .services-detailed { padding-top: 32px !important; }

  .service-detail-card { padding: 8px 0 !important; }

  /* Stack all service rows to single column */
  .service-detail-card .row {
    flex-direction: column !important;
  }

  /* Always show image ABOVE text on mobile */
  .service-detail-card .col-lg-6.order-lg-1,
  .service-detail-card .col-lg-6.order-lg-2 {
    order: unset !important;
  }

  .service-detail-image {
    height: 220px !important;
    border-radius: 14px !important;
    margin-bottom: 24px;
    width: 100%;
  }

  .service-detail-icon { font-size: 2.5rem !important; margin-bottom: 14px !important; }

  .service-detail-card h3 { font-size: 1.4rem !important; margin-bottom: 10px !important; }

  .service-features li { font-size: 0.95rem !important; }

  /* Process cards: 2-col grid on mobile */
  .process-section .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }

  .process-section .col-lg-3 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .process-card { padding: 24px 18px !important; }
  .process-number { font-size: 1.8rem !important; }
  .process-card h5 { font-size: 1rem !important; }
}

/* ── ALL SERVICES GRID (index page) ── */
@media (max-width: 767px) {
  .all-services .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .all-services .col-lg-3 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .service-box { padding: 22px 16px !important; }
  .service-box-icon { font-size: 2rem !important; }
  .service-box h5  { font-size: 1rem !important; }
  .service-box p   { font-size: 0.85rem !important; }
}

@media (max-width: 400px) {
  .all-services .row { grid-template-columns: 1fr !important; }
}

/* ── CTA SECTION ── */
@media (max-width: 767px) {
  .cta-section { padding: 50px 0 !important; }
  .cta-title   { font-size: 1.6rem !important; }
  .cta-subtitle { font-size: 0.95rem !important; }
}

/* ── CONTACT PAGE ── */
@media (max-width: 767px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 28px 20px !important;
    border-radius: 14px !important;
  }

  .contact-form-wrapper h3 { font-size: 1.3rem !important; }

  /* Stack form columns to single col */
  .contact-section .row.g-3 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .contact-section .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-info-item { margin-bottom: 20px !important; }

  .contact-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.2rem !important;
    margin-right: 14px !important;
    flex-shrink: 0;
  }

  .contact-details h5 { font-size: 1rem !important; }
  .contact-details p  { font-size: 0.9rem !important; }

  .map-container { height: 280px !important; }

  /* FAQ accordion */
  .accordion-button { font-size: 0.95rem !important; padding: 16px 18px !important; }
  .accordion-body   { padding: 16px 18px !important; font-size: 0.9rem !important; }
}

/* ── FOOTER – PROPER GRID LAYOUT ── */
@media (max-width: 767px) {
  .footer {
    padding-top: 44px !important;
    padding-bottom: 24px !important;
  }

  /* Reset Bootstrap row so our grid takes over */
  .footer > .container > .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 32px 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Neutralise ALL Bootstrap column widths — let grid control sizing */
  .footer > .container > .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    /* Override Bootstrap's col-md-6 flex-basis */
    flex-basis: auto !important;
  }

  /* ── Explicit grid placement ──
     Row 1: Brand description – full width
     Row 2: Quick Links (left) | Services (right)
     Row 3: Contact Info – full width             */

  .footer > .container > .row > *:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .footer > .container > .row > *:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .footer > .container > .row > *:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .footer > .container > .row > *:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  /* Typography */
  .footer-title       { font-size: 1rem !important; margin-bottom: 14px !important; }
  .footer-links li    { margin-bottom: 8px !important; }
  .footer-links a     { font-size: 0.9rem !important; min-height: unset !important; display: block !important; }
  .footer-contact li  { font-size: 0.9rem !important; margin-bottom: 10px !important; }
  .footer-copyright   { font-size: 0.8rem !important; }
  .footer-divider     { margin: 28px 0 16px !important; }

  /* Contact info: 2-col inner grid */
  .footer-contact {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 20px !important;
  }

  .footer-contact li { display: flex !important; align-items: flex-start; gap: 8px; }
  .footer-contact li i { margin-right: 0 !important; width: 14px; flex-shrink: 0; margin-top: 3px; }
}

@media (max-width: 400px) {
  .footer > .container > .row {
    grid-template-columns: 1fr !important;
  }

  .footer > .container > .row > *:nth-child(2),
  .footer > .container > .row > *:nth-child(3) {
    grid-column: 1 !important;
  }

  .footer > .container > .row > *:nth-child(3) {
    grid-row: 3 !important;
  }

  .footer > .container > .row > *:nth-child(4) {
    grid-row: 4 !important;
  }

  .footer-contact {
    grid-template-columns: 1fr !important;
  }
}

/* ── CONTACT US BUTTON – spacing in navbar ── */
/* Desktop: left margin from nav links */
.navbar-nav .nav-link.contact-btn {
  margin-left: 24px !important;
}

/* Mobile: top margin so it breathes after the nav links */
@media (max-width: 991px) {
  .navbar-nav .nav-link.contact-btn {
    margin-left: 0 !important;
    margin-top: 14px !important;
    margin-bottom: 6px !important;
    padding: 11px 24px !important;
    display: inline-block !important;
    width: auto !important;
    align-self: flex-start;
  }
}

/* ── STATS SECTION (if visible) ── */
@media (max-width: 767px) {
  .stats-section .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0;
  }

  .stat-item { padding: 24px 16px !important; }
  .stat-number { font-size: 2rem !important; }
  .stat-label  { font-size: 0.85rem !important; }
}

/* ── TOUCH IMPROVEMENTS ── */
@media (max-width: 767px) {
  /* Larger tap targets */
  .footer-links a,
  .navbar-nav .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Prevent text overflow on small screens */
  p, li, h1, h2, h3, h4, h5 {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Remove fixed-height constraints that cause overflow */
  .about-image-large,
  .expertise-image,
  .uae-image {
    height: 220px !important;
  }

  /* Scroll snap for gallery panels */
  .expanding-gallery {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    max-height: none !important;
  }

  .panel { scroll-snap-align: start; }
}

/* ── VERY SMALL PHONES (≤380px) ── */
@media (max-width: 380px) {
  .hero-title    { font-size: 1.6rem !important; }
  .page-title    { font-size: 1.5rem !important; }
  .section-title { font-size: 1.4rem !important; }
  .who-text-block { padding: 28px 20px !important; }
  .mv-card       { padding: 36px 20px !important; }

  .process-section .row {
    grid-template-columns: 1fr !important;
  }

  #design6 .d6-item h3 { font-size: 16px !important; }
}

