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

:root {
    --teal: #14b8a6;
    --teal-dark: #0d9488;
    --purple: #a855f7;
    --dark-text: #1e293b;
    --gray-text: #64748b;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --border-gray: #cbd5e1;
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--teal);
}

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

.nav-link.active {
    color: var(--dark-text);
}

.login-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-gray);
    background-color: var(--white);
    color: var(--dark-text);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 148, 136, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(20, 184, 166, 0.1) 0%, 
            rgba(255, 255, 255, 0.95) 30%,
            rgba(255, 255, 255, 0.95) 70%,
            rgba(13, 148, 136, 0.1) 100%
        ),
        #ffffff;
    background-attachment: fixed;
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--dark-text) 70%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.headline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    border-radius: 2px;
}

.feature-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 36px;
    font-size: 16px;
    color: var(--gray-text);
}

.feature-item {
    white-space: nowrap;
    font-weight: 500;
    color: var(--dark-text);
    transition: color 0.3s ease;
    position: relative;
}

.feature-item:hover {
    color: var(--teal);
}

.feature-dot {
    color: var(--teal);
    font-weight: 700;
    font-size: 18px;
    margin: 0 4px;
    opacity: 0.6;
}

.description {
    font-size: 19px;
    color: var(--gray-text);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.8;
    padding: 0 20px;
    position: relative;
    font-weight: 400;
}

.description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--teal), var(--teal-dark));
    border-radius: 2px;
    opacity: 0.3;
}

.description::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--teal), var(--teal-dark));
    border-radius: 2px;
    opacity: 0.3;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-text);
    border: 2px solid var(--border-gray);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(20, 184, 166, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.2);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* Background Shapes - Geometric Pattern */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    will-change: transform;
    display: block;
}

/* Top-right geometric shape - hexagon pattern */
.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: 
        linear-gradient(135deg, rgba(20, 184, 166, 0.12) 0%, rgba(20, 184, 166, 0.06) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transform: rotate(45deg);
    z-index: 1;
    opacity: 0.8;
}

/* Bottom-left geometric shape - diamond pattern */
.shape-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    background: 
        linear-gradient(45deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: rotate(25deg);
    z-index: 1;
    opacity: 0.7;
}

/* Additional geometric accent */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: 
        linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateY(-50%) rotate(-15deg);
    z-index: 1;
    opacity: 0.6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background-color: var(--dark-text);
    width: 10px;
    height: 10px;
}

/* Products Section */
.products-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(20, 184, 166, 0.02) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    overflow: hidden;
    margin-top: 0;
}

.products-section::before {
    display: none;
}

.products-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.product-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.section-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--dark-text) 75%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-headline .highlight {
    font-size: 56px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
    border-radius: 2px;
    opacity: 0.3;
}

.section-description {
    font-size: 18px;
    color: var(--gray-text);
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 400;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
}

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

.product-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.product-card:hover .product-icon::before {
    width: 120px;
    height: 120px;
}

.product-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--teal);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-size: 15px;
    color: var(--gray-text);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-card:hover .product-features li::before {
    background: rgba(20, 184, 166, 0.2);
    transform: scale(1.1);
}

.product-card:hover .product-features li {
    color: var(--dark-text);
    transform: translateX(4px);
}

/* Services Section */
.services-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(20, 184, 166, 0.02) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    overflow: hidden;
    margin-top: 0;
}

.services-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

.service-card:hover .service-icon::before {
    width: 120px;
    height: 120px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--teal);
}

.service-description {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--dark-text);
}

/* About Us Section */
.about-us-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    width: 100%;
    background: #f8fafc;
    overflow: hidden;
    margin-top: 0;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(20, 184, 166, 0.03) 0%, 
        rgba(20, 184, 166, 0.01) 50%,
        rgba(13, 148, 136, 0.03) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.about-us-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
    padding: 80px 60px;
}

.about-us-text {
    margin-top: 40px;
}

.about-intro {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
}

.about-paragraph {
    font-size: 17px;
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    transition: color 0.3s ease;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--teal);
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(20, 184, 166, 0.05);
    border-left: 4px solid var(--teal);
    border-radius: 8px;
}

