:root {
    /* Color Variables */
    --primary-dark: #0A0F1C;
    --primary-dark-lighter: #0A1929;
    --primary-gold: #F5B941;
    --accent-blue: #3B8AC4;
    --text-white: #FFFFFF;
    --text-light: #E5E5E5;
    --text-gray: #AAAAAA;
    --shadow-color: rgba(0, 0, 0, 0.2);
    
    /* Animation Variables */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-gold);
}

.section-subtitle {
    color: var(--primary-gold);
    font-weight: 500;
    margin-top: 0.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--primary-dark-lighter);
}

/* ===== Animation Classes ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Header & Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 41, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    padding: 1rem 0;
}

header.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    object-fit: contain;
}

.logo .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.logo .node:nth-child(1) {
    top: 0;
    left: 0;
}

.logo .node:nth-child(2) {
    top: 0;
    right: 0;
}

.logo .node:nth-child(3) {
    bottom: 0;
    left: 0;
}

.logo .node:nth-child(4) {
    bottom: 0;
    right: 0;
}

.logo .line {
    position: absolute;
    background-color: var(--accent-blue);
    transition: var(--transition-fast);
}

.logo .line-1 {
    width: 2px;
    height: 30px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.logo .line-2 {
    width: 30px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.logo:hover .node {
    background-color: var(--accent-blue);
    transform: scale(1.2);
}

.logo:hover .line {
    background-color: var(--primary-gold);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin-right: 2rem;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

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

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

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

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-fast);
    text-align: center;
    border: 2px solid var(--primary-gold);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-gold);
}

.cta-button.secondary:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-lighter) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-lighter) 100%);
    z-index: -1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    opacity: 1;
    color: var(--text-white);
}

.animate-text span {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    color: var(--text-white);
}

.animate-text span:nth-child(1) {
    animation: fadeInUp 0.8s forwards 0.3s;
}

.animate-text span:nth-child(2) {
    animation: fadeInUp 0.8s forwards 0.6s;
}

.animate-text span:nth-child(3) {
    animation: fadeInUp 0.8s forwards 0.9s;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 90%;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.network-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.network-visual .node {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

.network-visual .node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.network-visual .node-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.75s;
}

.network-visual .node-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.network-visual .node-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 2.25s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.network-visual .connector {
    position: absolute;
    background-color: var(--accent-blue);
    opacity: 0.6;
}

.network-visual .connector-1 {
    width: 2px;
    height: 300px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.network-visual .connector-2 {
    width: 300px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.network-visual .connector-3 {
    width: 300px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
}

/* ===== About Section ===== */
.about {
    text-align: center;
}

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

.highlight {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== Services Section ===== */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    margin-bottom: 1rem;
}

/* ===== Why Kenya Section ===== */
.why-kenya-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.why-kenya-text {
    flex: 1;
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.benefits-list i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.why-kenya-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.pulse-circle {
    position: absolute;
    top: 51%;
    left: 74%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

.pulse-circle::before,
.pulse-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--primary-gold);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

.pulse-circle::after {
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.continent-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/africa.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

/* ===== How It Works Section ===== */
.how-it-works {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-lighter) 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 4rem auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-blue) 100%);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    max-width: 280px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.step h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.step-connector {
    display: none;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-center .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(245, 185, 65, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .steps-container::before {
        display: none;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .step:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .step h3 {
        font-size: 1.2rem;
    }

    .step p {
        font-size: 0.9rem;
    }
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-fast);
}

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

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-gold);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark-lighter);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--text-gray);
}

.member-title {
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
}

/* Team Slider */
.team-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.team-slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.team-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.team-prev-btn,
.team-next-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
}

.team-prev-btn:hover,
.team-next-btn:hover {
    color: var(--primary-gold);
}

.team-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.team-dot.active {
    background-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .team-member {
        padding: 1.5rem;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }

    .member-bio {
        font-size: 0.85rem;
    }
}

/* ===== Testimonials Section ===== */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s forwards;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client-info {
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--primary-gold);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-gold);
}

/* ===== Contact Section ===== */
.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h4 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 1rem;
    min-width: 30px;
}

.info-item h5 {
    margin-bottom: 0.3rem;
}

.contact-form form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    background-color: #e5a930;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== Footer ===== */
footer {
    background-color: var(--primary-dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-group h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.link-group ul li {
    margin-bottom: 0.8rem;
}

.link-group a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .why-kenya-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 1rem;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        top: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Hide the CTA button in navigation for mobile */
    nav .cta-button {
        display: none;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-lighter) 100%);
}

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

.featured-testimonial {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-testimonial blockquote {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.featured-testimonial cite {
    color: var(--text-light);
    font-style: normal;
    font-size: 1.1rem;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-lighter) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.testimonial-card cite {
    color: var(--primary-gold);
    font-style: normal;
    font-size: 1rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-lighter) 100%);
    text-align: center;
}

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

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--text-white) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.final-cta .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 20px rgba(245, 185, 65, 0.2);
}

/* Updated Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
}

.service-card p {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .featured-testimonial blockquote {
        font-size: 1.3rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1.1rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .featured-testimonial {
        padding: 1.5rem;
    }
    
    .featured-testimonial blockquote {
        font-size: 1.2rem;
    }
    
    .final-cta {
        padding: 4rem 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
}

/* Enhanced Contact Section - Original Styles */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark-lighter) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info .section-title {
    margin-bottom: 1.5rem;
}

.contact-info .section-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Trust Signals */
.trust-signals {
    margin: 3rem 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    background: rgba(245, 185, 65, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.trust-content h4 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.trust-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.8rem;
}

.form-group label {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F5B941' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    padding-right: 2.5rem;
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Style for dropdown options */
.form-group select option {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 1rem;
}

/* Style for the placeholder option */
.form-group select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

/* Hover state for options */
.form-group select option:hover,
.form-group select option:focus {
    background-color: var(--primary-dark-lighter);
}

/* Active/Selected state */
.form-group select:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.form-footer {
    margin-top: 1rem;
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.privacy-note a {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* Contact Section Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .quick-stats {
        max-width: 600px;
        margin: 3rem auto 0;
    }
}

@media (max-width: 768px) {
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .trust-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Fallback for browsers with reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .animate-text span {
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .hero-description,
    .cta-buttons {
        opacity: 1;
        animation: none;
    }
}

/* Utility Classes */
.mt-4 {
    margin-top: 2rem;
}
