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

:root {
    --primary-dark: #1a1a2e;
    --primary-accent: #6366f1;
    --accent-pink: #ec4899;
    --accent-yellow: #fbbf24;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ================================
   Header & Navigation
   ================================ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-accent), var(--accent-pink));
    top: -200px;
    right: -100px;
    opacity: 0.1;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-yellow));
    bottom: -150px;
    left: -100px;
    opacity: 0.1;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-accent));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-accent);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1 !important; /* Force visibility */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.hero-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    transform: rotate(5deg);
}

.grid-item {
    aspect-ratio: 1;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-accent), var(--accent-pink));
    opacity: 0.8;
}

.grid-item:nth-child(1) {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.grid-item:nth-child(2) {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    transform: translateY(20px);
}

.grid-item:nth-child(3) {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-20px);
}

.grid-item:nth-child(4) {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* ================================
   Services Section
   ================================ */
.services {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.service-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.5;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
    transition: color 0.3s ease;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-icon {
    font-size: 48px;
    text-align: right;
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

.service-item:hover .service-content h3 {
    color: var(--primary-accent);
}

.service-item:hover .service-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* ================================
   About Section
   ================================ */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-decoration {
    position: relative;
    width: 100%;
    height: 100%;
}

.deco-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 3px solid var(--primary-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.deco-line {
    position: absolute;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-yellow));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.about-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-accent);
    margin-bottom: 24px;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.stat {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   Contact Section
   ================================ */
.contact {
    padding: 120px 0;
    background: var(--primary-dark);
    color: white;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.contact-header h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.info-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-dark);
    color: white;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: white;
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ================================
   Footer
   ================================ */
footer {
    background: #0f0f1a;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }

    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 40px;
    }

    .service-item {
        grid-template-columns: 60px 1fr 60px;
        gap: 20px;
        padding: 32px 0;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-icon {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        height: 300px;
    }

    .deco-circle {
        width: 200px;
        height: 200px;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-header h2 {
        font-size: 40px;
    }

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

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

    .contact-form {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .service-number {
        text-align: center;
    }

    .service-icon {
        text-align: center;
    }
}

/* ================================
   Page Hero Styles
   ================================ */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-accent), var(--accent-pink));
    border-radius: 50%;
    opacity: 0.05;
}

.page-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.page-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   Services Page Styles
   ================================ */
.detailed-services {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 60px 0;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-detail.reverse .service-detail-visual {
    order: 2;
}

.service-detail-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-number-large {
    font-size: 180px;
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.1;
    position: absolute;
}

.visual-accent {
    width: 250px;
    height: 250px;
    border-radius: 30px;
    opacity: 0.2;
    transform: rotate(15deg);
}

.accent-purple {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.accent-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.accent-yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.accent-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.accent-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.service-detail-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.service-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--primary-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: 700;
}

.service-cta {
    margin-top: 40px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-accent);
    color: white;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-accent), var(--accent-pink));
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-large {
    background: white;
    color: var(--primary-accent);
    padding: 20px 48px;
    font-size: 18px;
}

.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ================================
   About Page Styles
   ================================ */
.story-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.story-visual {
    position: relative;
    height: 400px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* About Stats Section */
.about-stats-section {
    padding: 100px 0;
    background: var(--primary-dark);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-large .stat-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 16px;
}

.stat-large .stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Skills Section */
.skills-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.skills-content {
    max-width: 900px;
    margin: 0 auto;
}

.skills-category {
    margin-bottom: 48px;
}

.skills-category:last-child {
    margin-bottom: 0;
}

.skills-category h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-2px);
}

/* ================================
   Contact Page Styles
   ================================ */
.contact-main {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-block {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 20px;
}

.contact-info-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.info-item-detailed {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.info-item-detailed:last-child {
    margin-bottom: 0;
}

.info-item-detailed .info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-item-detailed h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.info-item-detailed p,
.info-item-detailed a {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    text-decoration: none;
}

.info-item-detailed a:hover {
    color: var(--primary-accent);
}

.expectation-list {
    list-style: none;
}

.expectation-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.expectation-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-accent);
    font-weight: 700;
}

/* Contact Form Light */
.contact-form-light {
    background: white;
    padding: 48px;
    border-radius: 24px;
    border: 2px solid var(--bg-light);
}

.contact-form-light label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form-light input,
.contact-form-light textarea,
.contact-form-light select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form-light input:focus,
.contact-form-light textarea:focus,
.contact-form-light select:focus {
    outline: none;
    border-color: var(--primary-accent);
    background: white;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.submit-btn-light {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.submit-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 16px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 20px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Alt Contact Section */
.alt-contact-section {
    padding: 80px 0;
    background: var(--primary-accent);
    color: white;
    text-align: center;
}

.alt-contact-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.alt-contact-content p {
    font-size: 18px;
    opacity: 0.9;
}

.alt-contact-content a {
    color: white;
    text-decoration: underline;
}

.alt-contact-content a:hover {
    opacity: 0.8;
}

/* ================================
   Additional Responsive Styles
   ================================ */
@media (max-width: 1024px) {
    .page-title {
        font-size: 52px;
    }

    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse .service-detail-visual {
        order: 0;
    }

    .service-detail-visual {
        height: 300px;
    }

    .service-number-large {
        font-size: 140px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
    }

    .page-title {
        font-size: 40px;
    }

    .page-description {
        font-size: 18px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skill-tags {
        gap: 8px;
    }

    .skill-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .contact-form-light {
        padding: 32px 24px;
    }
}
