
:root {
    --primary: #e67a0a;
    --primary-light: #fef2e4;
    --third-color: #8f9dc2;
    --dark: #050545;
    --dark-light: #1a1a3a;
    --gray: #4C576C;
    --gray-light: #F9FBFD;
    --border: #EAECF0;
}
@font-face {
    font-family: 'Geom';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/geom/v1/X7nq4bw6Cf6j8tOXHQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #050545;
    line-height: 1.5;
    overflow-x: hidden;
}
.container-xxl {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

h1, h2, h3, h4, h5, .subhead {
    font-family: 'Geom', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}
em {
    color: var(--primary);
    text-transform: capitalize;
    font-style: normal;
}
.primary-clr { color: var(--primary); }
.primary-bg { background-color: var(--primary); }
.dark-clr { color: var(--dark); }
.dark-bg { background-color: var(--dark); }
.third-color {
    color: var(--third-color);
}

.main-btn {
    background: var(--dark);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px -5px rgba(2,0,40,0.1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.main-btn:hover {
    background: var(--primary);
    transform: translateY(-4px);
}
.main-btn-primary {
    background: var(--primary);
}
.main-btn-primary:hover {
    background: var(--dark);
    transform: translateY(-4px);
}

/* Navigation */
.navbar-section {
    background-color: rgba(255,255,255,0.98);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ffffff70;
}
.logo svg {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    font-weight: 500;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    /*transition: color 0.2s;*/
    position: relative;
    font-size: 0.95rem;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.contact-link {
    background-color: var(--primary);
    color: white !important;
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.25s;
}
.contact-link::after {
    display: none;
}
.contact-link:hover {
    background-color: #c55f00;
    transform: scale(1.02);
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    align-items: center;
    min-height: 750px;
}
.hero-left {
    flex: 1 1 50%;
    padding-right: 20px;
}
.hero-badge {
    background: var(--primary-light);
    width: fit-content;
    padding: 8px 24px;
    border-radius: 100px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #FFE6C7;
    margin-bottom: 25px;
}
.hero-left h1 {
    font-size: 3.35rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--dark);
}
.hero-left h1 span {
    color: var(--primary);
    background: var(--primary-light);
    padding: 0 8px;
    border-radius: 18px;
    display: inline-block;
}
.hero-left .subhead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}
.hero-left p {
    color: var(--gray);
    margin: 28px 0 36px;
    max-width: 550px;
}

.wrapper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(230, 122, 10, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-right {
    flex: 1 1 50%;
}

.wrapper {
    position: relative;
    background-image: url('../images/background-overlay.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    z-index: 1;
    opacity: 0.1;
}

.wrapper.dark-bg {
    background: var(--dark);
    margin-bottom: 40px;
}

.wrapper.dark-bg .nav-links a {
    color: #fff;
}

.wrapper .container-xxl {
    z-index: 2;
    width: 100%;
}

/* Make navbar transparent in wrapper */
.wrapper .navbar-section {
    background: transparent;
    backdrop-filter: none;
    position: relative;
    border-bottom: 1px solid rgba(230, 122, 10, 0.15);
}


/* Fixed dashboard image (background) - Sticks to right edge */
.dashboard-fixed {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-44%);
    width: 80%;
    max-width: 760px;
    z-index: 1;
    pointer-events: none;
}

.dashboard-fixed img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

/* Bouncing cards image (foreground) */
.cards-bouncing {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 280px;
    z-index: 2;
    animation: bounceCard 3s ease-in-out infinite;
    pointer-events: none;
}

.cards-bouncing img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
}

/* Bouncing animation */
@keyframes bounceCard {
    0% {
        transform: translateY(-50%) translateX(0px) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateX(-15px) translateY(-15px);
    }
    100% {
        transform: translateY(-50%) translateX(0px) translateY(0px);
    }
}


.steps-section {
    margin-top: 40px;
}
.step-title {
    font-size: 40px;
    font-weight: 700;
}
.steps {
    margin-top: 110px;
}
.step-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9f4b 100%);
    color: #fff;
    width: 60px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    padding: 16px;
}
.second-step-icon {
    margin-top: -114px;
    margin-bottom: 66px;
    margin-left: -10px;
}
.sub-text {
    padding: 3px 10px;
    font-size: 13px;
    background-color: #fff;
    border-color: var(--primary);
    margin-bottom: 12px;
    margin-inline: auto;
}
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px;
    margin-inline: auto;
}
.step-item-description {
    font-size: 15px;
    color: var(--third-color);
}
.steps-road {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    z-index: -1;
}
.step-title-section {
    max-width: 820px;
    margin: auto;
    text-align: center;
}
.shape {
    position: absolute;
    top: 18%;
}

