/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700&display=swap');

:root {
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.8);
    --color-border-subtle: rgba(255, 255, 255, 0.12);
    --color-bg-deep: #0b0b0f;
    --color-bg-mid: #141419;
    --color-bg-black: #000000;
    --color-accent: #b3f4ff;
    --color-accent-2: #0e2b37;
    --color-accent-3: #8fd6ff;

    --gradient-main: 
        radial-gradient(60vw 60vw at 20% 20%, rgba(100,181,246,0.18), transparent 55%),
        radial-gradient(50vw 50vw at 80% 30%, rgba(66,165,245,0.14), transparent 60%),
        radial-gradient(40vw 40vw at 50% 80%, rgba(33,150,243,0.10), transparent 65%),
        radial-gradient(70vw 70vw at 10% 70%, rgba(100,181,246,0.12), transparent 60%), /* bottom-left */
        radial-gradient(50vw 50vw at 90% 80%, rgba(66,165,245,0.10), transparent 65%), /* bottom-right */
        radial-gradient(30vw 30vw at 60% 10%, rgba(33,150,243,0.08), transparent 70%),  /* top-center faint */
        linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 100%);
    --gradient-vertical: linear-gradient(180deg, #101015 0%, #0b0b10 100%);
    --gradient-page-header: linear-gradient(135deg, #0e0e12 0%, #15151b 60%, #1c1c24 100%);
    --gradient-footer: linear-gradient(180deg, #0c0c10 0%, #050507 100%);
    --gradient-button: linear-gradient(135deg, #ffffff, #d7f6ff);
    --gradient-button-hover: linear-gradient(135deg, #d7f6ff, #ffffff);
}

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

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--gradient-main);
    overflow-x: hidden;
}

 

/* Team Member Modal */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-backdrop.open {
    display: flex;
}

.modal {
    width: 100%;
    max-width: 780px;
    background: rgba(20, 28, 44, 0.95);
    border: 1px solid var(--color-border-subtle);
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    color: var(--color-text);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
}

.modal-close:hover {
    background: rgba(255,255,255,0.08);
}

.modal-content {
    padding: 22px 24px 26px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: start;
}

.modal-avatar {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border-subtle);
}

.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-sections {
    display: grid;
    gap: 14px;
}

.modal-section h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--color-text);
    font-weight: 500;
}

.modal-section p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-avatar {
        width: 120px;
        height: 120px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border-subtle);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Brand Section */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Fjalla One', sans-serif;
}

.company-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo {
    font-size: 23px;
    font-weight: 400;
    font-family: 'Playfair Display';
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -1px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-nav-header .logo {
    font-size: 24px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #cccccc;
}

/* Mobile Nav Content */
.mobile-nav-content {
    padding: 60px 40px;
}

.mobile-nav .nav-link {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.mobile-nav .nav-link:hover {
    color: #cccccc;
    padding-left: 20px;
}

/* Removed unused dropdown menu styles */

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    /* .tagline removed */
    
    .logo {
        font-size: 22px;
    }
    
    .company-logo {
        width: 35px;
        height: 35px;
    }
    
    .mobile-nav-content {
        padding: 40px 20px;
    }
    
    .mobile-nav .nav-link {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    /* .dropdown-link removed */
}

@media (max-width: 480px) {
    .mobile-nav-header {
        padding: 15px 20px;
    }
    
    /* .dropdown-link and related removed */
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Landing Section */
.hero-landing {
    height: 115vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-landing::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-landing::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), rgba(0,0,0,0.15) 60%);
    opacity: 0.12;
    filter: none;
    z-index: 0;
    pointer-events: none;
}

.arc-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.arc-overlay svg {
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    margin-top: -6vh;
}

.hero-horizontal {
    display: flex;
    align-items: center;       /* vertically center text */
    justify-content: center;   /* center the whole block in hero */
    gap: clamp(20px, 5vw, 85px);
    text-align: left;

}

.company-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 10rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(80px);
    animation: fadeInUp 1.5s ease forwards 0.5s;
    line-height: 1;
}

.company-slogan {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vw, 2rem);
    font-weight: 400;
    color: #fff;
    margin: 0;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(80px);
    animation: fadeInUp 1.5s ease forwards 0.5s;
    line-height: 1;
}

.company-slogan .stagger {
    display: inline-block;
    margin-left: 40px;   /* controls indentation of second line */
}

