/* Root Variables */
:root {
    --primary-color: #4353ff;
    --primary-hover: #323ee5;
    --dark-bg: #1c2235;
    --darker-bg: #151a2a;
    --light-bg: #f8faff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #ffffff;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 4rem;
    letter-spacing: -1.5px;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge.blue {
    background: rgba(67, 83, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(67, 83, 255, 0.2);
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: none;
    /* Removed the 'glow' effect */
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    /* Use a standard shadow instead of a colored glow */
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
}

.btn-text {
    background: transparent;
    color: var(--text-light);
    padding: 12px 16px;
}

.btn-text i {
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-text:hover i {
    background: var(--text-light);
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.navbar-scrolled {
    position: fixed;
    background: rgba(28, 34, 53, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

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

.nav-links {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 160px;
    background: url('../images/accra_cityscape.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 34, 53, 0.9) 0%, rgba(28, 34, 53, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-text h1,
.hero-text p {
    color: var(--text-light);
}

.hero-text p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Social Proof under Hero */
.hero-social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.social-proof-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.brand-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.brand-icons i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.brand-icons i:hover {
    color: var(--text-light);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GSAP Glassmorphism Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    padding: 20px;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Modal Internal Typography */
.modal-body h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-right: 40px;
}

.modal-body .modal-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.modal-body p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.modal-body ul li {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.modal-body ul li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        max-height: 90vh;
    }

    .modal-body h2 {
        font-size: 2rem;
    }
}

/* Custom Shape Divider */
.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom-hero svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-hero .shape-fill {
    fill: #ffffff;
}

/* Features Row */
.features {
    padding: 80px 0 40px;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--text-dark);
}

.feature-text h3 {
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 80px 0 0;
}

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

.about-images {
    position: relative;
    height: 500px;
}

.about-page-content {
    padding: 100px 0;
    background: #ffffff;
}

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

.about-text-column p {
    margin-bottom: 20px;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-images {
    position: relative;
    width: 100%;
}

.main-img {
    width: 80%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.overlapping-img {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    height: 300px;
    border-radius: var(--radius-lg);
    border: 10px solid #ffffff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 2;
}

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

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

.expertise-tooltips {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.expertise-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.expertise-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.expertise-icon {
    width: 32px;
    height: 32px;
    background: rgba(67, 83, 255, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.expertise-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Tooltip Styles */
.expertise-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    padding: 12px 16px;
    background: var(--dark-bg);
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.expertise-item:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Arrow for Tooltip */
.expertise-item::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 8px solid transparent;
    border-top-color: var(--dark-bg);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.expertise-item:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.logos-row {
    display: flex;
    align-items: center;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 100px;
    overflow: hidden;
    /* Hide overflow for the ticker effect */
    position: relative;
    width: 100%;
}

/* The wrapper that actually scrolls */
.logos-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 80px;
    /* Increased gap for a cleaner ticker look */
}

/* Pause scroll on hover for better UX */
.logos-row:hover .logos-track {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item svg,
.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll exactly halfway through the duplicated list */
    }
}

/* Meet the Team */
.team-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.team-member {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.member-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 24px;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member-info span {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.header-right {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.nav-arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #ffffff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-btn:hover {
    background: var(--text-dark);
    color: #ffffff;
}

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

.service-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.card-img {
    position: relative;
    height: 220px;
}

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

.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-content {
    padding: 30px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-top: 10px;
}

.read-more:hover {
    color: var(--primary-color);
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background: var(--dark-bg);
}

.industries h2 {
    color: var(--text-light);
    margin-bottom: 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    cursor: pointer;
}

.industry-item i {
    font-size: 2rem;
}

.industry-item span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.industry-item:hover {
    color: var(--text-light);
    transform: translateY(-5px);
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filters {
    display: flex;
    gap: 12px;
}

.filters button {
    background: transparent;
    border: none;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filters button.active,
.filters button:hover {
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--text-dark);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-carousel {
    margin-top: 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-carousel::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.testimonial-carousel::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 450px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.author-img {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.quote-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 3px solid white;
}

.quote-text .company-logo {
    margin-bottom: 15px;
}

.quote-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.7;
}

.author-name {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Bottom CTA */
.cta-section {
    position: relative;
    padding: 150px 0 100px;
    background: url('../images/accra_cityscape.png') no-repeat center center/cover;
    background-attachment: fixed;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 34, 53, 0.95), rgba(42, 51, 80, 0.9));
}

.custom-shape-divider-top-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 2;
}

.custom-shape-divider-top-cta svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-top-cta .shape-fill {
    fill: #ffffff;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: var(--darker-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--text-light);
}

.brand-col .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    display: block;
}

.brand-col .logo span {
    color: var(--primary-color);
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a:hover {
    background: var(--primary-color);
    color: white;
}

.contact-col p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-col i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

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

/* Interior Pages */
.interior-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('../images/ghanaian_team_meeting.png') no-repeat center center/cover;
    background-attachment: fixed;
    text-align: center;
}

.interior-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 34, 53, 0.95) 0%, rgba(28, 34, 53, 0.8) 100%);
    z-index: 1;
}

.interior-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.interior-hero-content h1,
.interior-hero-content p {
    color: var(--text-light);
}

.interior-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-page-content {
    padding: 100px 0;
}

.about-page-content .lead-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-text-column p {
    margin-bottom: 20px;
}

/* Contact Page */
.contact-page {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
    color: var(--text-light);
}

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

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-detail h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-detail span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    padding: 60px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f9fbfd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(67, 83, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 15px;
    z-index: 1001;
    position: relative;
}

/* Responsive */
@media (max-width: 992px) {

    .logo {
        position: relative;
        z-index: 1001;
    }

    .nav-actions {
        position: relative;
        z-index: 1001;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-grid,
    .about-grid,
    .services-grid,
    .footer-grid,
    .contact-grid,
    .philosophy-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .header-right {
        text-align: left;
        align-items: flex-start;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(28, 34, 53, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
        gap: 40px;
        backdrop-filter: blur(10px);
    }

    .nav-links.active-menu {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {

    .logo a {
        font-size: 1.1rem;
    }

    .nav-actions .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .mobile-menu-btn {
        font-size: 1.3rem;
        margin-left: 10px;
    }

    .gallery-grid,
    .team-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero {
        padding: 150px 0 100px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .hero-social-proof {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        width: 85vw;
        max-width: 450px;
        padding: 25px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 40px 20px;
    }
}

/* Floating Toast Notification for Forms */
.form-result {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    min-width: 320px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-result.success {
    display: flex;
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-left: 5px solid #10b981;
}

.form-result.error {
    display: flex;
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 5px solid #ef4444;
}

/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}