* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Prompt';
    src: url('/assets/fonts/prompt/Prompt-ExtraBoldItalic.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
}

:root {
    --primary-blue: #1E6CFF;
    --secondary-blue: #1E3A8A;
    --light-blue: #F0F4FF;
    --primary-off-white: #F8F8FF;
    --dark-gray: #1F2937;
    --medium-gray: #6B7280;
    --light-gray: #F3F4F6;
    --yellow-accent: #F6DA6F;
    --text-dark: #111827;
    font-size: 62.5%;
    --font-thin: 100;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-black: 900;
}

body {
    font-family: 'Prompt', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-off-white);
    font-size: 1.6rem;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 3rem;
    background-color: transparent;
    z-index: 1000;
    min-height: 5.4rem;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: var(--primary-off-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 3rem;
    transition: all 0.3s ease;
}

nav .logovector {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
}

nav.scrolled .logovector {
    color: var(--primary-blue);
}

nav .logotext {
    font-size: 1.2rem;
    color: var(--primary-off-white);
}

nav.scrolled .logotext {
    color: var(--primary-blue);
}

nav.scrolled ul li a {
    color: var(--text-dark);
}

nav.scrolled ul li a:hover {
    color: var(--primary-blue);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-off-white);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--yellow-accent);
}

nav ul li a.cta-nav {
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

nav.scrolled ul li a.cta-nav {
    background-color: var(--primary-blue);
    color: var(--primary-off-white);
}

nav ul li a.cta-nav:hover {
    background-color: rgba(246, 218, 111, 0.8);
}

/* Scrolled Content Styles */
body.scrolled-content .help-text h3,
body.scrolled-content .services-grid-section h2,
body.scrolled-content .portfolio-header h2,
body.scrolled-content .how-we-help h2 {
    color: var(--primary-blue);
}

body.scrolled-content .help-text .description {
    color: var(--primary-blue);
}


.hero {
    display: flex;
    align-items: center;
    gap: 7.5rem;
    padding: 4rem 3rem;
    background: var(--primary-blue);
    color: var(--primary-off-white);
    height: 100vh;
    margin: 0 auto;
    padding-top: 8rem;
}

.hero-left {
    margin-left: 16rem;
    flex: 1;
    position: relative;
}

.hero-accent {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    background-color: var(--yellow-accent);
    border-radius: 50%;
    opacity: 0.2;
}

.hero-text-container {
    position: relative;
    z-index: 1;
}

.placeholder-title {
    font-size: 6.4rem;
    font-weight: var(--font-semibold);
    margin-bottom: 2rem;
    line-height: 120%;
}

.placeholder-subtitle {
    font-size: 1.6rem;
    font-weight: var(--font-regular);
    margin-bottom: 4.8rem;
    line-height: 150%;
}

.placeholder-button {
    display: inline-block;
    border: none;
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    border-radius: 2.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.placeholder-button button {
    background: none;
    border: none;
    outline: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.placeholder-button:hover {
    background-color: #E59D0B;
}

.hero-right {
    margin-right: 16rem;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: rgba(246, 218, 111, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(246, 218, 111, 0.5);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yellow-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--yellow-accent);
    border-radius: 50%;
    opacity: 0.3;
}

/* Core Values Section */
.core-values {
    padding: 4rem 3rem;
    background-color: var(--light-gray);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.value-primary {
    background-color: var(--primary-blue);
    color: var(--primary-off-white);
    min-height: 250px;
}
    
.value-secondary {
    background-color: var(--light-blue);
    color: var(--text-dark);
    min-height: 250px;
}

.value-dark {
    background-color: var(--dark-gray);
    color: var(--primary-off-white);
    min-height: 250px;
}

/* How We Help Section */
.how-we-help {
    padding: 4rem 3rem;
    background-color: var(--primary-off-white);
}

.how-we-help h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-dark);
}

.help-content {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.help-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.help-item-left {
    grid-template-columns: auto 1fr;
}

.help-item-right {
    grid-template-columns: 1fr auto;
}

.help-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.help-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.help-text {
    padding: 0 1rem;
}

.help-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.help-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.help-text .description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.highlight {
    background-color: var(--primary-blue);
    color: var(--primary-off-white);
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    font-weight: 600;
}

/* Help Bottom Section */
.help-bottom-section {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem 2rem;
}

.help-bottom-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.help-bottom-section p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.help-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tag {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.help-cta-btn {
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.help-cta-btn:hover {
    background-color: #E59D0B;
}

/* Services Grid Section */
.services-grid-section {
    padding: 4rem 3rem;
    background-color: var(--light-gray);
}

.services-grid-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.service-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-card-content {
    position: relative;
    z-index: 2;
    color: var(--primary-off-white);
    padding: 1.5rem;
}

.service-card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.service-card-content p {
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.95;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    display: block;
    margin: 0 auto;
    background-color: var(--primary-blue);
    color: var(--primary-off-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: var(--secondary-blue);
}

/* Solutions Overview Section */
.solutions-overview {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(30, 108, 255, 0.05) 0%, rgba(30, 58, 138, 0.05) 100%);
    background-color: #FAFBFF;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.portfolio-description {
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-description p {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0.5rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-in-out;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.portfolio-item-2 {
    aspect-ratio: auto;
}

.portfolio-item-3 {
    aspect-ratio: auto;
    grid-column: span 1;
    grid-row: span 2;
    height: auto;
}

.portfolio-item-5 {
    aspect-ratio: auto;
}

.portfolio-item-8 {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 108, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-overlay p {
    color: var(--primary-off-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Grid positioning - specific layout */
.portfolio-item-1 {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item-3 {
    grid-column: span 1;
    grid-row: span 2;
}

.portfolio-item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item-6 {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item-7 {
    grid-column: span 1;
    grid-row: span 1;
}

.portfolio-item-8 {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-item-1 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-2 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-3 { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }
    .portfolio-item-4 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-5 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-6 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-7 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-8 { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .portfolio-item-1 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-2 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-3 { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }
    .portfolio-item-4 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-5 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-6 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-7 { grid-column: span 1; grid-row: span 1; }
    .portfolio-item-8 { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-header h2 {
        font-size: 1.8rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(30, 108, 255, 0.95) 0%, rgba(30, 58, 138, 0.95) 100%);
    color: var(--primary-off-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-off-white);
}

.faq-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    padding-left: 1rem;
}

.faq-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    min-width: 40px;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-visible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-visible-header h3 {
    font-size: 1rem;
    color: var(--primary-off-white);
    margin: 0;
    font-weight: 500;
}

.faq-toggle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary-off-white);
}

.faq-item:hover .faq-toggle {
    transform: translateY(4px);
    color: var(--primary-off-white);
}

.faq-item.active:hover .faq-toggle {
    transform: rotate(180deg) translateY(4px);
}

.faq-answer {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.3s ease-out;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    list-style: none;
}

.faq-answer li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.faq-answer li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--yellow-accent);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 3rem;
    background-color: var(--primary-off-white);
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.contact-form-section > p {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.glass-container {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(30, 108, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-container:hover {
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(30, 108, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-note {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-submit-btn {
    width: 100%;
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #E59D0B;
}

/* CTA Section */
.cta-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--primary-off-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #E59D0B;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--primary-off-white);
    padding: 4rem 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-off-white);
}

.footer-cta {
    background-color: var(--primary-blue);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-enter-btn {
    background-color: var(--yellow-accent);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-enter-btn:hover {
    background-color: #E59D0B;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .placeholder-title {
        font-size: 2.2rem;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    nav ul {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .placeholder-title {
        font-size: 1.8rem;
    }

    .how-we-help h2,
    .services-showcase h2,
    .solutions-overview h2,
    .faq h2,
    .contact-form-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .faq-item {
        flex-direction: column;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav ul li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }

    nav {
        padding: 1rem;
        flex-wrap: wrap;
    }

    nav ul {
        width: 100%;
        margin-top: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .placeholder-title {
        font-size: 1.5rem;
    }

    .hero-right {
        margin-top: 2rem;
    }

    section {
        padding: 2rem 1rem !important;
    }
}
