@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Updated to Purple & Orange */
    --primary-purple: #6D49F2;
    --deep-purple: #381D73;
    --accent-orange: #F27C38;

    --bg-light: #F2F2F2;
    --bg-secondary: #F8F8F8;
    /* Subtle secondary background */
    --text-dark: #0D0D0D;
    --text-muted: #555555;
    --white: #FFFFFF;

    /* Semantic Mappings */
    --primary-color: var(--primary-purple);
    --secondary-color: var(--deep-purple);
    --accent-color: var(--accent-orange);

    --bg-color: var(--bg-light);
    --text-color: var(--text-dark);
    --card-bg: var(--white);
    --shadow: 0 4px 12px rgba(56, 29, 115, 0.08);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sizing */
    --container-width: 1200px;
    --header-height: 80px;
}

[data-theme="dark"] {
    --bg-color: #0D0D0D;
    --bg-secondary: #161616;
    /* Darker secondary for contrast */
    --text-color: #F2F2F2;
    --card-bg: #1A1A1A;
    --text-muted: #A0A0A0;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Utilities */
.hidden {
    display: none !important;
}

.section-padding {
    padding: 100px 0;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: var(--transition-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

.reveal.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] header {
    background-color: rgba(18, 18, 18, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-link {
    color: var(--text-color);
    opacity: 0.6;
    transition: var(--transition-base);
}

.lang-link.active {
    opacity: 1;
    color: var(--primary-color);
}

.lang-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.lang-divider {
    opacity: 0.3;
}

.nav-links a:hover {
    color: var(--primary-color);
}

#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] #theme-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-color) 0%, #EADDFF 100%);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(109, 73, 242, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

[data-theme="dark"] .hero h1 {
    color: var(--white);
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero-subheadline {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 2px solid rgba(109, 73, 242, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 29, 115, 0.2);
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-cta:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(242, 124, 56, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--neutral-brown);
    color: var(--neutral-brown);
}

.btn-secondary:hover {
    background-color: var(--neutral-brown);
    color: var(--white);
}

/* Section Utilities */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-category {
    background-color: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.service-category:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-category h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.category-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(128, 191, 65, 0.1);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Case Studies Section */
.case-studies {
    background: linear-gradient(135deg, rgba(109, 73, 242, 0.05) 0%, rgba(56, 29, 115, 0.05) 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.case-study-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.case-study-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 25px -5px rgba(56, 29, 115, 0.15);
}

.case-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.case-section {
    margin-bottom: 1.5rem;
}

.case-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.case-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(109, 73, 242, 0.1);
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.3rem;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    background-color: rgba(166, 138, 86, 0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author strong {
    display: block;
    color: var(--primary-color);
}

.author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: #1A1A1A;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: #A0A0A0;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

footer h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #A0A0A0;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #A0A0A0;
    margin-bottom: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
        border-bottom: 2px solid var(--primary-green);
    }

    .nav-links.active-mobile {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }
}

/* Process Section */
.process {
    background-color: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    padding-top: 2rem;
}

.process-step {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid rgba(128, 191, 65, 0.1);
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(109, 73, 242, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Booking Page Specific */
.booking-page {
    background: linear-gradient(135deg, var(--bg-color) 0%, rgba(109, 73, 242, 0.05) 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.booking-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.booking-content .lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.value-prop-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.value-prop-card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
}

.benefit-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.booking-sidebar-testimonial {
    margin-top: 3rem;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    background: rgba(109, 73, 242, 0.05);
    border-radius: 0 20px 20px 0;
}

.booking-sidebar-testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.booking-form-container {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.booking-form .form-group label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    border: 2px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    transition: var(--transition-base);
}

[data-theme="dark"] .booking-form input,
[data-theme="dark"] .booking-form select,
[data-theme="dark"] .booking-form textarea {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--card-bg);
}

.form-notice {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-success h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-50%) scale(1.1);
}

.whatsapp-float i {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-content h1 {
        font-size: 2.8rem;
    }
}

/* Header States */
header.scrolled {
    height: 70px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}