@media (max-width: 600px) {
  .hero-horizontal {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* About Introduction Section - SAME DARK BACKGROUND */
.about-intro {
    padding: 120px 0;
    min-height: 100vh;
    position: relative;
}

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

/* Large headline - left aligned */
.intro-headline {
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 300;
    color: #4391da;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-align: left;
    max-width: 900px;
}

.intro-description {
    max-width: 800px;
    margin-left: 0;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    text-align: left;
    /* All text visible immediately */
    opacity: 1;
    transform: translateY(0);
}

/* Special styling for the tagline */
.intro-tagline {
    font-size: 1.5rem !important;
    color: var(--color-text) !important;
    margin-top: 60px !important;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 400 !important;
}

.intro-tagline strong {
    color: #5eb3d3;
    font-weight: 500;
}

/* Keep the fade-in animation for "Arcadian" title only */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-intro {
        padding: 80px 0;
    }
    
    .intro-content {
        padding: 0 20px;
    }
    
    .intro-headline {
        margin-bottom: 60px;
    }
    
    .intro-paragraph {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .intro-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }
    
}
/* Services */
/* .services-hero {
    padding: 120px 0;
    color: var(--color-text);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text);
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 0px;
    margin-bottom: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.service-image {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.service-image img {
    height: 180px;         /* smaller height */
    /* max-width: 320px;     
    margin: 0 auto 20px;  
    border-radius: 10px; */
    /* overflow: hidden;
    transition: all 0.4s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.service-heading {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .services-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        gap: 35px;
    }
}

@media (max-width: 900px) {
    .services-hero {
        padding: 100px 0;
    }
    
    .services-title {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 60px;
    }
    
    .service-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .services-hero {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .service-heading {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-image {
        height: 200px;
    }
}  */

.services-works {
  padding: 100px 0;
  background: none; /* let main background show through */
  text-align: center;
}

.works-title {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: 'Oswald';
  color: #fff;
  letter-spacing: 2px;
}

.works-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  gap: 0; /* no gaps so blocks are "attached" */
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  flex: 1 1 300px; /* min width 300px, flexible beyond that */
  max-width: 500px;
  text-decoration: none;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(50%); /* dim image */
}

.work-card:hover img {
  transform: scale(1.1);
  filter: brightness(65%); /* slightly lighten on hover */
}

.work-info {
  position: absolute;
  inset: 0; /* covers full card */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  color: #fff;
  text-align: left;
}

.work-info h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;

}

.work-info p {
  font-size: 0.9rem;
  margin: 4px 0 0;
  opacity: 0.85;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--gradient-vertical);
    position: relative;
}

/* Reveal utilities */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.features h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 4rem;
    color: var(--color-text);
    font-weight: 300;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--color-border-subtle);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 181, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 100%);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(66, 165, 245, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--color-text);
    font-weight: 300;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    color: white;
    padding: 14px 26px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border-subtle);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.placeholder-image {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(66, 165, 245, 0.1) 100%);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Full-width hero image section */
.hero-image {
    position: relative;
}

.hero-image .image-container {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.hero-image .hero-img {
    display: block;
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.hero-image .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.0) 0%, rgba(10,22,40,0.35) 60%, rgba(10,22,40,0.6) 100%);
    pointer-events: none;
}

/* Page Header */
.page-header {
    background: var(--gradient-page-header);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(100, 181, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    font-family: 'Georgia', serif;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Team Section */
.team-section {
    background: var(--gradient-diagonal);
    padding: 120px 0;
    color: var(--color-text);
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.team-title {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.team-member:hover .member-photo {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.member-name .arrow {
    font-size: 1.5rem;
    font-weight: 300;
    color: #5eb3d3;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.team-member:hover .member-name .arrow {
    opacity: 1;
    transform: translateX(5px);
}

.member-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        gap: 50px 60px;
    }
}

@media (max-width: 900px) {
    .team-section {
        padding: 100px 0;
    }
    
    .team-title {
        font-size: 2.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 400px;
    }
    
    .member-photo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-title {
        font-size: 2.4rem;
    }
    
    .member-name {
        font-size: 1.6rem;
    }
    
    .member-photo {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 2rem;
    }
    
    .member-photo {
        width: 140px;
        height: 140px;
    }
}

/* Company Story */
.company-story {
    background: linear-gradient(180deg, var(--color-bg-mid) 0%, var(--color-bg-deep) 100%);
    padding: 100px 0;
    position: relative;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(66, 165, 245, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    text-align: center;
    font-weight: 300;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.story-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-vertical);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(100, 181, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    font-weight: 300;
    letter-spacing: -0.5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    margin-top: 0.3rem;
    color: var(--color-accent);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
    font-weight: 400;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    font-weight: 300;
    letter-spacing: -0.5px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--color-border-subtle);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.1);
}

.submit-btn {
    background: var(--gradient-button);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.3);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(100, 181, 246, 0.4);
    background: var(--gradient-button-hover);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

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

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

/* Footer */
.footer {
    background: var(--gradient-footer);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(100, 181, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1.2rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

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

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features h2,
    .about-text h2,
    .story-content h2 {
        font-size: 2rem;
    }
}