/* Section commune */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}
.section-title h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
}
.section-title p {
    font-size: 1.1rem;
    color: var(--third-color);
    margin: 15px auto 0;
}

/* Feature grid */
.app-section {
    margin: 60px 0;
    background-color: #f9fafc;
    padding-block: 60px;
}
.feature-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}
.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}
/* Features grid (outils puissants) */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
    gap: 30px;
    margin: 60px 0 20px;
}
.tool-item {
    background: var(--gray-light);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.tool-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(230,122,10,0.1);
}
.tool-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: var(--primary-light);
    padding: 15px;
    border-radius: 20px;
}
.tool-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.tool-item p {
    color: var(--third-color);
}

/* Testimonial */
.testimonial-card {
    background: var(--dark);
    border-radius: 50px;
    padding: 60px;
    color: white;
    margin: 80px 0;
    position: relative;
}
.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-content i {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 20px;
}
.testimonial-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.author-info h4 {
    color: white;
    margin-bottom: 5px;
}
.author-info p {
    color: #9AA7B9;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-light);
    border-radius: 60px;
    padding: 80px 40px;
    text-align: center;
    margin: 40px 0 20px;
    border: 1px solid #FFE2BD;
}
.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}
.cta-section p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-primary {
    background: var(--dark);
    color: white;
    padding: 16px 44px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.cta-primary:hover {
    background: var(--primary);
}
.cta-secondary {
    background: white;
    color: var(--dark);
    padding: 16px 44px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--dark);
    transition: 0.2s;
}
.cta-secondary:hover {
    background: var(--dark);
    color: white;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #B0BDD4;
    padding: 60px 0 30px;
    border-radius: 50px 50px 0 0;
    margin-top: 40px;
}
.footer .logo svg{
    height: 55px;
}
.footer-col {
    width: 22%;
}
.footer-col:first-child {
    width: 34%;
}
.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}
.footer a {
    color: #CBD5E1;
    text-decoration: none;
    display: block;
    margin: 12px 0;
    transition: color 0.2s;
}
.footer a:hover {
    color: var(--primary);
}
.footer .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.footer .social-icons i {
    font-size: 1.5rem;
    color: #CBD5E1;
    transition: color 0.2s;
}
.footer .social-icons i:hover {
    color: var(--primary);
}
.copyright {
    text-align: center;
    padding-top: 30px;
    color: #7B89A3;
    border-top: 1px solid #ababab52;
    margin-top: 30px;
}


