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

:root {
    /* Brand Colors */
    --primary-navy: #232176;
    --primary-teal: #00b9b6;
    --white: #ffffff;
    --black: #000000;
    --light-bg: #f8f9fa;
    --text-dark: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 1.5s linear infinite;
}

.loader img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 185, 182, 0.4);
}

#scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-to-top:hover {
    background: var(--primary-navy);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 185, 182, 0.6);
}

/* Header and Navigation */
header {
    background-color: var(--primary-navy);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

header.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

.nav-links a {
    position: relative;
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--primary-navy);
    min-width: 450px;
    list-style: none;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(0, 185, 182, 0.15);
    color: var(--primary-teal);
}

.dropdown-menu a::after {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

/* CTA Header Button */
.cta-header-button {
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cta-header-button:hover {
    background: #009e9b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 185, 182, 0.4);
}

.cta-arrow {
    font-weight: 700;
}

/* Mobile CTA in nav */
.mobile-cta {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Resources/Images/BANNER WEBSITE_.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 77, 0.7);
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    }
    50% {
        background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-navy) 100%);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* Disable parallax transform on mobile */
@media (max-width: 768px) {
    .hero-content {
        transform: none !important;
    }
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

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

.cta-button {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 185, 182, 0.4);
    background-color: #009e9b;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.stat-item.animated {
    opacity: 1;
    transform: scale(1);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-item .counter::after {
    content: '+';
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--primary-navy);
    font-weight: 500;
}

/* Reveal Animation */
.reveal-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal-animation.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.services-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 185, 182, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,185,182,0.25);
    border: 2px solid var(--primary-teal);
}

.service-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-teal);
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-mission {
    font-style: italic;
    color: var(--primary-navy);
}

.about-vision {
    font-weight: 500;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.portfolio-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.clients-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.client-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    height: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

.client-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-logo:hover::after {
    transform: scaleX(1);
}

.client-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,185,182,0.3);
}

/* Blog Section */
.blog {
    padding: 4rem 2rem;
    background-color: var(--white);
    text-align: center;
}

.blog h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.blog p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-empty {
    color: var(--primary-teal);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
    font-weight: 600;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.office {
    margin-bottom: 2rem;
}

.office h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.office p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.office a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office a:hover {
    color: var(--primary-navy);
}

#contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
    border-color: var(--primary-teal);
}

#contact-form button {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#contact-form button:hover {
    background-color: #009e9b;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 3rem 2rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Form Enhancements */
#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 185, 182, 0.1);
    transform: translateY(-2px);
}

.form-group {
    position: relative;
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
}

