:root {
    --primary: #f01f7f;
    --primary-dark: #c01060;
    --secondary: #0c2a62;
    --secondary-light: #163a80;
    --text-dark: #0a1525;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 10px 30px -10px rgba(12, 42, 98, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(240, 31, 127, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(240, 31, 127, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.text-primary {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(240, 31, 127, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 31, 127, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 5%;
}

header.scrolled {
    padding: 1rem 5%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    height: 100px;
}

.logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-contact):hover::after {
    width: 100%;
}

.btn-contact {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
}

.btn-contact:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Background Abstract decoration */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(240, 31, 127, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.image-wrapper {
    position: relative;
    max-width: 600px;
    border-radius: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 6s ease-in-out infinite reverse;
}

.floating-badge span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.floating-badge small {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 5rem auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(240, 31, 127, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(12, 42, 98, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Services Sections (Location & Vente) */
.services-section {
    padding: 6rem 5%;
    overflow: hidden;
}

.bg-light {
    background-color: var(--light-bg);
}

.container-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 5rem;
}

.container-split.reverse {
    flex-direction: row-reverse;
}

.content-side {
    flex: 1;
}

.visual-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(240, 31, 127, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-list {
    list-style: none;
    margin: 2rem 0;
}

.check-list li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    color: var(--secondary);
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-card-mockup {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    width: 300px;
    text-align: center;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.service-card-mockup:hover {
    transform: rotate(0);
    box-shadow: var(--shadow-hover);
}

.service-card-mockup h4 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.service-card-mockup .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.abstract-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    background: linear-gradient(135deg, rgba(12, 42, 98, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -50px;
    right: -50px;
}

.shape-2 {
    background: linear-gradient(-135deg, rgba(240, 31, 127, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -50px;
    left: -50px;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: var(--secondary);
    color: var(--white);
    position: relative;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    color: var(--white);
}

.contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: #f9f9f9;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(240, 31, 127, 0.1);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 968px) {
    .container-split {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .container-split.reverse {
        flex-direction: column;
    }

    .check-list {
        display: inline-block;
        text-align: left;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 7rem;
    }

    .hero-content {
        margin-bottom: 4rem;
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
    }

    .floating-badge {
        left: 0;
        bottom: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .logo-container {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu implementation usually requires JS toggle */
    }

    /* Simple mobile nav styles for reference */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem 5%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 2rem;
        align-items: flex-start;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -6px);
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--secondary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}