.specializations {
    margin: 40px 0;
    padding: 30px;
    background: rgba(20, 184, 166, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.1);
}

.specializations-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.specializations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specializations-list li {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.8;
    transition: color 0.3s ease, transform 0.3s ease;
}

.specializations-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.specializations-list li:hover {
    color: var(--dark-text);
    transform: translateX(4px);
}

.specializations-list li:hover::before {
    background: rgba(20, 184, 166, 0.2);
    transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(13, 148, 136, 0.02) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    overflow: hidden;
    margin-top: 0;
}

.why-choose-section::before {
    display: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(20, 184, 166, 0.12) 25px,
            rgba(20, 184, 166, 0.12) 50px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.why-choose-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

.section-tagline {
    font-size: 19px;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-style: italic;
    font-weight: 400;
}

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

.value-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-gray);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.15);
    border-color: rgba(20, 184, 166, 0.3);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.value-card:hover .value-icon::before {
    width: 120px;
    height: 120px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--teal);
}

.value-description {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover .value-description {
    color: var(--dark-text);
}

.mission-card {
    background: linear-gradient(135deg, 
        rgba(20, 184, 166, 0.08) 0%, 
        rgba(20, 184, 166, 0.03) 50%,
        rgba(13, 148, 136, 0.08) 100%
    );
    border: 2px solid rgba(20, 184, 166, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 32px;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.12);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.mission-quote {
    color: var(--teal);
    margin-bottom: 24px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-quote {
    opacity: 1;
    transform: scale(1.1);
}

.mission-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.mission-card:hover .mission-text {
    color: var(--teal-dark);
}

/* Corner Feature Blocks */
.corner-features {
    position: absolute;
    top: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 320px;
    z-index: 15;
}

.corner-feature-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.corner-feature-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.corner-feature-bordered {
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.corner-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(226, 232, 240, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    border: 1px solid rgba(203, 213, 225, 0.5);
}

.corner-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.corner-feature-content {
    flex: 1;
}

.corner-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.corner-feature-description {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
    margin: 0;
}

/* Careers Section */
.careers-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, 
            rgba(255, 255, 255, 1) 0%,
            rgba(20, 184, 166, 0.03) 50%,
            rgba(255, 255, 255, 1) 100%
        ),
        #ffffff;
    overflow: hidden;
    margin-top: 0;
}

.careers-section::before {
    display: none;
}

.careers-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.career-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 5;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--teal);
}

.career-icon {
    width: 64px;
    height: 64px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 24px;
}

.career-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.career-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.career-description {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.career-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.career-link:hover {
    gap: 10px;
    color: var(--teal-dark);
}

/* Careers Section Background Elements */
.careers-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(20, 184, 166, 0.15) 0%, 
        rgba(20, 184, 166, 0.08) 50%,
        transparent 100%
    );
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transform: rotate(45deg);
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 0;
    background-color: var(--white);
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Column - Contact Info */
.contact-info-column {
    position: relative;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    padding: 80px 60px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.contact-info-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
    position: relative;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.contact-info-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
    padding: 12px;
    border-radius: 12px;
    margin: -12px;
}

.contact-detail-item:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.05);
}

.contact-detail-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-detail-item:hover .contact-detail-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

.contact-detail-content {
    flex: 1;
}

.contact-detail-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-detail-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.4;
}

.contact-detail-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-question {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.chat-button {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.chat-button:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.chat-button:hover::before {
    width: 120px;
    height: 120px;
}

.chat-button svg {
    width: 24px;
    height: 24px;
}

.contact-info-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

/* Right Column - Contact Form */
.contact-form-column {
    padding: 80px 60px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.contact-form-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--dark-text) 80%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
    border-radius: 2px;
}

.contact-form-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 45px;
    line-height: 1.7;
    font-weight: 400;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.form-group input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark-text);
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input:hover {
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12), 0 4px 12px rgba(20, 184, 166, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: var(--gray-text);
    opacity: 0.6;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.25);
    position: relative;
    overflow: hidden;
}

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.35);
}

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

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray-text);
    text-align: center;
    margin-top: 24px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Privacy Policy Checkbox */
.privacy-checkbox-group {
    margin-bottom: 20px;
}

