* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1a1a1a;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-text-light {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a1a1a;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 8rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.hero-bg-wrapper {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% + 100px);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(124, 58, 237, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(59, 130, 246, 0.3) 2px, transparent 2px);
    background-size: 50px 50px, 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: wave 20s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-25px) translateY(-15px);
    }
    50% {
        transform: translateX(0) translateY(-30px);
    }
    75% {
        transform: translateX(25px) translateY(-15px);
    }
}

.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 70% 40% at 30% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 1) 100%);
}

.wave-shape {
    position: absolute;
    width: 100%;
    max-width: 100%;
    height: 200px;
    pointer-events: none;
    left: 0;
    right: 0;
}

.wave-1 {
    top: 15%;
    left: 0;
    opacity: 0.2;
    animation: oceanWave1 8s ease-in-out infinite;
}

.wave-2 {
    top: 20%;
    left: 0;
    opacity: 0.15;
    animation: oceanWave2 10s ease-in-out infinite;
    animation-delay: -2s;
}

.wave-3 {
    top: 25%;
    left: 0;
    opacity: 0.18;
    animation: oceanWave3 12s ease-in-out infinite;
    animation-delay: -4s;
}

.wave-4 {
    top: 30%;
    left: 0;
    opacity: 0.12;
    animation: oceanWave1 14s ease-in-out infinite;
    animation-delay: -6s;
}

