/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Official Brand Colors */
    --golden-yellow: #F4B000;
    --deep-navy-blue: #003A63;
    --forest-green: #1D6B3A;
    --teal-turquoise: #199C96;
    --neutral-grey: #A7A9AC;
    --off-white-cream: #FBF5EB;
    
    /* Color Usage */
    --primary-color: #003A63; /* Deep Navy Blue - Strength, engineering, trust */
    --secondary-color: #1D6B3A; /* Forest Green - Sustainability & growth */
    --accent-color: #F4B000; /* Golden Yellow - Primary accent, optimism & energy */
    --highlight-color: #199C96; /* Teal/Turquoise - Water, balance, innovation */
    --dark-color: #003A63;
    --light-color: #FBF5EB; /* Off-White/Cream - Preferred background tone */
    --text-color: #003A63;
    --text-light: #666;
    --border-color: #A7A9AC; /* Neutral Grey */
    --shadow: 0 2px 10px rgba(0, 58, 99, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 58, 99, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.main-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out, visibility 0s 1s;
    transform: scale(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out, visibility 0s 0s;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 58, 99, 0.75); /* Deep Navy Blue overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider Animations */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-indicator.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--highlight-color); /* Teal/Turquoise on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* Sections */
.section {
    padding: 80px 0;
}

.alt-section {
    background: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-top: 3px solid var(--highlight-color); /* Teal/Turquoise accent */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color); /* Golden Yellow */
    color: var(--primary-color); /* Deep Navy Blue text */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
}

/* Approach Section */
.approach-section {
    background: var(--light-color);
}

.approach-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.approach-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-icon {
    color: var(--highlight-color); /* Teal/Turquoise */
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item p {
    color: var(--text-color);
    margin: 0;
}

/* Page Header */
.page-header {
    background: var(--primary-color); /* Deep Navy Blue */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   NEW CONTACT PAGE DESIGN - FROM SCRATCH
   ============================================ */

/* Contact Hero Section - New Design */
.contact-hero-new {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 9rem 0 7rem;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 99, 0.92), rgba(25, 156, 150, 0.85));
    z-index: 1;
}