.privacy-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-text);
    position: relative;
}

.privacy-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    background-color: var(--white);
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-block;
}

.privacy-checkbox-label:hover .checkbox-custom {
    border-color: var(--teal);
}

.privacy-checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background-color: var(--teal);
    border-color: var(--teal);
}

.privacy-checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    display: block;
}

.privacy-checkbox-label input[type="checkbox"]:focus ~ .checkbox-custom {
    outline: 2px solid rgba(20, 184, 166, 0.3);
    outline-offset: 2px;
}

.privacy-checkbox-text {
    flex: 1;
    color: var(--dark-text);
}

.privacy-policy-link {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.privacy-policy-link:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.privacy-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.privacy-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid var(--light-gray);
    background: var(--white);
}

.privacy-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--dark-text);
}

.privacy-modal-close {
    background: transparent;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark-text);
    transition: all 0.2s ease;
    padding: 0;
}

.privacy-modal-close:hover {
    background: var(--light-gray);
    border-color: var(--dark-text);
}

.privacy-modal-close svg {
    width: 20px;
    height: 20px;
}

.privacy-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--teal) var(--light-gray);
}

.privacy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--teal-dark);
}

.privacy-intro {
    font-size: 16px;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.privacy-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light-gray);
}

.privacy-section-title:first-of-type {
    margin-top: 0;
}

.privacy-text {
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.privacy-list li {
    font-size: 15px;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--dark-text);
    font-weight: normal;
    font-size: 16px;
}

.privacy-disclaimer-box {
    background: var(--light-gray);
    border-left: 3px solid var(--teal);
    border-radius: 4px;
    padding: 20px;
    margin-top: 30px;
}