.form-success {
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.form-general-error {
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.form-general-error.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

/* Responsive Design */

/* Tablet devices (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-intro,
    .services-intro,
    .about-preview-content p,
    .about-story-content p {
        font-size: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Base font size adjustment */
    html {
        font-size: 16px;
    }

    /* Loading Screen - Disabled on Mobile */
    #loading-screen {
        display: none !important;
    }

    .loader {
        display: none !important;
    }

    nav {
        grid-template-columns: auto 1fr;
    }

    .hamburger {
        display: flex;
        grid-column: 2;
        justify-self: end;
        position: fixed;
        right: calc(5% + 1rem);
        top: 20px;
        z-index: 1002;
    }

    .header-actions {
        display: none;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        align-items: center;
        background-color: var(--primary-navy);
        width: 75%;
        max-width: 300px;
        text-align: center;
        transition: right 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 1rem;
        gap: 1rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        overflow-x: hidden;
        border-radius: 15px 0 0 15px;
    }

    .mobile-cta {
        display: block;
        margin-top: 1rem;
        padding: 0 2rem;
    }

    .mobile-cta .cta-header-button {
        width: 100%;
        display: block;
        text-align: center;
    }

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

    .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
        background: rgba(0, 0, 0, 0.2);
        display: none;
        min-width: unset;
        grid-template-columns: 1fr;
        left: auto !important;
        width: 100%;
        border-radius: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .dropdown-menu a {
        text-align: center;
        width: 100%;
        padding: 0.5rem 0.25rem;
        white-space: normal;
        font-size: 0.85rem;
        line-height: 1.3;
    }

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

    .nav-links a::after {
        display: none !important;
    }

    .dropdown > a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: auto;
        white-space: nowrap;
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
        background: rgba(0, 185, 182, 0.1);
        border-radius: 8px;
    }

    .dropdown.active > a {
        background: rgba(0, 185, 182, 0.2);
        color: var(--primary-teal);
    }

    .dropdown > a::after {
        content: '▼' !important;
        font-size: 0.7em;
        display: inline-block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        margin-left: 0.3rem;
    }

    .dropdown.active > a::after {
        content: '▲' !important;
    }

    .hero-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-intro,
    .services-intro {
        font-size: 0.95rem;
    }

    .about-preview-content h2,
    .services-preview h2,
    .clients-preview h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .about-preview-content .subtitle {
        font-size: 1.1rem;
    }

    .about-preview-content p {
        font-size: 0.95rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    .cta-button,
    .btn-primary,
    .btn-secondary {
        font-size: 0.95rem;
        padding: 0.85rem 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .services-preview-grid {
        grid-template-columns: 1fr;
        max-width: calc(100vw - 4rem);
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        gap: 2rem;
        justify-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        text-align: center;
    }

    .service-card h3,
    .service-card p {
        text-align: center;
    }

    .service-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1rem auto;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========== MULTI-PAGE STYLES ========== */

/* Logo Link Styling */
.logo a {
    color: var(--white);
    text-decoration: none;
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary-teal);
    font-weight: 600;
}

/* Page Header Section */
.page-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 6rem 2rem 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Section Intro */
.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background: #009e9b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 185, 182, 0.4);
}

