/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #4CAF50;
    --accent-light: #f0f7ff;
    --accent-dark: #fff5f5;
    --text-dark: #ffffff;
    --text-light: #ffffff;
    --gray-light: #0a0a0a;
    --gray-dark: #1e1e1e;
    --gray-medium: #cccccc;
    --card-bg: #1e1e1e;
    --card-bg-hover: #252525;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--gray-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #24aeb0;
    color: var( --e-global-color-accent );
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

    .btn-primary:hover {
        background-color: #ffffff;
        transform: translateY(-3px);
        color: black;
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
    }

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-light {
    background-color: #24aeb0;
    color: var(--text-light);
}

.btn-light:hover {
    background-color: #fff;
    color:#000;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000000;
    color: var(--text-light);
    overflow: hidden;
}

/* Page Header (for internal pages) */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--text-light);
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #24aeb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Page Hero with Image */
.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    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.6) 100%);
}

/* Page Content Section */
.page-content-section {
    background-color: #000000;
    padding: 100px 0;
    color: var(--text-light);
}

.page-content-section .section-title {
    color: #24aeb0;
    font-size: 48px;
    margin-bottom: 30px;
}

.page-content-section .section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-medium);
    max-width: 900px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px 80px 80px;
    max-width: 700px;
    background: linear-gradient(90deg, #000000 0%, #000000 60%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
    color: var(--accent-color);
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-white {
    color: #ffffff;
    display: block;
}

.title-accent {
    color: #24aeb0;
    display: block;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    align-items: center;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background-color: var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(76, 175, 80, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.3);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.dual-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.column {
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.problem-column {
    background: linear-gradient(135deg, #2a1515 0%, #3d1f1f 100%);
    border-left: 4px solid #ff4444;
}

.solution-column {
    background: linear-gradient(135deg, #152a15 0%, #1f3d1f 100%);
    border-left: 4px solid var(--accent-color);
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.challenge-list li,
.solution-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.challenge-list li::before,
.solution-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    font-weight: 700;
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-light) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(76, 175, 80, 0.3);
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #252525 0%, #1e1e1e 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #24aeb0 100%);
    color: var(--text-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.6);
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-description {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 35px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-features li::before {
    content: "→";
    position: absolute;
    left: 5px;
    color: var(--text-light);
    font-weight: 700;
}

/* Why BlackSwan Section */
.why-blackswan {
    padding: 120px 0;
    background-color: var(--gray-light);
    position: relative;
}

.why-blackswan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reason-card {
    padding: 50px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.reason-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #24aeb0 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reason-card:hover::after {
    transform: scaleX(1);
}

.reason-card:hover {
    background: linear-gradient(135deg, #252525 0%, #1e1e1e 100%);
    color: var(--text-light);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.3);
    border: 2px solid var(--accent-color);
}

.reason-number {
    font-size: 56px;
    font-weight: 800;
    opacity: 0.15;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reason-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.reason-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-medium);
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--text-light);
}

.case-studies .section-title,
.case-studies .section-subtitle {
    color: var(--text-light);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-study-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.case-study-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.case-study-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.case-study-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.case-study-section {
    margin-bottom: 25px;
}

.case-study-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-study-section p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--gray-dark);
}

.process-steps {
    margin-top: 60px;
}

.process-step {
    display: flex;
    gap: 30px;
    padding: 40px 50px;
    background-color: var(--card-bg);
    border-radius: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-step:nth-child(even) {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.process-step:hover {
    transform: translateX(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
}

.step-number {
    font-size: 56px;
    font-weight: 800;
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-weight: 700;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--gray-dark);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.subsection-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
}

.value-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.value-description {
    font-size: 16px;
    line-height: 1.8;
}

/* Resources Section */
.resources {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.resource-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.resource-card:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
}

.resource-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.resource-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.resource-card:hover .resource-link {
    color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--text-light);
    padding: 0;
    position: relative;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background-color: var(--gray-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-detail-item a,
.contact-detail-item p {
    font-size: 16px;
    color: var(--gray-medium);
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--accent-color);
}

.social-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-form-wrapper {
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #252525;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-info-title {
        font-size: 32px;
    }
}

.footer-top-border {
    height: 3px;
    background: linear-gradient(90deg, #24aeb0 0%, #1a8f91 100%);
    width: 100%;
}

.footer .container {
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #24aeb0;
    transform: translateX(3px);
}

.footer-locations li {
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    align-items: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #24aeb0;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 120px 60px 60px;
        max-width: 100%;
        background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.95) 100%);
    }

    .hero-image {
        height: 50vh;
        order: -1;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 42px;
    }

    .cta-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-container .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .dual-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 100px 40px 40px;
        text-align: left;
    }

    .hero-image {
        height: 40vh;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-cta {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 38px;
    }

    .stat-number {
        font-size: 52px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .step-number {
        font-size: 48px;
        width: auto;
    }

    .stats-grid,
    .reasons-grid,
    .testimonials-grid,
    .values-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-content {
        padding: 80px 20px 30px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-large {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 32px;
    }
}

/* Make the nav CTA button more compact */
.navbar .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* Hide the button on smaller screens to prevent overlap */
@media (max-width: 968px) {
    .navbar .btn-primary {
        display: none;
    }
}

/* Adjust nav container spacing */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}