.privacy-disclaimer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.privacy-disclaimer-text {
    font-size: 14px;
    color: var(--dark-text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.privacy-disclaimer-text:last-child {
    margin-bottom: 0;
}

.privacy-modal-footer {
    padding: 25px 40px;
    border-top: 1px solid var(--light-gray);
    background: var(--white);
    display: flex;
    justify-content: flex-end;
}

.privacy-modal-accept-btn {
    padding: 12px 28px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.privacy-modal-accept-btn:hover {
    background: var(--teal-dark);
}

.privacy-modal-accept-btn:active {
    transform: scale(0.98);
}

/* Main Footer */
.main-footer {
    background-color: #1a202c;
    color: rgba(255, 255, 255, 0.9);
    padding: 60px 0 30px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-branding {
    max-width: 350px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-address {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-address p {
    margin: 0 0 5px 0;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-legal p {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

.footer-registration {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-policies a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: var(--teal);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

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

    /* Mobile Menu Styles */
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

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

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .nav-link {
        width: 100%;
        padding: 10px 0;
    }

    .login-btn {
        width: 100%;
        margin-top: 10px;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .header {
        padding: 12px 0;
    }

    .logo h1 {
        font-size: 20px;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    /* Hide or reduce hero background shapes on mobile */
    .hero .background-shapes {
        display: none;
    }

    .subtitle {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .headline {
        font-size: 36px;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }

    .headline::after {
        width: 60px;
        height: 3px;
    }

    .feature-list {
        font-size: 14px;
        gap: 6px 12px;
        margin-bottom: 28px;
    }

    .feature-item {
        font-size: 14px;
    }

    .feature-dot {
        font-size: 16px;
        margin: 0 3px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 36px;
        padding: 0 15px;
    }

    .description::before,
    .description::after {
        height: 50%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }

    .shape-1 {
        width: 400px;
        height: 500px;
        top: -100px;
        right: -80px;
    }

    .shape-2 {
        width: 450px;
        height: 400px;
        bottom: -100px;
        left: -120px;
    }

    .scroll-indicator {
        right: 15px;
        gap: 10px;
    }

    .scroll-dot {
        width: 6px;
        height: 6px;
    }

    .scroll-dot.active {
        width: 8px;
        height: 8px;
    }

    /* Products Section Mobile */
    .products-section {
        padding: 40px 0;
        margin-top: 40px;
        min-height: auto;
    }

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

    .section-headline {
        font-size: 32px;
        text-align: center;
    }

    .section-headline .highlight {
        font-size: 38px;
    }

    .section-description {
        font-size: 16px;
        margin-bottom: 40px;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
        width: 100%;
    }

    .product-card {
        padding: 28px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .product-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .product-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* Hide or reduce background shapes on mobile */
    .products-section .background-shapes {
        display: none;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 40px 0;
        margin-top: 0;
        min-height: auto;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
        width: 100%;
    }

    .service-card {
        padding: 30px;
        width: 100%;
        max-width: 100%;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* About Us Section Mobile */
    .about-us-section {
        padding: 40px 0;
        margin-top: 0;
        min-height: auto;
    }

    .about-us-content {
        text-align: center;
        width: 100%;
        padding: 40px 20px;
    }

    .about-intro {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about-paragraph {
        font-size: 16px;
        text-align: left;
        margin-bottom: 18px;
    }

    .about-highlight {
        font-size: 18px;
        margin: 25px 0;
        padding: 16px;
    }

    .specializations {
        margin: 30px 0;
        padding: 20px;
    }

    .specializations-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .specializations-list li {
        font-size: 16px;
        margin-bottom: 14px;
    }

    /* Why Choose Section Mobile */
    .why-choose-section {
        padding: 40px 0;
        margin-top: 0;
        min-height: auto;
    }

    .why-choose-section::after {
        width: 250px;
        height: 250px;
    }

    .why-choose-content {
        text-align: center;
        width: 100%;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
        width: 100%;
    }

    .value-card {
        padding: 30px;
        width: 100%;
        max-width: 100%;
    }

    .mission-card {
        padding: 40px 30px;
        width: 100%;
    }

    .corner-features {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
        margin-top: 40px;
    }

    .mission-text {
        font-size: 18px;
    }

    /* Careers Section Mobile */
    .careers-section {
        padding: 40px 0;
        margin-top: 40px;
        min-height: auto;
    }

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

    .careers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        justify-items: center;
        width: 100%;
    }

    .career-card {
        padding: 30px;
        width: 100%;
        max-width: 100%;
    }

    .careers-section::after {
        width: 300px;
        height: 300px;
        bottom: -80px;
        right: -80px;
    }


    /* Contact Section Mobile */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-column {
        padding: 50px 20px;
    }

    .contact-info-title {
        font-size: 32px;
    }

    .contact-info-subtitle {
        font-size: 16px;
    }

    .contact-details {
        gap: 25px;
        margin-bottom: 40px;
    }

    .contact-detail-item {
        gap: 15px;
    }

    .contact-detail-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

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

    .contact-detail-value {
        font-size: 16px;
    }

    .contact-form-column {
        padding: 50px 20px;
    }

    .contact-form-title {
        font-size: 32px;
    }

    .contact-form-title::after {
        width: 60px;
        height: 3px;
    }

    .contact-form-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

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

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input {
        padding: 14px 16px;
        font-size: 15px;
    }

    .form-submit-btn {
        padding: 16px 20px;
        font-size: 15px;
    }

    /* Footer Mobile */
    .main-footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

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

    .footer-logo {
        font-size: 26px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-legal {
        padding-top: 25px;
        margin-bottom: 25px;
    }

    .footer-legal p {
        font-size: 11px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding-top: 25px;
    }

    .footer-policies {
        flex-wrap: wrap;
        gap: 8px;
    }
}

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

    .headline {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .headline::after {
        width: 50px;
        height: 2px;
    }

    .subtitle {
        font-size: 10px;
        padding: 5px 14px;
        letter-spacing: 1.5px;
    }

    .feature-list {
        font-size: 13px;
        flex-direction: column;
        gap: 6px;
    }

    .feature-item {
        font-size: 13px;
    }

    .feature-dot {
        display: none;
    }

    .description {
        font-size: 15px;
        padding: 0 10px;
    }

    .description::before,
    .description::after {
        display: none;
    }

    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    /* Products Section Small Mobile */
    .section-headline {
        font-size: 24px;
    }

    .section-headline .highlight {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .product-card {
        padding: 20px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-features li {
        font-size: 14px;
    }

    /* Services Section Small Mobile */
    .service-card {
        padding: 25px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    /* About Us Section Small Mobile */
    .about-us-content {
        padding: 30px 15px;
    }

    .about-intro {
        font-size: 18px;
    }

    .about-paragraph {
        font-size: 15px;
    }

    .about-highlight {
        font-size: 16px;
        padding: 14px;
    }

    .specializations {
        padding: 18px;
    }

    .specializations-title {
        font-size: 18px;
    }

    .specializations-list li {
        font-size: 15px;
    }

    /* Why Choose Section Small Mobile */
    .value-card {
        padding: 25px;
    }

    .value-title {
        font-size: 20px;
    }

    .value-description {
        font-size: 14px;
    }

    .mission-text {
        font-size: 16px;
    }

    .corner-feature-block {
        padding: 16px;
    }

    /* Careers Section Small Mobile */
    .career-card {
        padding: 25px;
    }

    .career-title {
        font-size: 20px;
    }

    .career-description {
        font-size: 14px;
    }


    /* Careers Section Small Mobile */
    .career-card {
        padding: 25px;
    }

    .career-title {
        font-size: 20px;
    }

    .career-description {
        font-size: 14px;
    }


    /* Contact Section Small Mobile */
    .contact-info-column {
        padding: 50px 20px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-info-subtitle {
        font-size: 16px;
    }

    .contact-detail-item {
        gap: 15px;
    }

    .contact-detail-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .contact-detail-value {
        font-size: 16px;
    }

    .contact-form-column {
        padding: 50px 20px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .contact-form-subtitle {
        font-size: 16px;
    }

    /* Footer Small Mobile */
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-tagline {
        font-size: 13px;
    }

    .footer-legal {
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .footer-legal p {
        font-size: 11px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-policies {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-divider {
        display: none;
    }

    /* Privacy Policy Modal Mobile */
    .privacy-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .privacy-modal-header {
        padding: 20px;
    }

    .privacy-modal-title {
        font-size: 20px;
    }

    .privacy-modal-close {
        width: 36px;
        height: 36px;
    }

    .privacy-modal-body {
        padding: 25px 20px;
    }

    .privacy-section-title {
        font-size: 18px;
        margin-top: 25px;
    }

    .privacy-intro {
        font-size: 15px;
    }

    .privacy-text {
        font-size: 14px;
    }

    .privacy-list li {
        font-size: 14px;
    }

    .privacy-modal-footer {
        padding: 20px;
    }

    .privacy-modal-accept-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }

    .privacy-checkbox-label {
        font-size: 13px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .headline {
        font-size: 48px;
    }

    .description {
        font-size: 17px;
    }

    /* Products Section Tablet */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-headline {
        font-size: 42px;
    }

    .section-headline .highlight {
        font-size: 50px;
    }

    /* Services Section Tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* About Us Section Tablet */
    .about-us-content {
        padding: 60px 40px;
    }

    .about-intro {
        font-size: 22px;
    }

    .about-paragraph {
        font-size: 16px;
    }

    /* Why Choose Section Tablet */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .corner-features {
        top: 60px;
        right: 20px;
        max-width: 280px;
    }

    /* Careers Section Tablet */
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }


    /* Contact Section Tablet */
    .contact-info-column {
        padding: 70px 50px;
    }

    .contact-form-column {
        padding: 70px 50px;
    }

    /* Footer Tablet */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

/* Floating Banner Styles */
.floating-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 16px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.floating-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-banner-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.floating-banner-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

.floating-banner-btn {
    padding: 12px 24px;
    background-color: var(--white);
    color: var(--teal-dark);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.floating-banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-banner-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Floating Banner */
@media (max-width: 768px) {
    .floating-banner {
        padding: 14px 16px;
    }

    .floating-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .floating-banner-text {
        width: 100%;
    }

    .floating-banner-title {
        font-size: 15px;
    }

    .floating-banner-description {
        font-size: 13px;
    }

    .floating-banner-btn {
        width: 100%;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .floating-banner {
        padding: 12px 14px;
    }

    .floating-banner-title {
        font-size: 14px;
    }

    .floating-banner-description {
        font-size: 12px;
    }

    .floating-banner-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}