.wave-5 {
    top: 40%;
    left: 0;
    opacity: 0.1;
    animation: oceanWave2 16s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes oceanWave1 {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-2%) translateY(10px);
    }
    50% {
        transform: translateX(-4%) translateY(0);
    }
    75% {
        transform: translateX(-2%) translateY(-10px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes oceanWave2 {
    0% {
        transform: translateX(0) translateY(0) scaleY(1);
    }
    25% {
        transform: translateX(3%) translateY(-8px) scaleY(1.05);
    }
    50% {
        transform: translateX(6%) translateY(0) scaleY(1);
    }
    75% {
        transform: translateX(3%) translateY(8px) scaleY(0.95);
    }
    100% {
        transform: translateX(0) translateY(0) scaleY(1);
    }
}

@keyframes oceanWave3 {
    0% {
        transform: translateX(0) translateY(0) scaleX(1);
    }
    33% {
        transform: translateX(-3%) translateY(12px) scaleX(1.02);
    }
    66% {
        transform: translateX(3%) translateY(-12px) scaleX(0.98);
    }
    100% {
        transform: translateX(0) translateY(0) scaleX(1);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #7c3aed;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-gradient {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #1a1a1a;
    transform: translateY(-2px);
}

.hero-visual {
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(124, 58, 237, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 80%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: #fafafa;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #7c3aed;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 8rem 2rem;
    background: #fafafa;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-white {
    padding: 1rem 2.5rem;
    background: white;
    color: #7c3aed;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    margin-top: 10px;
}

footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), rgba(59, 130, 246, 0.5), transparent);
    margin: 3rem 0;
}

.newsletter-section {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.newsletter-box {
    margin-top: 0;
}

.newsletter-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.newsletter-box p {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #7c3aed;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.privacy-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}


.privacy-links {
    display: flex;
    gap: 1rem;
}

.privacy-links a {

    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.privacy-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}


.privacy-links ul{
    list-style-type: none;
}

.privacy-links ul li{
    display: inline-block;
    gap: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 5px 0;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin: 1rem 0;
}

.mobile-menu ul li a {
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem 0;
    transition: all 0.2s;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: #7c3aed;
    padding-left: 0.5rem;
}

.mobile-menu .nav-cta {
    width: 100%;
    margin-top: 1rem;
}

/* Page Hero Styles */
.page-hero {
    padding: 10rem 2rem 6rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    text-align: center;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Page */
.services-detailed {
    padding: 6rem 2rem;
    background: #fafafa;
}

.services-detailed-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.service-detail-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s;
}

.service-detail-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-detail-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.service-detail-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.service-features-wrapper h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.service-features li {
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #666;
    position: relative;
    padding-left: 2.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: #7c3aed;
    font-weight: 700;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.additional-services-grid span {
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: white;
}

.process-container {
    max-width: 1280px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s;
}

.process-step:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* About Page */
.about-mission {
    padding: 6rem 2rem;
    background: white;
}

.about-mission-container {
    max-width: 1280px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #f3f4f6;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.mission-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Values Block */
.values-block {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
}

.values-block-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.values-block .section-title {
    color: white;
}

.values-block .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.values-text-content {
    margin-top: 3rem;
}

.values-text-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 2rem;
    background: white;
}

.why-choose-container {
    max-width: 1280px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 2.5rem;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.why-card:hover {
    background: white;
    border-color: #7c3aed;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

.approach-container {
    max-width: 1280px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    padding: 2rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.approach-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.approach-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.approach-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Team Stats */
.team-stats {
    padding: 6rem 2rem;
    background: white;
}

.team-stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.team-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-box {
    text-align: center;
}

.stat-box h3 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.stat-box p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Contact Page */
.contact-section {
    padding: 6rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.contact-info-item a {
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: #6b21a8;
}


.contact-info-item i{
    color: white;
}
.social-connect {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
}

.social-connect h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
}

.social-link-contact {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link-contact:hover {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Careers Page */
.careers-why {
    padding: 6rem 2rem;
    background: white;
}

.careers-container {
    max-width: 1280px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2.5rem;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: white;
    border-color: #7c3aed;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.open-positions {
    padding: 6rem 2rem;
    background: #fafafa;
}

.positions-container {
    max-width: 1280px;
    margin: 0 auto;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
}

.position-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.position-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.position-type,
.position-location,
.position-dept {
    padding: 0.4rem 1rem;
    background: #f9fafb;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

.position-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.position-requirements {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.position-requirements li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #666;
}

.position-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: 700;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.careers-culture {
    padding: 6rem 2rem;
    background: white;
}

.culture-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.culture-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.careers-perks {
    padding: 6rem 2rem;
    background: #fafafa;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.perk-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s;
}

.perk-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.perk-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.perk-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.perk-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero,
    .page-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .features-grid,
    .stats-container,
    .process-grid,
    .approach-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-features,
    .additional-services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .position-header {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-small {
        width: 100%;
    }
}
/* ===================================
   CONTENT PAGE TEMPLATE STYLES
   =================================== */

/* Hero Section */
.content-page-hero {
    padding: 8rem 2rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    text-align: center;
}

.content-page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.content-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.last-updated {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Content Section */
.content-page-section {
    padding: 4rem 2rem 6rem;
    background: white;
}

.content-page-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
}

/* No Sidebar Layout */
.content-page-container.content-page-no-sidebar {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.content-page-no-sidebar .content-page-main {
    max-width: 100%;
}

/* Sidebar Navigation */
.content-page-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.content-nav {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
}

.content-nav h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.content-nav ul {
    list-style: none;
}

.content-nav ul li {
    margin-bottom: 0.75rem;
}

.content-nav ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.content-nav ul li a:hover {
    background: white;
    color: #7c3aed;
    padding-left: 1rem;
}

/* Main Content */
.content-page-main {
    max-width: 800px;
}

.content-article section {
    margin-bottom: 3rem;
}

.content-article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.content-article section:first-child h2 {
    border-top: none;
    padding-top: 0;
}

.content-article h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-article p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.25rem;
}

.content-article ul,
.content-article ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-article li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.75rem;
}

.content-article strong {
    color: #1a1a1a;
    font-weight: 600;
}

.content-article a {
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.2s;
}

.content-article a:hover {
    color: #6b21a8;
    text-decoration: underline;
}

.contact-info-box {
    background: #f9fafb;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-info-box p {
    margin-bottom: 0.75rem;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .content-page-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-page-sidebar {
        position: static;
    }

    .content-nav {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .content-page-hero {
        padding: 7rem 1.5rem 3rem;
    }

    .content-page-hero h1 {
        font-size: 2rem;
    }

    .content-article h2 {
        font-size: 1.6rem;
    }

    .content-article h3 {
        font-size: 1.2rem;
    }

    .content-article p,
    .content-article li {
        font-size: 1rem;
    }
}

/* Form Message Styles - Floating */
.form-message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-message.fade-out {
    animation: slideOutRight 0.3s ease;
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.form-message::before {
    content: '';
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-message-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message-success::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

.form-message-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-message-error::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-weight: bold;
}

/* Button Loading State */
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-message {
        top: 80px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}