/* For larger screens */
@media (min-width: 1700px) {
    .dashboard-fixed {
        max-width: 900px;
    }
}
/* Responsive Styles */
@media (max-width: 1400px) {
    .hero {
        min-height: 650px;
    }
    .hero-left h1 {
        font-size: 3.2rem;
    }
    .dashboard-fixed {
        max-width: 670px;
    }
    .steps-section {
        margin-top: 40px;
    }
    .steps-road {
        top: -60px;
    }
    .steps-road svg {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 1350px) {
    .step-icon {
        margin-top: 60px;
    }
    .second-step-icon {
        margin-top: -100px;
    }
    .step-item {
        max-width: 300px;
    }
}
@media (max-width: 1300px) {
    .hero-left h1 {
        font-size: 3rem;
    }
    .steps-road {
        top: -50px;
    }
    .step-icon {
        margin-top: 60px;
    }
    .second-step-icon {
        margin-top: -100px;
    }
    .step-item {
        max-width: 275px;
    }
}
@media (max-width: 1260px) {
    .hero-left h1 {
        font-size: 2.8rem;
    }
    .step-item {
        margin-top: -8px;
    }
}

@media (max-width: 1199.98px) {
    div#offcanvasNavbar {
        min-height: 100vh;
    }
    .hero {
        flex-direction: column;
        position: relative;
    }
    .hero-left {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .hero-right {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }
    
    .dashboard-fixed {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        max-width: 65%;
        margin: auto;
        height: 270px;
    }
    .hero-badge {
        margin: auto;
        margin-bottom: 15px;
        padding: 4px 14px;
        font-size: 13px;
    }
    .hero-left h1, .hero-left .subhead {
        margin-bottom: 10px;
    }
    .hero-left p {
        max-width: 80%;
        margin: 0 auto 15px;
    }
    
    .cards-bouncing {
        right: -12%;
        left: auto;
        width: 220px;
    }
    .step-title {
        font-size: 36px;
    }
    .step-item {
        margin-top: -14px;
    }
    
    .second-step-icon {
        margin-top: -80px;
        margin-bottom: 60px;
    }
    .cta-section h2, .feature-text h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .cta-section p {
        font-size: 1.1rem;
    }
    .cta-secondary, .cta-primary {
        padding: 12px 35px;
    }
    .feature-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1160px) {
    .step-item {
        margin-top: -25px;
    }
    .app-section {
        padding-bottom: 0;
    }
    .app-row {
        flex-direction: column;
        text-align: center;
        max-width: 85%;
    }
    .app-row .col-lg-6 {
        width: 100%;
    }
    .app-row ul {
        display: none;
    }
    .app-row .img-fluid {
        max-width: 70%;
    }
    .app-row .hero-badge {
        margin-inline: auto !important;
    }
}
@media (max-width: 1125px) {
    .steps-road {
        display: none;
    }
    .step-icon, .step-item {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .steps {
        margin-top: 15px;
    }

    /* Modern Card Layout */
    .step-title {
        font-size: 32px;
    }
    
    .step-item {
        max-width: 100%;
        margin: 0 !important;
        padding: 20px;
        background: white;
        border-radius: 18px;
        box-shadow: 0 15px 35px -10px rgba(0,0,0,0.05);
        border: 1px solid #c6cddd85;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .step-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px -15px rgba(230, 122, 10, 0.3);
        border-color: var(--primary);
    }
    
    /* Add subtle gradient background on hover */
    .step-item:hover::before {
        opacity: 1;
    }
    
    .step-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), #ff9f4b);
        opacity: 0;
        transition: opacity 0.4s ease;
    }
                
    .sub-text {
        margin-block: 15px;
        background: rgba(230, 122, 10, 0.08);
        border: 1px solid rgba(230, 122, 10, 0.2);
        color: var(--primary);
        font-weight: 500;
        font-size: 12px;
    }
    
    .step-item-title {
        font-weight: 700;
    }
    
    .step-item-description {
        margin-bottom: 10px;
    }
    
    /* Icon styling */
    .step-icon {
        width: 65px;
        height: 65px;
        padding: 18px;
        margin: 0 !important;
        box-shadow: 0 10px 20px -5px rgba(230, 122, 10, 0.3);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        order: -1;
    }
    
    .step-item:hover .step-icon {
        transform: scale(1.05) rotate(5deg);
        box-shadow: 0 15px 30px -5px rgba(230, 122, 10, 0.4);
    }
    
    .step-icon svg {
        width: 100%;
        height: 100%;
        stroke: white;
    }
                        
    /* Add decorative element */
    .step-item::after {
        content: '';
        position: absolute;
        bottom: -75px;
        right: -75px;
        width: 230px;
        height: 230px;
        background: radial-gradient(circle, #0a52e60f 0%, #c4d1e929 70%);
        border-radius: 50%;
        z-index: 0;
    }
    
}

@media (max-width: 1024px) {
    .shape {
        display: none;
    }
    .app-row .img-fluid {
        max-width: 80%;
    }
    .tool-item {
        padding: 20px 30px;
    }
    .tool-item i {
        font-size: 2.2rem;
    }
}
@media (max-width: 992px) {
    .cta-section h2, .feature-text h2 {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }
    .cta-section p {
        font-size: 1rem;
    }
    .footer-col {
        width: 50% !important;
        margin-bottom: 25px;
    }
    .copyright {
        margin-top: 0;
    }
    .tool-item p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .hero .hero-badge {
        display: none;
    }
    .hero-left h1 {
        font-size: 2.4rem;
    }
    .hero-left .subhead {
        font-size: 1.3rem;
    }
    .hero-left p {
        max-width: 90%;
        font-size: 15px;
    }
    .main-btn {
        padding: 10px 22px;
        font-size: 1rem;
    }
    .dashboard-fixed {
        max-width: 85%;
    }
    .cards-bouncing {
        width: 170px;
    }
    .step-item {
        min-height: auto;
        flex-direction: row !important;
        align-items: center;
        text-align: left;
        padding: 20px;
        gap: 20px;
    }
    
    .step-item-content {
        flex: 1;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        padding: 14px;
        margin: 0 !important;
        flex-shrink: 0;
    }
    
    .sub-text {
        margin-inline: 0;
        margin-bottom: 8px;
    }
    
    .step-item-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .step-item-description {
        font-size: 14px;
    }
    
    .step-item::after {
        width: 120px;
        height: 120px;
        bottom: -30px;
        right: -30px;
    }
    .feature-text h2 {
        font-size: 2rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .cta-section {
        background: var(--primary-light);
        border-radius: 60px;
        padding: 60px 25px;
    }
    .cta-section h2, .feature-text h2 {
        font-size: 2.2rem;
    }
    .cta-section p {
        margin-bottom: 30px;
    }
    .cta-secondary, .cta-primary {
        padding: 10px 22px;
        font-size: 15px;
    }
    .app-section {
        margin-top: 30px;
    }
    .app-row {
        max-width: 90%;
    }
    .app-row .img-fluid {
        max-width: 85%;
    }
    .tools-grid
    {
        gap: 20px;
        margin: 30px 0 20px;
        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    }
}
@media (max-width: 576px) {
    .hero-left h1 {
        font-size: 2.2rem;
    }
    .hero-left p {
        max-width: 100%;
    }
    .dashboard-fixed {
        max-width: 100%;
        height: auto;
        width: 100%;
    }
    .dashboard-fixed img {
        box-shadow: 0 10px 16px rgba(0, 0, 0, 0.15);
    }
    .cards-bouncing {
        right: -16%;
    }
    .cards-bouncing img {
        box-shadow: none;
    }
    .cta-section h2, .feature-text h2 {
        font-size: 1.8rem;
    }
    .feature-text h3 {
        font-size: 1.4rem;
    }
    .cta-section {
        background: var(--primary-light);
        border-radius: 35px;
        padding: 45px 20px;
    }
    .app-section {
        margin-top: 20px;
        padding-top: 35px;
    }
    .app-row {
        max-width: 100%;
    }
    .app-row p {
        font-size: 15px;
        margin-bottom: 0;
    }
    .app-row .img-fluid {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .hero-left h1 { 
        font-size: 1.7rem;
        line-height: 36px;
    }
    .hero-left .subhead {
        font-size: 1.15rem;
    }
    .hero-right {
        margin-top: 0;
    }
    .steps-section {
        margin-top: 20px;
    }
    .step-title {
        font-size: 26px;
    }
    
    .step-item {
        padding: 18px;
        gap: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .step-item-title {
        font-size: 18px;
    }
    
    .step-item-description {
        font-size: 12px;
    }
    
    .sub-text {
        font-size: 11px;
        padding: 4px 12px;
    }
    .cta-secondary, .cta-primary {
        min-width: 220px;
    }
    .feature-text h2 {
        font-size: 1.6rem;
    }
    .feature-text h3 {
        font-size: 1.2rem;
    }
    .tools-grid {
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    .section-title {
        text-align: center;
        margin-bottom: 30px;
    }
    .tool-item i {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    .tool-item {
        padding: 20px;
    }
    .tool-item p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .footer-col:first-child, .footer-col:nth-child(2) {
        width: 100% !important;
    }
}

/* Smooth transitions for all responsive changes */
.step-item,
.step-icon,
.step-title,
.step-item-title,
.step-item-description {
    transition: all 0.3s ease-in-out;
}



/* Category Section */
.category-section {
    padding: 30px 0 60px;
}

.category-card {
    background: var(--gray-light);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.category-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    font-size: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.category-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-checkbox {
    position: relative;
    height: 100%;
}

.category-checkbox input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.category-checkbox label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: white;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.category-checkbox label i {
    font-size: 3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-checkbox label span {
    font-weight: 500;
    color: var(--dark);
    font-size: 1.1rem;
}

.category-item.selected .category-checkbox label {
    border-color: var(--primary);
    background: rgba(227, 97, 21, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(227, 97, 21, 0.15);
}

.category-item.selected .category-checkbox label i {
    transform: scale(1.1);
}

.category-checkbox label:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.next-btn {
    display: block;
    width: 200px;
    margin: 0 auto;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.next-btn:not(:disabled) {
    opacity: 1;
    cursor: pointer;
}

.next-btn:not(:disabled):hover {
    background: var(--dark);
    color: white;
    transform: translateX(5px);
}

.next-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.next-btn:not(:disabled):hover i {
    transform: translateX(5px);
}

/* Subject Section */
.subject-section {
    padding: 40px 0 60px;
}

.subject-card {
    background: var(--gray-light);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.subject-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    font-size: 2rem;
}

.subject-select-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.subject-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
}

.subject-select {
    width: 100%;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid #eee;
    border-radius: 20px;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subject-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(227, 97, 21, 0.1);
}

.subject-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

.subject-note i {
    color: var(--primary);
}

/* Form Section */
.form-section {
    padding: 40px 0 80px;
}

.form-main-card {
    background: var(--gray-light);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}

.form-title {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 2rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.creative-form {
    margin-top: 30px;
}

.form-row {
    margin-bottom: 25px;
}

.form-row.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark);
}

.form-group label i {
    color: var(--primary);
}

.form-group label .required {
    color: var(--primary);
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(227, 97, 21, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.fields-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 1.3rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--primary);
}

.fields-divider i {
    color: var(--primary);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check-label {
    color: #666;
    cursor: pointer;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contact Info Panel */
.contact-info-panel {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a4a 100%);
    border-radius: 40px;
    padding: 40px;
    color: white;
    position: sticky;
    top: 100px;
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
}

.info-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-header h3 {
    font-size: 1.5rem;
    color: white;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 97, 21, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.info-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-content a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--primary);
}

.info-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 5px;
}

.info-content address {
    color: rgba(255,255,255,0.8);
    font-style: normal;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.info-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(227, 97, 21, 0.2);
    border-radius: 15px;
    color: var(--primary);
    font-weight: 500;
}

.info-badge i {
    font-size: 1.2rem;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 50px;
    border-radius: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    z-index: 10000;
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.modal-icon i {
    font-size: 40px;
    color: var(--dark);
}

.modal-content h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-btn {
    padding: 15px 40px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--dark);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .category-card,
    .subject-card,
    .form-main-card {
        padding: 30px;
    }
    
    .form-row.double {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-panel {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .category-checkbox label {
        flex-direction: row;
        justify-content: flex-start;
        padding: 20px;
    }
    
    .category-checkbox label i {
        font-size: 2rem;
    }
}