/*
 * Stratlabs Ventures Website
 * Version: 1.0.0
 * Last Updated: 2025-01-27
 */

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

:root {
    --color-navy: #0A1A2F;
    --color-navy-light: #1A2A4F;
    --color-dark-bg: #0F172A;
    --color-dark-surface: #1E293B;
    --color-dark-surface-light: #334155;
    --color-white: #FFFFFF;
    --color-amber: #F8B400;
    --color-amber-light: #FFC420;
    --color-blue: #007BFF;
    --color-blue-light: #4A9EFF;
    --color-text: #F1F5F9;
    --color-text-light: #CBD5E1;
    --color-text-muted: #94A3B8;
    --color-bg-light: #1E293B;
    --color-bg-gradient: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(248, 180, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-dark-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    background: rgba(15, 23, 42, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand a:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    background-color: #FFFFFF;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-img-footer {
    height: 70px;
    width: auto;
    display: block;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-amber), var(--color-blue));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 30%, #334155 60%, #0F172A 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.gradient-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(248, 180, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.15) 0%, transparent 50%);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--color-white);
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-logo-img {
    height: 90px;
    width: auto;
    display: block;
    background-color: #FFFFFF;
    padding: 12px;
    border-radius: 12px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 30px rgba(248, 180, 0, 0.5));
}

.hero-title {
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 800;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-amber), transparent);
    opacity: 0.6;
}

.hero-tagline-main {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-light) 100%);
    color: var(--color-navy);
    box-shadow: 0 4px 15px rgba(248, 180, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 180, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Introduction Section */
.introduction-section {
    background: var(--color-dark-bg);
    position: relative;
}

.introduction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10, 26, 47, 0.1), transparent);
}

.intro-text {
    font-size: 19px;
    line-height: 1.9;
    color: var(--color-text-light);
}

.intro-lead {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.5;
    font-family: var(--font-heading);
}

/* Offerings Section */
.offerings-section {
    background: linear-gradient(180deg, var(--color-dark-surface) 0%, var(--color-dark-bg) 100%);
    position: relative;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.offering-card {
    background: var(--color-dark-surface);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-amber), var(--color-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(248, 180, 0, 0.4);
    background: var(--color-dark-surface-light);
}

.offering-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transform: scale(1);
    transition: var(--transition);
}

.offering-card:hover .offering-icon {
    transform: scale(1.1) rotate(5deg);
}

.offering-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-white);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.offering-subtitle {
    color: var(--color-text-muted);
    font-size: 17px;
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.6;
}

.offering-features {
    list-style: none;
    margin-bottom: 32px;
}

.offering-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 16px;
}

.offering-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-amber);
    font-weight: 700;
    font-size: 18px;
}

.offering-impact {
    padding: 20px;
    background: linear-gradient(135deg, rgba(248, 180, 0, 0.15) 0%, rgba(0, 123, 255, 0.15) 100%);
    border-radius: 12px;
    font-size: 16px;
    color: var(--color-text-light);
    margin-top: 32px;
    border-left: 4px solid var(--color-amber);
}

.offering-impact strong {
    color: var(--color-white);
    font-weight: 700;
}

/* Fundraise Section */
.fundraise-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, #1A2A4F 50%, var(--color-navy) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.fundraise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 180, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.fundraise-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fundraise-text .section-title {
    color: var(--color-white);
    text-align: left;
    margin-bottom: 24px;
}

.fundraise-text p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.fundraise-list {
    list-style: none;
    font-size: 19px;
}

.fundraise-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.fundraise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-amber);
    font-weight: 700;
    font-size: 24px;
    width: 32px;
    height: 32px;
    background: rgba(248, 180, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fundraise-visual {
    display: flex;
    justify-content: center;
}

.step-visual {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    min-width: 160px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-amber-light));
    color: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(248, 180, 0, 0.4);
}

.step-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
}

.step-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.step-arrow {
    font-size: 36px;
    color: var(--color-amber);
    font-weight: 700;
    filter: drop-shadow(0 2px 8px rgba(248, 180, 0, 0.4));
}

/* Why Section */
.why-section {
    background: var(--color-dark-bg);
}

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

.why-item {
    padding: 40px;
    background: linear-gradient(135deg, var(--color-dark-surface) 0%, var(--color-dark-surface-light) 100%);
    border-radius: 16px;
    transition: var(--transition);
    border-left: 5px solid var(--color-amber);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(248, 180, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-item:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--color-blue);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-amber), var(--color-amber-light));
    color: var(--color-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(248, 180, 0, 0.3);
}

.why-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-white);
    font-family: var(--font-heading);
    line-height: 1.3;
}

.why-item p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-light) 50%, var(--color-blue-light) 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-dark-bg);
    font-family: var(--font-heading);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 22px;
    color: var(--color-dark-bg);
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 500;
}

.cta-section .btn-primary {
    background: var(--color-dark-bg);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.cta-section .btn-primary:hover {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--color-dark-surface) 0%, var(--color-dark-bg) 100%);
    padding: 120px 0;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.contact-header .section-title {
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-dark-surface);
    padding: 56px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-white);
    font-size: 15px;
    font-family: var(--font-heading);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--color-dark-bg);
    color: var(--color-text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-amber);
    box-shadow: 0 0 0 4px rgba(248, 180, 0, 0.2);
    background: var(--color-dark-surface-light);
}

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

/* Footer */
.footer {
    background: var(--color-dark-surface);
    color: var(--color-white);
    padding: 80px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--color-white);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--color-amber);
    color: var(--color-navy);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(248, 180, 0, 0.4);
}

/* Sticky Bottom CTA (Mobile) */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-bottom-cta .btn {
    width: 100%;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    .nav-menu {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 88px);
        background: var(--color-dark-surface);
        flex-direction: column;
        padding: 60px 32px;
        gap: 32px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 38px;
    }

    .fundraise-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-visual {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .sticky-bottom-cta {
        display: block;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 90vh;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .offerings-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 40px 24px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    section {
        padding: 60px 0;
    }

    .offering-card {
        padding: 32px 24px;
    }
}
