/* Font Faces */
@font-face {
    font-family: 'Alliance No.2';
    src: url('fonts/font/AllianceNo2-Regular.woff2') format('woff2'),
         url('fonts/font/AllianceNo2-Regular.woff') format('woff'),
         url('fonts/font/AllianceNo2-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance No.2';
    src: url('fonts/font/AllianceNo2-Medium.woff2') format('woff2'),
         url('fonts/font/AllianceNo2-Medium.woff') format('woff'),
         url('fonts/font/AllianceNo2-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Alliance No.2';
    src: url('fonts/font/AllianceNo2-SemiBold.woff2') format('woff2'),
         url('fonts/font/AllianceNo2-SemiBold.woff') format('woff'),
         url('fonts/font/AllianceNo2-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --padding-inline: clamp(1rem, 5vw, 2rem);
    --padding-block: clamp(1rem, 3vh, 1.5rem);
}

body {
    font-family: 'Alliance No.2', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
}

/* Header/Hero Section */
.hero {
    min-height: 100vh;
    background: url('Section Images/blue gradient.jpg') no-repeat center;
    background-size: cover;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.nav {
    padding: var(--padding-block) var(--padding-inline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 2rem);
    max-width: 1340px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav.dark-bg .nav-left .logo,
.nav.dark-bg .nav-right a {
    color: #fff;
}

.nav.dark-bg.scrolled .nav-left .logo {
    color: #000;
}

.nav.dark-bg.scrolled .nav-right a {
    color: rgba(0, 0, 0, 0.7);
}

.nav.dark-bg.scrolled .nav-right a:hover {
    color: #000;
}

.nav.light-bg .nav-left .logo,
.nav.light-bg .nav-right a {
    color: #000;
}

.nav.light-bg.scrolled .nav-right a {
    color: rgba(0, 0, 0, 0.7);
}

.nav.light-bg.scrolled .nav-right a:hover {
    color: #000;
}

.nav-left {
    padding-left: 1rem;
}

.nav-left .logo {
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.nav-right {
    display: flex;
    gap: 2.5rem;
    padding-right: 1rem;
}

.nav-right a {
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

/* Mobile Styles for Nav */
@media (max-width: 768px) {
    .nav {
        top: 1rem;
        width: calc(100% - 1.5rem);
        padding: 0.75rem var(--padding-inline);
    }

    .nav-right {
        gap: 1.5rem;
    }
    
    .nav-left {
        padding-left: 0.5rem;
    }
    
    .nav-right {
        padding-right: 0.5rem;
    }
}

.bottom-content {
    margin-top: auto;
    padding: var(--padding-block) var(--padding-inline);
    padding-bottom: 4rem;
}

.hero-content {
    max-width: 720px;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 400;
}

.generate-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-family: 'Alliance No.2', sans-serif;
    transition: transform 0.2s ease;
}

.generate-btn:hover {
    transform: translateY(-1px);
}

.trusted-by {
    margin-top: 3rem;
}

.trusted-by p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.company-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 400;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-content br {
        display: none;
    }

    .company-logos {
        gap: 1rem;
    }

    .bottom-content {
        padding-bottom: 3rem;
    }
}

/* About Section */
.about {
    min-height: 100vh;
    background: #fff;
    padding: 4rem 0;
    position: relative;
}

/* Section Navigation */
.section-nav {
    margin-bottom: 3rem;
    padding: 0 var(--padding-inline);
}

.section-titles {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.titles-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
}

.titles-container::-webkit-scrollbar {
    display: none;
}

.section-title {
    font-family: 'Alliance No.2', sans-serif;
    font-size: 0.875rem;
    color: #666;
    background: transparent;
    border: 1px solid #ddd;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200, 200, 200, 0.2);
    transform: translateX(-101%);
}

.section-title.active::before {
    animation: loadingProgress 5s linear;
}

@keyframes loadingProgress {
    0% {
        transform: translateX(-101%);
    }
    100% {
        transform: translateX(0);
    }
}

.section-title:hover {
    border-color: #999;
}

.section-title.active {
    color: #000;
    border-color: #000;
}

.see-all {
    font-family: 'Alliance No.2', sans-serif;
    font-size: 0.875rem;
    color: #666;
    background: transparent;
    border: 1px solid #ddd;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Slideshow */
.slideshow-container {
    position: relative;
    margin: 0 var(--padding-inline);
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide-content {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-info h3 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.slide-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #fff;
}

/* Remove the navigation arrows */
.slide-nav {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about {
        min-height: auto;
        padding: 2rem 0 0 0;
    }

    .section-nav {
        margin-bottom: 2rem;
    }

    .section-titles {
        display: block;
        margin: 0 var(--padding-inline);
        width: calc(100% - (2 * var(--padding-inline)));
    }

    .titles-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0;
    }

    .section-title {
        font-size: 0.75rem;
        padding: 0.5rem;
        height: 32px;
        width: 100%;
        white-space: normal;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }

    /* Show all buttons on mobile */
    .section-title:nth-child(n+3) {
        display: flex;
    }

    /* Remove +4 indicator */
    .titles-container::after {
        display: none;
    }

    .see-all {
        font-size: 0.75rem;
        padding: 0.5rem 0;
        height: 32px;
        width: 100%;
        margin: 0;
        border: none;
        text-decoration: underline;
        text-decoration-color: #999;
        text-underline-offset: 4px;
        display: block;
        text-align: left;
    }

    .slideshow-container {
        margin: 0 var(--padding-inline);
        width: calc(100% - (2 * var(--padding-inline)));
    }

    .slide-content {
        height: 400px;
        width: 100%;
        margin-bottom: 0;
    }

    .slide-info {
        width: 65%;
        padding: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .slide-info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .slide-info p {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

    .learn-more {
        font-size: 0.75rem;
    }

    .slide-nav {
        display: none;
    }

    .section-separator {
        width: calc(100% - 1.5rem);
        margin: 0 auto;
    }
}

.section-separator {
    width: calc(100% - (2 * var(--padding-inline)));
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-separator {
        width: calc(100% - 1.5rem);
        margin: 3rem auto;
    }
}

/* Mission Section */
.mission {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--padding-inline);
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #fff;
    overflow: hidden;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.mission-title {
    font-family: 'Alliance No.2', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(0, 0, 0, 0.9);
}

.mission-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mission-paragraph {
    font-family: 'Alliance No.2', sans-serif;
    font-size: clamp(1.35rem, 1.85vw, 1.65rem);
    line-height: 1.6;
    text-align: center;
    font-weight: 400;
    color: #000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.4rem;
    padding: 0 1rem;
}

.word {
    color: rgba(0, 0, 0, 0.15);
    transition: color 0.4s ease;
    display: inline-block;
}

.word.visible {
    color: rgba(0, 0, 0, 0.95);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about {
        padding: 2rem 0;
    }

    .mission {
        min-height: auto;
        padding: 0 var(--padding-inline);
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .mission-content {
        padding: 0;
    }

    .mission-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .mission-text {
        gap: 2rem;
    }

    .mission-paragraph {
        font-size: clamp(1.125rem, 4vw, 1.35rem);
        line-height: 1.5;
        gap: 0.2rem 0.35rem;
        padding: 0;
    }

    .section-separator {
        width: calc(100% - 1.5rem);
        margin: 0 auto;
    }
}

/* Section Separator */
.section-separator {
    width: calc(100% - (2 * var(--padding-inline)));
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .section-separator {
        width: calc(100% - 1.5rem);
        margin: 3rem auto;
    }
}

/* Steps Section */
.steps {
    padding: 6rem var(--padding-inline);
    background-color: #fff;
}

.steps-title {
    font-family: 'Alliance No.2', sans-serif;
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 400;
    color: #000;
    margin-bottom: 4rem;
}

.step-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.step-item:first-of-type {
    padding-top: 0;
}

.step-item:last-of-type {
    border-bottom: none;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.step-name {
    font-family: 'Alliance No.2', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #000;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.step-number {
    font-family: 'Alliance No.2', sans-serif;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.4);
    padding-top: 0.5rem;
}

.step-description {
    margin-top: 1rem;
    font-family: 'Alliance No.2', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    text-align: justify;
    max-width: 800px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .steps {
        padding: 2rem var(--padding-inline);
    }

    .steps-title {
        margin-bottom: 2rem;
    }

    .step-item {
        padding: 1.5rem 0;
    }

    .step-header {
        margin-bottom: 0.75rem;
    }

    .step-name {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .step-number {
        font-size: 0.875rem;
    }

    .step-description {
        font-size: 0.85rem;
        text-align: justify;
    }
}

/* Larger Screens */
@media (min-width: 1440px) {
    .steps {
        padding: 8rem var(--padding-inline);
    }

    .step-item {
        padding: 3rem 0;
    }
}

/* Impact Section */
.impact-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.impact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
}

.impact-image img, 
.impact-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(0.8);
    border-radius: 24px;
}

.impact-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-content h2 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.impact-content p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333;
    max-width: 500px;
}

.impact-btn {
    width: fit-content;
    padding: 0.75rem 1.5rem;
    border: 1px solid #000;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive design for impact section */
@media (max-width: 1024px) {
    .impact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-image {
        min-height: 400px;
    }

    .impact-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 2rem 1rem;
    }

    .impact-content {
        padding: 1rem;
    }

    .impact-content h2 {
        font-size: 2rem;
    }

    .impact-content p {
        font-size: 1rem;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 0 var(--padding-inline);
    margin-top: 6rem;
    background: #fff;
    position: relative;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    left: var(--padding-inline);
    right: var(--padding-inline);
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.cta-section::before {
    top: -1rem;
}

.cta-section::after {
    bottom: -1rem;
}

.cta-container {
    max-width: 1440px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cta-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    min-height: 140px;
}

.cta-box:hover {
    transform: translateY(-4px);
}

.cta-light {
    background: #e5e5e5;
    color: #000;
}

.cta-dark {
    background: #2a2f35;
    color: #fff;
}

.cta-text {
    font-size: 3.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-arrow {
    font-size: 2.5rem;
    margin-left: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Responsive design for CTA section */
@media (max-width: 1024px) {
    .cta-box {
        padding: 2rem 2.5rem;
        min-height: 120px;
    }
    
    .cta-text {
        font-size: 2rem;
    }

    .cta-arrow {
        font-size: 1.75rem;
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 0 var(--padding-inline);
    }

    .cta-container {
        gap: 1rem; /* Reduced gap for mobile */
    }
    
    .cta-box {
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .cta-text {
        font-size: 1.25rem;
        letter-spacing: -0.01em;
    }

    .cta-arrow {
        font-size: 1.25rem;
        margin-left: 0.75rem;
    }
}

/* Remove this block if it exists */
@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr 1fr; /* Keep two columns at all breakpoints */
    }
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    width: 100vw;
    height: 260px;
    background: url('Section Images/dottedearth.jpg') center 35%;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 6rem;
    margin-bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.newsletter-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--padding-inline);
    position: relative;
    z-index: 2;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #2a2f35;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.newsletter-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    align-items: flex-end;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid rgba(42, 47, 53, 0.3);
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: #2a2f35;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(42, 47, 53, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-bottom-color: #2a2f35;
}

.newsletter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: #2a2f35;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    margin-left: -1px;
}

.newsletter-btn:hover {
    opacity: 0.9;
}

/* Mobile Styles for Newsletter */
@media (max-width: 768px) {
    .newsletter-section {
        height: 240px;
        margin-top: 4rem;
    }

    .newsletter-content h3 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .newsletter-form {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Footer */
.footer {
    background: #fff;
    padding: 4rem var(--padding-inline) 3rem;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-description {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-column h4 {
    color: #000;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #000;
}

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

.copyright {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #000;
}

/* Contact Page Styles */
.contact-hero {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    padding: 2rem;
    padding-top: 120px;
}

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

.contact-hero h1 {
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.contact-form-section {
    padding: 6rem var(--padding-inline);
    background: #fff;
    min-height: 60vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-info p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-item a,
.contact-item p {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    margin: 0;
    line-height: 1.4;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    padding: 3rem 0;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

.form-group:focus-within::after {
    width: 100%;
}

.submit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Mobile Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        padding: 1rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 3rem var(--padding-inline);
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
    }

    .submit-btn {
        padding: 0.875rem 1.5rem;
    }
}



/* Mobile Styles for Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem var(--padding-inline) 2rem;
        margin-top: 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .social-links {
        width: 100%;
        justify-content: space-between;
    }
} 