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

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #f4e04d;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    line-height: 1;
}

.transparent-header .logo-img {
    filter: brightness(0) invert(1);
}

.transparent-header .logo-text {
    color: white;
}

.transparent-header .logo-subtext {
    color: rgba(255, 255, 255, 0.8);
}

.transparent-header.scrolled .logo-img {
    filter: none;
}

.transparent-header.scrolled .logo-text {
    color: var(--text-dark);
}

.transparent-header.scrolled .logo-subtext {
    color: var(--text-light);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}

.logo h1 .plus-sign {
    font-weight: 300;
    margin-left: 0;
}

.transparent-header .logo h1,
.transparent-header .nav-menu a {
    color: white;
}

.transparent-header.scrolled .logo h1,
.transparent-header.scrolled .nav-menu a {
    color: var(--text-dark);
}

.logo span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-top: -5px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    gap: 2rem;
}

.header-cta-btn {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 224, 77, 0.4);
}

.transparent-header .header-cta-btn {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.main-nav {
    position: relative;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

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

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

.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/about-hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.plus-sign {
    font-weight: 200;
    margin-left: 0.1em;
}

.hero-tagline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    opacity: 0.9;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.scroll-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.intro-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.large-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.intro-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.value-section {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.value-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('../images/image2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-section {
    transition: transform 0.1s ease-out;
}

.value-overlay {
    text-align: center;
    padding: 2rem;
}

.value-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: white;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    margin: 0;
}

.features-modern {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.section-title-modern {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card-modern {
    padding: 3rem 2.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-color);
    transition: height 0.4s ease;
}

.feature-card-modern:hover::before {
    height: 100%;
}

.feature-card-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-modern[data-delay="100"].visible {
    transition-delay: 0.1s;
}

.feature-card-modern[data-delay="200"].visible {
    transition-delay: 0.2s;
}

.feature-card-modern[data-delay="300"].visible {
    transition-delay: 0.3s;
}

.feature-card-modern[data-delay="400"].visible {
    transition-delay: 0.4s;
}

.feature-card-modern {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: var(--text-dark);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1;
    opacity: 0.9;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.cta-section-modern {
    padding: 8rem 0;
    background-color: var(--accent-color);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta {
    background-color: var(--text-dark);
    color: var(--accent-color);
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-header-modern {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/about-hero.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0 4rem;
    margin-top: 80px;
    position: relative;
}

.page-header-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.about-intro {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: var(--text-dark);
}

.about-intro-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-mission {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.mission-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: white;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--text-dark) 100%);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.mission-icon-svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 224, 77, 0.1);
    border-radius: 50%;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon-svg {
    transform: scale(1.1) rotate(5deg);
    background: rgba(244, 224, 77, 0.2);
}

.mission-icon-svg svg {
    width: 100%;
    height: 100%;
}

.mission-card h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-card p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-values {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.section-title-center {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 3rem 2rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card[data-delay="100"].visible {
    transition-delay: 0.1s;
}

.value-card[data-delay="200"].visible {
    transition-delay: 0.2s;
}

.value-card[data-delay="300"].visible {
    transition-delay: 0.3s;
}

.value-card[data-delay="400"].visible {
    transition-delay: 0.4s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--text-dark);
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.about-info-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.info-card-modern {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 4rem 3rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card-modern h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

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

.info-item-modern {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.info-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--accent-color);
}

.about-content,
.services-content,
.contact-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.mt-4 {
    margin-top: 2rem;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
}

.values-list strong {
    color: var(--text-dark);
}

.info-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-content-modern {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.services-intro-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.service-card-modern {
    background: white;
    padding: 3rem 2.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.service-card-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-modern[data-delay="100"].visible {
    transition-delay: 0.1s;
}

.service-card-modern[data-delay="200"].visible {
    transition-delay: 0.2s;
}

.service-card-modern[data-delay="300"].visible {
    transition-delay: 0.3s;
}

.service-card-modern[data-delay="400"].visible {
    transition-delay: 0.4s;
}

.service-card-modern[data-delay="500"].visible {
    transition-delay: 0.5s;
}

.service-card-modern[data-delay="600"].visible {
    transition-delay: 0.6s;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--text-dark);
}

.service-icon-svg {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-svg {
    transform: scale(1.1);
    color: var(--text-dark);
}

.service-icon-svg svg {
    width: 100%;
    height: 100%;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.services-cta-modern {
    background: var(--bg-light);
    padding: 4rem 3rem;
    text-align: center;
    border: 2px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.services-cta-modern h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-cta-modern p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-content-modern {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-modern h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-intro {
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

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

.contact-item-modern {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item-modern:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon-svg {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 224, 77, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
}

.contact-icon-svg svg {
    width: 24px;
    height: 24px;
}

.contact-item-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-item-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-content a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper-modern {
    background: white;
    padding: 3rem;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper-modern h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group-modern input,
.form-group-modern textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(244, 224, 77, 0.1);
}

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

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text h3 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
    color: white;
}

.footer-logo-text span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    display: block;
    margin-top: 0.2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.footer-uen {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-cta-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .transparent-header .mobile-menu-toggle span {
        background-color: white;
    }
    
    .transparent-header.scrolled .mobile-menu-toggle span {
        background-color: var(--text-dark);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        display: none;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .transparent-header .nav-menu {
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .transparent-header .nav-menu a {
        color: var(--text-dark);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem;
    }
    
    .page-header-modern {
        padding: 4rem 0 3rem;
    }
    
    .about-intro,
    .about-values,
    .about-info-section {
        padding: 4rem 0;
    }
    
    .about-mission {
        padding: 4rem 0;
    }
    
    .mission-card {
        padding: 3rem 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-card-modern {
        padding: 3rem 2rem;
    }

    .hero-fullscreen {
        min-height: 100vh;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-tagline {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .intro-section {
        padding: 4rem 0;
    }
    
    .intro-grid {
        gap: 2rem;
    }
    
    .large-heading {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .intro-description {
        font-size: 1rem;
    }
    
    .value-section {
        min-height: 60vh;
    }
    
    .value-image-wrapper {
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .value-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .features-modern {
        padding: 4rem 0;
    }
    
    .section-title-modern {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 2.5rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-section-modern {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .cta-content p {
        font-size: 1rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper-modern {
        padding: 2rem;
    }
    
    .contact-content-modern {
        padding: 4rem 0;
    }

    .info-card {
        position: static;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-cta-modern {
        padding: 3rem 2rem;
    }

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

@media (max-width: 480px) {
    .hero-fullscreen {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        height: 40px;
    }
    
    .intro-section,
    .features-modern,
    .cta-section-modern {
        padding: 3rem 0;
    }
    
    .section-title-modern {
        margin-bottom: 2rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