.btn-secondary {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1a1a5e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(35, 33, 118, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary-navy);
}

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* About Preview Section */
.about-preview {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.about-preview-content .subtitle {
    font-size: 1.3rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-preview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-preview-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    min-height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Preview */
.services-preview {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.services-preview-grid {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-cta {
    margin-top: 3rem;
}

/* Clients Preview */
.clients-preview {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.clients-preview h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========== ABOUT PAGE STYLES ========== */

.about-story {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.about-story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-vision {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-box, .vision-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.icon-box {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.mission-box h3, .vision-box h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.mission-box p, .vision-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,185,182,0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.why-choose-us {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.why-item {
    text-align: left;
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
}

/* ========== SERVICES PAGE STYLES ========== */

.services-full {
    padding: 3rem 2rem;
    background: var(--white);
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========== PORTFOLIO PAGE STYLES ========== */

.portfolio-stats {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.portfolio-clients {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.portfolio-clients h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.clients-region-section {
    margin-bottom: 4rem;
}

.clients-region-section:last-child {
    margin-bottom: 0;
}

.clients-region-section h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
}

.clients-grid-full {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.client-logo-large {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-logo-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,185,182,0.2);
    border-color: var(--primary-teal);
}

.client-logo-large h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.client-logo-large p {
    font-size: 0.95rem;
    color: var(--primary-teal);
}

.industries-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.industries-section h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.industries-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,185,182,0.2);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.industry-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.case-studies {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.case-studies h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.case-study-card {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.case-study-card.reverse {
    direction: rtl;
}

.case-study-card.reverse > * {
    direction: ltr;
}

.case-study-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.case-study-tag {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.case-study-content h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.case-study-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.case-study-results {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-study-results li {
    font-size: 0.95rem;
}

.case-study-results strong {
    color: var(--primary-teal);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-teal);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid var(--light-bg);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-navy);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--primary-teal);
    font-size: 0.9rem;
}

/* ========== BLOG PAGE STYLES ========== */

.blog-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.blog-coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-bg);
    border-radius: 15px;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.blog-coming-soon h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.blog-coming-soon p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}

.coming-soon-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

.coming-soon-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.coming-soon-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.subscribe-message {
    font-weight: 600;
    margin-top: 2rem;
}

.newsletter-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.insights-section {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.insights-section h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.insights-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,185,182,0.2);
}

.insight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.insight-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== CONTACT PAGE STYLES ========== */

.contact-page {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.office-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.office-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.office-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.office-details p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.office-details a {
    color: var(--primary-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-details a:hover {
    color: var(--primary-navy);
}

.quick-contact {
    background: var(--primary-navy);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
}

.quick-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.method-icon {
    font-size: 1.5rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.contact-form-section > p {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-form-page {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.contact-form-page input,
.contact-form-page textarea,
.contact-form-page select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form-page input:focus,
.contact-form-page textarea:focus,
.contact-form-page select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 185, 182, 0.1);
}

.why-contact {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.why-contact h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.why-contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.why-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,185,182,0.2);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.why-contact-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,185,182,0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ========== SERVICE PAGE NEW SECTIONS ========== */

/* Approach Section */
.approach-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Differentiators Section */
.differentiators-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.differentiators-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.differentiators-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.differentiator-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.differentiator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,185,182,0.2);
    border-color: var(--primary-teal);
}

.diff-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--primary-teal);
}

.differentiator-card div {
    flex: 1;
}

.differentiator-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.differentiator-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Services Include Section */
.services-include-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.services-include-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.service-item {
    background: #E8F8F7;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.service-item:hover {
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,185,182,0.15);
    transform: translateY(-5px);
    border-color: var(--primary-teal);
}

.service-icon-small {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-item h3 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    text-align: center;
    width: 100%;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
    width: 100%;
}

/* Why Choose Us Section - Dark Background for Service Pages */
.why-choose-us {
    padding: 5rem 2rem;
    background: var(--primary-navy);
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

/* ========== RESPONSIVE FOR MULTI-PAGE ========== */

@media (max-width: 768px) {
    .about-preview-container,
    .about-story-container,
    .mission-vision-container,
    .service-detail,
    .case-study-card,
    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail.reverse,
    .case-study-card.reverse {
        direction: ltr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .clients-grid-full,
    .why-choose-container {
        grid-template-columns: 1fr;
    }

    /* Service Page New Sections Responsive */
    .approach-content h2,
    .differentiators-section h2,
    .services-include-section h2,
    .why-choose-us h2,
    .service-detail-content h2,
    .mission-box h3,
    .vision-box h3,
    .values-section h2,
    .blog-coming-soon h2,
    .newsletter-content h2,
    .insights-section h2,
    .contact-form-section h2,
    .why-contact h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }

    .approach-content p,
    .service-detail-content p,
    .mission-box p,
    .vision-box p,
    .blog-coming-soon p,
    .newsletter-content p,
    .contact-form-section > p {
        font-size: 0.95rem;
    }

    .service-subtitle {
        font-size: 1.05rem;
    }

    .differentiator-card h3,
    .service-item h3,
    .value-card h3,
    .why-contact-card h3,
    .insight-card h3,
    .faq-item h3 {
        font-size: 1.1rem;
    }

    .differentiator-card p,
    .service-item p,
    .value-card p,
    .benefit-item p,
    .why-contact-card p,
    .insight-card p,
    .faq-item p {
        font-size: 0.9rem;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-include-section {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .differentiator-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .differentiator-card .diff-icon {
        margin-bottom: 1rem;
    }

    .service-item {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .office-card h3,
    .quick-contact h3 {
        font-size: 1.2rem;
    }

    .case-study-content h3 {
        font-size: 1.4rem;
    }

    .case-study-content p {
        font-size: 0.95rem;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

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

    .page-header h1,
    .about-preview-content h2,
    .services-preview h2,
    .clients-preview h2,
    .cta-content h2 {
        font-size: 1.35rem;
    }

    .section-intro,
    .services-intro,
    .about-preview-content p {
        font-size: 0.9rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .cta-button,
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .approach-content h2,
    .differentiators-section h2,
    .services-include-section h2,
    .why-choose-us h2 {
        font-size: 1.35rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .services-include-section {
        padding: 3rem 1rem;
    }

    .service-item {
        padding: 1.25rem;
    }
}

/* Extra small mobile devices (max-width: 375px) */
@media (max-width: 375px) {
    .services-include-section {
        padding: 3rem 0.75rem;
    }

    .service-item {
        padding: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
}