.contact-hero-shape-new {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.contact-hero-inner-new {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 2rem;
    background: rgba(244, 176, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(244, 176, 0, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(244, 176, 0, 0.2);
}

.contact-badge-icon {
    font-size: 1.2rem;
}

.contact-hero-heading-new {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.contact-hero-description-new {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

/* Contact Methods Section */
.contact-methods-section-new {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-methods-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method-card-new {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 58, 99, 0.08);
}

.contact-method-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--highlight-color);
    box-shadow: 0 12px 40px rgba(0, 58, 99, 0.15);
}

.method-icon-wrapper-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.contact-method-card-new:hover .method-icon-wrapper-new {
    transform: scale(1.1) rotate(5deg);
}

.method-title-new {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.method-description-new {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.method-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--highlight-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.method-link-new:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}

.method-link-new svg {
    transition: transform 0.3s ease;
}

.method-link-new:hover svg {
    transform: translateX(3px);
}

/* Main Contact Section */
.contact-main-section-new {
    padding: 6rem 0;
    background: #fff;
}

.contact-main-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Info Sidebar */
.contact-info-sidebar-new {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-header-new {
    margin-bottom: 2.5rem;
}

.sidebar-label-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.sidebar-heading-new {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.sidebar-description-new {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-details-list-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item-new {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon-new {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.detail-content-new {
    flex: 1;
}

.detail-label-new {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.detail-value-new {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.detail-value-new:hover {
    color: var(--highlight-color);
}

/* Contact Form Container */
.contact-form-container-new {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 58, 99, 0.1);
}

.form-header-new {
    margin-bottom: 2.5rem;
}

.form-label-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.form-heading-new {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.form-description-new {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-error-new {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.form-error-new svg {
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-new {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.required-new {
    color: #e74c3c;
}

.input-wrapper-new,
.textarea-wrapper-new {
    position: relative;
}

.input-icon-new,
.textarea-icon-new {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    z-index: 1;
}

.textarea-icon-new {
    top: 1.2rem;
    transform: none;
}

.form-input-new,
.form-textarea-new {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--text-color);
}

.form-textarea-new {
    padding-top: 1.2rem;
    min-height: 150px;
    resize: vertical;
}

.form-input-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(25, 156, 150, 0.1);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
    color: #999;
}

.form-submit-button-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    color: #fff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 58, 99, 0.3);
    margin-top: 1rem;
}

.form-submit-button-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 58, 99, 0.4);
}

.form-submit-button-new svg {
    transition: transform 0.3s ease;
}

.form-submit-button-new:hover svg {
    transform: translateX(5px);
}

/* Success Message */
.contact-success-new {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon-new {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title-new {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.success-text-new {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-button-new {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 58, 99, 0.3);
}

.success-button-new:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 58, 99, 0.4);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-main-wrapper-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-sidebar-new {
        position: static;
    }
    
    .contact-hero-heading-new {
        font-size: 3.5rem;
    }
    
    .contact-hero-description-new {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-new {
        padding: 6rem 0 5rem;
        min-height: 450px;
    }
    
    .contact-hero-heading-new {
        font-size: 2.8rem;
    }
    
    .contact-hero-description-new {
        font-size: 1.1rem;
    }
    
    .contact-methods-grid-new {
        grid-template-columns: 1fr;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container-new {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-sidebar-new {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-heading-new {
        font-size: 2.2rem;
    }
    
    .form-heading-new {
        font-size: 2rem;
    }
    
    .sidebar-heading-new {
        font-size: 1.8rem;
    }
}

/* OLD CONTACT STYLES - KEPT FOR REFERENCE */
.contact-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 99, 0.85), rgba(25, 156, 150, 0.75));
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* ============================================
   NEW TEAM PAGE DESIGN - FROM SCRATCH
   ============================================ */

/* Team Hero Section - New Design */
.team-hero-new {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 9rem 0 7rem;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.team-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 99, 0.92), rgba(25, 156, 150, 0.85));
    z-index: 1;
}

.team-hero-shape-new {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.team-hero-inner-new {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.team-hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 2rem;
    background: rgba(244, 176, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(244, 176, 0, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(244, 176, 0, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.team-hero-heading-new {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.team-hero-description-new {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.team-hero-stats-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(244, 176, 0, 0.3);
}

.hero-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Team Introduction Section */
.team-intro-section-new {
    padding: 6rem 0;
    background: #fff;
}

.team-intro-wrapper-new {
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro-content-new {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-label-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-heading-new {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.intro-text-new {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.team-values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-item-new {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-item-new:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    box-shadow: 0 8px 25px rgba(0, 58, 99, 0.1);
}

.value-icon-new {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title-new {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-text-new {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Members Section */
.team-members-section-new {
    padding: 6rem 0;
    background: var(--light-color);
}

.team-section-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle-new {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.team-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 58, 99, 0.1);
    box-shadow: 0 4px 20px rgba(0, 58, 99, 0.08);
    position: relative;
}

.team-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.team-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 58, 99, 0.18);
    border-color: rgba(0, 58, 99, 0.2);
}

.team-card-new:hover::before {
    transform: scaleX(1);
}

.team-card-image-container-new {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
    overflow: hidden;
}

.team-card-image-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-new:hover .team-card-image-new {
    transform: scale(1.1);
}

.team-card-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 58, 99, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    z-index: 2;
}

.team-card-new:hover .team-card-overlay-new {
    opacity: 1;
}

.overlay-content-new {
    color: #fff;
}

.overlay-bio-new {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.team-card-placeholder-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-initials-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.team-card-info-new {
    padding: 2rem 1.8rem;
    background: #fff;
}

.team-member-name-new {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.team-member-role-new {
    color: var(--highlight-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-divider-new {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    margin: 1rem 0;
    border-radius: 2px;
}

.team-member-bio-preview-new {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.team-empty-new {
    text-align: center;
    padding: 6rem 2rem;
    background: #fff;
    border-radius: 20px;
    margin: 2rem 0;
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.empty-state-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.empty-state-text {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Team CTA Section */
.team-cta-section-new {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    position: relative;
    overflow: hidden;
}

.team-cta-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 176, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.team-cta-wrapper-new {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content-left-new {
    color: #fff;
}

.cta-label-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(244, 176, 0, 0.2);
    border: 1px solid rgba(244, 176, 0, 0.4);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.cta-heading-new {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-description-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-benefits-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.benefit-item-new svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.cta-content-right-new {
    position: relative;
}

.cta-card-new {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 3;
}

.cta-icon-wrapper-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
}

.cta-card-title-new {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-card-text-new {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button-new {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 58, 99, 0.3);
}

.cta-button-new:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 58, 99, 0.4);
}

.cta-button-new svg {
    transition: transform 0.3s ease;
}

.cta-button-new:hover svg {
    transform: translateX(5px);
}

/* Responsive Design for New Team Page */
@media (max-width: 968px) {
    .team-cta-wrapper-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-hero-heading-new {
        font-size: 3.5rem;
    }
    
    .team-hero-description-new {
        font-size: 1.3rem;
    }
    
    .team-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-hero-new {
        padding: 6rem 0 5rem;
        min-height: 450px;
    }
    
    .team-hero-heading-new {
        font-size: 2.8rem;
    }
    
    .team-hero-description-new {
        font-size: 1.1rem;
    }
    
    .team-hero-stats-new {
        gap: 2rem;
    }
    
    .hero-stat-number {
        font-size: 2.5rem;
    }
    
    .section-heading-new {
        font-size: 2.2rem;
    }
    
    .team-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-values-grid-new {
        grid-template-columns: 1fr;
    }
    
    .cta-heading-new {
        font-size: 2.2rem;
    }
    
    .cta-description-new {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .team-hero-heading-new {
        font-size: 2.2rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .team-hero-stats-new {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* OLD TEAM STYLES - KEPT FOR REFERENCE */
.team-hero-professional {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-hero-overlay-professional {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 99, 0.9), rgba(25, 156, 150, 0.8));
    z-index: 1;
}

.team-hero-content-professional {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.team-hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(244, 176, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 176, 0, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.team-hero-title-professional {
    font-size: 4.5rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.team-hero-subtitle-professional {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mv-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 4px solid var(--accent-color); /* Golden Yellow accent */
}

.mv-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    border-top: 3px solid var(--secondary-color); /* Forest Green accent */
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-light);
}

.leap-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
}

/* Service Details */
.service-detail {
    margin-bottom: 4rem;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-icon-large {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-detail h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-detail h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color); /* Teal/Turquoise */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color); /* Golden Yellow */
    color: var(--primary-color); /* Deep Navy Blue */
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Statistics Section */
.stats-section {
    background: var(--primary-color); /* Deep Navy Blue */
    color: #fff;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color); /* Golden Yellow */
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: #fff;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

/* Process Steps Enhancement */
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Projects Section */
.projects-section {
    padding: 5rem 0;
    background: var(--light-color); /* Off-White/Cream */
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-color);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--highlight-color); /* Teal/Turquoise */
    color: #fff;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.project-location,
.project-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--light-color); /* Off-White/Cream */
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    font-size: 4rem;
    color: var(--highlight-color); /* Teal/Turquoise */
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(0, 58, 99, 0.1);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-role {
    color: var(--highlight-color); /* Teal/Turquoise */
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.author-org {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Partners Section Enhancement */
.partners-section {
    padding: 5rem 0;
    background: transparent;
    overflow: hidden;
}

.partners-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Partners Scrolling Animation - Inspired by MME Impact Lab */
.partners-scroll-container {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
    padding: 3rem 0;
    background: transparent;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.partners-scroll-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    flex-flow: row nowrap !important;
    gap: 2.5rem !important;
    align-items: center !important;
    width: fit-content !important;
    animation: scrollPartners 30s linear infinite !important;
    will-change: transform !important;
}

.partners-scroll-container:hover .partners-scroll-wrapper {
    animation-play-state: paused;
}

.partner-logo-item {
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    height: 120px;
    min-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Card styling like image 2 */
    background: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
}

.partner-logo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    z-index: 10;
    position: relative;
}

.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.partner-link:hover {
    opacity: 0.8;
}

.partner-logo {
    max-width: 160px !important;
    max-height: 70px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%) !important;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

.partner-logo-item:hover .partner-logo {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta-section {
    background: var(--primary-color); /* Deep Navy Blue */
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.contact-item a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.alert {
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Professional Team Section */
.team-section-professional {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.team-intro-professional {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-intro-text-professional {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

.team-empty-state-professional {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--light-color);
    border-radius: 15px;
    margin: 2rem 0;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.team-empty-state-professional h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.team-empty-state-professional p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Professional Team Grid */
.team-grid-professional {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
    padding: 2rem 0;
}

.team-card-professional {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 58, 99, 0.08);
    box-shadow: 0 2px 12px rgba(0, 58, 99, 0.06);
    text-align: center;
    position: relative;
}

.team-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-card-professional:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 58, 99, 0.15);
    border-color: rgba(0, 58, 99, 0.2);
}

.team-card-professional:hover::before {
    transform: scaleX(1);
}

.team-card-image-wrapper-professional {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
    overflow: hidden;
}

.team-card-img-professional {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-professional:hover .team-card-img-professional {
    transform: scale(1.08);
}

.team-card-overlay-professional {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(0, 58, 99, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card-professional:hover .team-card-overlay-professional {
    opacity: 1;
}

.team-card-placeholder-professional {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-initials-professional {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.team-card-body-professional {
    padding: 2rem 1.5rem;
    background: #fff;
}

.team-member-name-professional {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.team-member-role-professional {
    color: var(--highlight-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.team-member-bio-professional {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* ============================================
   NEW SERVICES PAGE DESIGN - FROM SCRATCH
   ============================================ */

/* Services Hero Section - New Design */
.services-hero-new {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 9rem 0 7rem;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 99, 0.92), rgba(25, 156, 150, 0.85));
    z-index: 1;
}

.services-hero-shape-new {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.services-hero-inner-new {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.services-hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 2rem;
    background: rgba(244, 176, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(244, 176, 0, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(244, 176, 0, 0.2);
}

.services-badge-icon {
    font-size: 1.2rem;
}

.services-hero-heading-new {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.services-hero-description-new {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

/* Services Introduction Section */
.services-intro-section-new {
    padding: 5rem 0;
    background: #fff;
}

.services-intro-wrapper-new {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-section-label-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.services-section-heading-new {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.services-intro-text-new {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* Services Grid Section */
.services-grid-section-new {
    padding: 6rem 0;
    background: var(--light-color);
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 58, 99, 0.1);
    box-shadow: 0 4px 20px rgba(0, 58, 99, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 58, 99, 0.18);
    border-color: rgba(0, 58, 99, 0.2);
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-card-header-new {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-color), #fff);
}

.service-icon-wrapper-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-icon-wrapper-new {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-large-new {
    font-size: 2.5rem;
    display: block;
}

.service-title-new {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.service-card-body-new {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

.service-description-new {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-preview-new {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item-preview-new {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-item-preview-new svg {
    color: var(--highlight-color);
    flex-shrink: 0;
}

.feature-more-new {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.service-card-footer-new {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 58, 99, 0.1);
}

.service-details-btn-new {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 58, 99, 0.3);
}

.service-details-btn-new:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 58, 99, 0.4);
}

.service-details-btn-new svg {
    transition: transform 0.3s ease;
}

.service-details-btn-new:hover svg {
    transform: translateX(5px);
}

.services-empty-new {
    text-align: center;
    padding: 6rem 2rem;
    background: #fff;
    border-radius: 20px;
    margin: 2rem 0;
}

.services-empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.services-empty-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-empty-text {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Service Modal */
.service-modal-new {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.service-modal-new.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.service-modal-content-new {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.service-modal-new.active .service-modal-content-new {
    transform: scale(1);
}

.service-modal-close-new {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--primary-color);
}

.service-modal-close-new:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

.service-modal-body-new {
    padding: 3rem;
}

.modal-service-icon-new {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-service-title-new {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
}

.modal-service-description-new {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-features-section-new {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color);
}

.modal-features-title-new {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.modal-features-list-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.modal-feature-item-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

.modal-feature-item-new svg {
    color: var(--highlight-color);
    flex-shrink: 0;
}

/* Services CTA Section */
.services-cta-section-new {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    position: relative;
    overflow: hidden;
}

.services-cta-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 176, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}

.services-cta-wrapper-new {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-icon-new {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.services-cta-title-new {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.services-cta-text-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.services-cta-button-new {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 176, 0, 0.3);
}

.services-cta-button-new:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 176, 0, 0.4);
}

.services-cta-button-new svg {
    transition: transform 0.3s ease;
}

.services-cta-button-new:hover svg {
    transform: translateX(5px);
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero-new {
        padding: 6rem 0 5rem;
        min-height: 450px;
    }
    
    .services-hero-heading-new {
        font-size: 3rem;
    }
    
    .services-hero-description-new {
        font-size: 1.2rem;
    }
    
    .services-section-heading-new {
        font-size: 2.2rem;
    }
    
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-modal-content-new {
        max-width: 95%;
        padding: 1.5rem;
    }
    
    .services-cta-title-new {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .services-hero-heading-new {
        font-size: 2.2rem;
    }
    
    .services-cta-title-new {
        font-size: 1.8rem;
    }
    
    .modal-features-list-new {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   NEW ABOUT PAGE DESIGN - FROM SCRATCH
   ============================================ */

/* About Hero Section - New Design */
.about-hero-new {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 9rem 0 7rem;
    text-align: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 99, 0.92), rgba(25, 156, 150, 0.85));
    z-index: 1;
}

.about-hero-shape-new {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: #fff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.about-hero-inner-new {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.about-hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 2rem;
    background: rgba(244, 176, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(244, 176, 0, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(244, 176, 0, 0.2);
}

.about-badge-icon {
    font-size: 1.2rem;
}

.about-hero-heading-new {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.about-hero-description-new {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
}

/* Who We Are Section */
.about-who-section-new {
    padding: 6rem 0;
    background: #fff;
}

.about-who-wrapper-new {
    max-width: 1000px;
    margin: 0 auto;
}

.about-who-content-new {
    text-align: center;
}

.about-section-label-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-section-heading-new {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-content-text-new {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Mission & Vision Section */
.about-mission-vision-section-new {
    padding: 6rem 0;
    background: var(--light-color);
}

.mission-vision-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card-new,
.vision-card-new {
    background: #fff;
    padding: 3.5rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 58, 99, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mission-card-new::before,
.vision-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card-new:hover,
.vision-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 58, 99, 0.18);
    border-color: rgba(0, 58, 99, 0.2);
}

.mission-card-new:hover::before,
.vision-card-new:hover::before {
    transform: scaleX(1);
}

.mission-icon-wrapper-new,
.vision-icon-wrapper-new {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.mission-card-new:hover .mission-icon-wrapper-new,
.vision-card-new:hover .vision-icon-wrapper-new {
    transform: scale(1.1) rotate(5deg);
}

.mission-title-new,
.vision-title-new {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.mission-text-new,
.vision-text-new {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Values Section */
.about-values-section-new {
    padding: 6rem 0;
    background: #fff;
}

.values-header-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.values-intro-text-new {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-card-new {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.value-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.value-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--highlight-color);
    box-shadow: 0 12px 40px rgba(0, 58, 99, 0.15);
    background: #fff;
}

.value-card-new:hover::before {
    transform: scaleX(1);
}

.value-icon-wrapper-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.value-card-new:hover .value-icon-wrapper-new {
    transform: scale(1.1) rotate(5deg);
}

.value-icon-large-new {
    font-size: 2.5rem;
    display: block;
}

.value-card-title-new {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.value-card-text-new {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* LEAP Section */
.about-leap-section-new {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    position: relative;
    overflow: hidden;
}

.about-leap-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 176, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}

.leap-wrapper-new {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.leap-icon-wrapper-new {
    width: 120px;
    height: 120px;
    background: rgba(244, 176, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 176, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent-color);
    animation: float 3s ease-in-out infinite;
}

.leap-title-new {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.leap-text-new {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* About CTA Section */
.about-cta-section-new {
    padding: 6rem 0;
    background: #fff;
}

.about-cta-wrapper-new {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title-new {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-cta-text-new {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-cta-buttons-new {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-button-primary-new,
.about-cta-button-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 58, 99, 0.3);
}

.about-cta-button-primary-new {
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    color: #fff;
}

.about-cta-button-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 58, 99, 0.4);
}

.about-cta-button-secondary-new {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.about-cta-button-secondary-new:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 58, 99, 0.4);
}

.about-cta-button-primary-new svg,
.about-cta-button-secondary-new svg {
    transition: transform 0.3s ease;
}

.about-cta-button-primary-new:hover svg,
.about-cta-button-secondary-new:hover svg {
    transform: translateX(5px);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .mission-vision-grid-new {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .values-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-new {
        padding: 6rem 0 5rem;
        min-height: 450px;
    }
    
    .about-hero-heading-new {
        font-size: 3rem;
    }
    
    .about-hero-description-new {
        font-size: 1.2rem;
    }
    
    .about-section-heading-new {
        font-size: 2.2rem;
    }
    
    .mission-vision-grid-new {
        grid-template-columns: 1fr;
    }
    
    .mission-card-new,
    .vision-card-new {
        padding: 2.5rem 2rem;
    }
    
    .values-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leap-title-new {
        font-size: 2.2rem;
    }
    
    .about-cta-title-new {
        font-size: 2.2rem;
    }
    
    .about-cta-buttons-new {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-button-primary-new,
    .about-cta-button-secondary-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-heading-new {
        font-size: 2.2rem;
    }
    
    .leap-title-new {
        font-size: 1.8rem;
    }
    
    .about-cta-title-new {
        font-size: 1.8rem;
    }
}

/* ============================================
   CONTACT PAGE SOCIAL MEDIA SECTION
   ============================================ */

.contact-social-section-new {
    padding: 5rem 0;
    background: var(--light-color);
}

.social-section-header-new {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.social-section-label-new {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.social-section-heading-new {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.social-section-description-new {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.social-media-grid-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.social-media-link-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 2.5rem;
    background: #fff;
    border-radius: 20px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 58, 99, 0.08);
    min-width: 140px;
}

.social-media-link-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 58, 99, 0.15);
    border-color: var(--highlight-color);
}

.social-icon-wrapper-new {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-color);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.social-media-link-new[data-platform="facebook"]:hover .social-icon-wrapper-new {
    background: #1877F2;
    color: #fff;
    transform: scale(1.1);
}

.social-media-link-new[data-platform="twitter"]:hover .social-icon-wrapper-new {
    background: #000000;
    color: #fff;
    transform: scale(1.1);
}

.social-media-link-new[data-platform="instagram"]:hover .social-icon-wrapper-new {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    transform: scale(1.1);
}

.social-media-link-new[data-platform="linkedin"]:hover .social-icon-wrapper-new {
    background: #0077B5;
    color: #fff;
    transform: scale(1.1);
}

.social-media-link-new[data-platform="youtube"]:hover .social-icon-wrapper-new {
    background: #FF0000;
    color: #fff;
    transform: scale(1.1);
}

.social-label-new {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-media-link-new:hover .social-label-new {
    color: var(--highlight-color);
}

.social-empty-state-new {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Footer Social Media Section */
/* Old footer social styles removed - using new footer design */

/* Responsive Design for Social Media */
@media (max-width: 768px) {
    .social-section-heading-new {
        font-size: 2.2rem;
    }
    
    .social-media-grid-new {
        gap: 1rem;
    }
    
    .social-media-link-new {
        min-width: 120px;
        padding: 1.5rem 2rem;
    }
    
    .social-icon-wrapper-new {
        width: 50px;
        height: 50px;
    }
    
    .footer-social-links {
        gap: 0.75rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .social-media-grid-new {
        grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    gap: 1rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 1rem;
}

@media (max-width: 480px) {
    .social-media-grid-new {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .social-media-link-new {
        min-width: auto;
        width: 100%;
        padding: 1.5rem 1rem;
    }
}

/* Professional Team CTA Section */
.team-cta-professional {
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    border-radius: 20px;
    padding: 5rem 3rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 58, 99, 0.2);
    position: relative;
    overflow: hidden;
}

.team-cta-professional::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.team-cta-content-professional {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.team-cta-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.team-cta-title-professional {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.team-cta-text-professional {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.team-cta-button-professional {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(244, 176, 0, 0.3);
}

.team-cta-button-professional svg {
    transition: transform 0.3s ease;
}

.team-cta-button-professional:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 176, 0, 0.4);
}

.team-cta-button-professional:hover svg {
    transform: translateX(5px);
}

/* ============================================
   REDESIGNED FOOTER - CLEAN & PROFESSIONAL
   ============================================ */

.footer-redesigned {
    background: var(--light-color); /* Off-White/Cream */
    color: var(--text-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 58, 99, 0.1);
}

/* Footer Header - Logo and Company Info */
.footer-header-redesigned {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 58, 99, 0.1);
}

.footer-logo-container-redesigned {
    margin-bottom: 1rem;
}

.footer-logo-redesigned {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-company-name-redesigned {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0;
    letter-spacing: -0.5px;
}

.footer-tagline-redesigned {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-description-redesigned {
    font-size: 1rem;
    color: var(--text-light);
    margin: 1rem auto 0;
    max-width: 600px;
    line-height: 1.6;
}

/* Footer Content Grid */
.footer-content-redesigned {
    display: flex !important;
    flex-direction: column !important;
    gap: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-content-redesigned > * {
    width: 100%;
    flex-shrink: 0;
}

.footer-section-redesigned {
    display: flex;
    flex-direction: column;
}

.footer-section-title-redesigned {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: block;
    width: 100%;
}

/* Footer Lists */
.footer-list-redesigned {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-redesigned li {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.6;
}

.footer-list-redesigned li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-list-redesigned li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-list-redesigned li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-list-redesigned li:not(:has(a)) {
    color: var(--text-light);
}

/* Contact Info */
.footer-contact-list-redesigned {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item-redesigned {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact-item-redesigned svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--highlight-color);
    opacity: 0.8;
}

.footer-contact-item-redesigned a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item-redesigned a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-contact-item-redesigned span {
    color: var(--text-light);
}

/* Social Media Section */
.footer-social-section-redesigned {
    text-align: left;
}

.footer-social-container-redesigned {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-icon-redesigned {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 58, 99, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(0, 58, 99, 0.15);
}

.footer-social-icon-redesigned svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-icon-redesigned:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 58, 99, 0.2);
}

/* Platform-specific hover colors */
.footer-social-icon-redesigned[data-platform="facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}

.footer-social-icon-redesigned[data-platform="twitter"]:hover {
    background: #000000;
    border-color: #000000;
    color: #fff;
}

.footer-social-icon-redesigned[data-platform="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #fff;
}

.footer-social-icon-redesigned[data-platform="linkedin"]:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: #fff;
}

.footer-social-icon-redesigned[data-platform="youtube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.footer-social-message-redesigned {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom-redesigned {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 58, 99, 0.1);
    text-align: center;
}

.footer-copyright-redesigned {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-redesigned {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-header-redesigned {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-company-name-redesigned {
        font-size: 1.5rem;
    }
    
    .footer-content-redesigned {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .footer-social-container-redesigned {
        gap: 0.5rem;
    }
    
    .footer-social-icon-redesigned {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-icon-redesigned svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .footer-content-redesigned {
        flex-direction: column !important;
        gap: 2rem;
    }
    
    .footer-section-title-redesigned {
        font-size: 1rem;
    }
    
    .footer-social-icon-redesigned {
        width: 32px;
        height: 32px;
    }
    
    .footer-social-icon-redesigned svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-copyright-redesigned {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
/* Responsive styles for contact hero */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 300px;
        padding: 4rem 0;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .team-hero {
        padding: 3rem 0;
    }
    
    .team-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .team-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-cta {
        padding: 3rem 2rem;
    }
    
    .team-cta-content h2 {
        font-size: 2rem;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-social-links {
        gap: 0.75rem !important;
    }
    
    .footer-social-link {
        width: 40px !important;
        height: 40px !important;
    }
    
    .footer-social-link svg {
        width: 18px !important;
        height: 18px !important;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .team-hero-professional {
        padding: 4rem 0 3rem;
        min-height: 300px;
    }
    
    .team-hero-title-professional {
        font-size: 2.2rem;
    }
    
    .team-hero-subtitle-professional {
        font-size: 1rem;
    }
    
    .team-hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }
    
    .team-grid-professional {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-cta-professional {
        padding: 3rem 1.5rem;
    }
    
    .team-cta-title-professional {
        font-size: 1.8rem;
    }
    
    .team-cta-text-professional {
        font-size: 1rem;
    }
    
    .team-cta-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-color); /* Off-White/Cream */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .contact-hero {
        min-height: 300px;
        padding: 4rem 0;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .team-hero-professional {
        padding: 5rem 0 4rem;
        min-height: 350px;
    }
    
    .team-hero-title-professional {
        font-size: 3rem;
    }
    
    .team-hero-subtitle-professional {
        font-size: 1.2rem;
    }
    
    .team-grid-professional {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .team-cta-professional {
        padding: 4rem 2rem;
    }
    
    .team-cta-title-professional {
        font-size: 2.2rem;
    }
    
    .team-cta-text-professional {
        font-size: 1.1rem;
    }
    
    .hero-slider {
        min-height: 500px;
        max-height: 600px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .hero-slider-indicators {
        bottom: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .process-steps,
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 3rem !important;
    }
    
    .partner-logo-item {
        display: flex !important;
        flex-direction: row !important;
        height: 80px !important;
        padding: 0 1.5rem !important;
    }
    
    .partner-logo {
        max-width: 140px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .partners-scroll-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        flex-flow: row nowrap !important;
        gap: 2rem !important;
    }
    
    .partner-logo-item {
        display: flex !important;
        flex-direction: row !important;
        height: 60px !important;
        padding: 0 1rem !important;
    }
    
    .partner-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Button styles moved to footer.css to avoid conflicts */

