@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html,
body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    background-color: #111111;
    color: #e0e0e0;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(114, 82, 81, 0.2);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand a {
    text-decoration: none;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #725251, #a67c7c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #725251;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #725251;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #725251;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #725251;
    transition: width 0.3s ease;
}

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

.nav-highlight {
    background: linear-gradient(135deg, #725251, #a67c7c);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
}

.nav-highlight::after {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(114, 82, 81, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5% 4rem;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(114, 82, 81, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, #725251, #a67c7c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: 0.1em;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #725251, #a67c7c);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(114, 82, 81, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border: 2px solid rgba(114, 82, 81, 0.5);
}

.btn-secondary:hover {
    background: rgba(114, 82, 81, 0.1);
    border-color: #725251;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #725251;
}

.stat-text {
    font-size: 0.85rem;
    color: #666;
}

/* Code Window */
.hero-visual {
    position: relative;
}

.code-window {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(30, 30, 30, 0.8);
    border-bottom: 1px solid rgba(114, 82, 81, 0.2);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27ca3f;
}

.window-title {
    color: #666;
    font-size: 0.8rem;
}

.window-content {
    padding: 1.5rem;
}

.window-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    line-height: 1.7;
    overflow-x: auto;
}

.code-keyword {
    color: #c678dd;
}

.code-variable {
    color: #e06c75;
}

.code-property {
    color: #61afef;
}

.code-string {
    color: #98c379;
}

.code-function {
    color: #e5c07b;
}

/* Floating Icons - Masqués sur mobile */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(114, 82, 81, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #725251;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: -15px;
    left: -25px;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: -30px;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 25%;
    left: -40px;
    animation-delay: 2s;
}

.icon-4 {
    bottom: -15px;
    right: 15%;
    animation-delay: 3s;
}

.icon-5 {
    top: 35%;
    left: 45%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 18px;
    height: 28px;
    border: 2px solid rgba(114, 82, 81, 0.5);
    border-radius: 9px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 7px;
    background: #725251;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 5px;
    }

    100% {
        opacity: 0;
        top: 14px;
    }
}

/* ==================== HERO RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 5rem 4% 3rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-text {
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 5rem 5% 3rem;
    }

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

    .hero-text {
        padding-right: 0;
        order: 1;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-highlight {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-stat {
        min-width: 70px;
    }

    .hero-visual {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
    }

    .code-window {
        border-radius: 12px;
    }

    .window-content {
        padding: 1rem;
    }

    .window-content pre {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    /* Masquer les icônes flottantes sur mobile */
    .floating-icons {
        display: none;
    }

    /* Masquer l'indicateur de scroll sur mobile */
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 4.5rem 4% 2rem;
    }

    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }

    .hero-highlight {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }

    .window-header {
        padding: 0.6rem 1rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #725251, #a67c7c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BANNER SECTION ==================== */
.banner-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
    background: #111111;
}

#main {
    position: relative;
    overflow: hidden;
    height: 100%;
}

#page {
    position: relative;
    height: 100%;
    width: 100%;
    background: #111111;
    color: #725251;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loop {
    width: 100%;
    font-size: clamp(3rem, 8vw, 8rem);
    white-space: nowrap;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
}

#loop h1 {
    font-weight: 900;
    animation: scrollText 20s linear infinite;
    background: linear-gradient(90deg, #725251, #a67c7c, #725251);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

#loop h1>span {
    -webkit-text-stroke: 2px #333;
    color: transparent;
    font-weight: 900;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ==================== LOADING SCREEN ==================== */
.chargementPage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 50%, #0f0f0f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.chargementPage.masquer {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.spinnerChargement {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(114, 82, 81, 0.2);
    border-radius: 50%;
    border-top: 4px solid #725251;
    animation: rotation 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 30px;
    position: relative;
}

.spinnerChargement::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(166, 124, 124, 0.3);
    border-radius: 50%;
    border-left: 3px solid #a67c7c;
    transform: translate(-50%, -50%);
    animation: rotation 0.8s linear infinite reverse;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #725251;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.loading-text span {
    display: inline-block;
    animation: letterFloat 2s ease-in-out infinite;
}

.loading-text span:nth-child(1) {
    animation-delay: 0s;
}

.loading-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.loading-text span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes letterFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.loading-subtitle {
    font-size: 1rem;
    color: #999;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ==================== SERVICES / MIND MAP ==================== */
.services-overview {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #111111, #0f0f0f);
}

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

.mind-map-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 4rem auto;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(114, 82, 81, 0.4);
    z-index: 10;
}

.central-node .node-content {
    text-align: center;
    color: white;
}

.central-node i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.central-node span {
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

.central-node small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.service-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(114, 82, 81, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle)));
}

.service-node:hover {
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-color: #725251;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle))) scale(1.1);
    box-shadow: 0 10px 25px rgba(114, 82, 81, 0.4);
}

.service-node .node-content {
    text-align: center;
    color: #e0e0e0;
}

.service-node:hover .node-content {
    color: white;
}

.service-node i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    display: block;
}

.service-node span {
    font-size: 0.7rem;
    font-weight: 600;
}

.service-details-panel {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(15px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-details-panel.active {
    transform: translateY(0);
    opacity: 1;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(114, 82, 81, 0.3);
    padding-bottom: 1rem;
}

.panel-header h3 {
    color: #725251;
    font-size: 1.5rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #725251;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #725251;
    box-shadow: 0 10px 25px rgba(114, 82, 81, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #725251;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
}

/* ==================== REVIEWS ==================== */
.reviews-section {
    padding: 5rem 2rem;
    background: #111111;
}

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

.reviews-grid-container {
    margin-bottom: 2rem;
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.grid-item {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 250px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.grid-item:hover {
    border-color: #725251;
    transform: translateY(-3px);
}

.grid-item strong {
    color: #e0e0e0;
    display: block;
    margin-bottom: 0.5rem;
}

.grid-item .star {
    color: #333;
    font-size: 1.2rem;
}

.grid-item .star.filled {
    color: #f1c40f;
}

.more-comments {
    text-align: center;
    margin: 2rem 0;
}

.more-comments a {
    color: #725251;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border: 2px solid #725251;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.more-comments a:hover {
    background: #725251;
    color: white;
}

/* Form Container */
.form-container {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 3rem auto 0;
}

.form-container h3 {
    color: #725251;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #725251;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.3rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-input input:checked~label,
.rating-input label:hover,
.rating-input label:hover~label {
    color: #f1c40f;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(114, 82, 81, 0.3);
}

.message-container {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.message-container.success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    display: block;
}

.message-container.error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    display: block;
}

/* ==================== PROCESS ==================== */
.process-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.process-timeline {
    position: relative;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #725251, #a67c7c);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(114, 82, 81, 0.3);
}

.timeline-marker span {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-content {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: #725251;
    box-shadow: 0 15px 30px rgba(114, 82, 81, 0.2);
}

.timeline-content h3 {
    color: #725251;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.details-btn {
    background: linear-gradient(135deg, #725251, #a67c7c);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.details-btn:hover {
    background: linear-gradient(135deg, #8c6b6b, #b89494);
    transform: translateY(-2px);
}

.step-details {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(114, 82, 81, 0.1);
    border-radius: 10px;
    border-left: 3px solid #725251;
}

.step-details ul {
    margin: 0;
    padding-left: 1.5rem;
}

.step-details li {
    color: #999;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 60px;
    }

    .timeline-marker {
        left: 20px;
        transform: none;
        width: 40px;
        height: 40px;
    }

    .timeline-content {
        width: 100%;
    }
}

/* ==================== SKILLS ==================== */
.skills-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.skills-interactive {
    margin-top: 3rem;
}

.skills-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid rgba(114, 82, 81, 0.3);
    color: #999;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-color: #725251;
    color: white;
    transform: translateY(-2px);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.skill-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #725251;
    box-shadow: 0 10px 30px rgba(114, 82, 81, 0.3);
}

.skill-item.active {
    background: linear-gradient(135deg, rgba(114, 82, 81, 0.2), rgba(20, 20, 20, 0.9));
    border-color: #725251;
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #725251;
}

.skill-item h4 {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
}

.skill-details {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

#skillName {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: #999;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: rgba(114, 82, 81, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.level-progress {
    height: 100%;
    background: linear-gradient(90deg, #725251, #a67c7c);
    border-radius: 10px;
    transition: width 0.8s ease;
    width: 0%;
}

#skillDescription {
    color: #999;
    margin-bottom: 1rem;
}

#skillProjects h4 {
    color: #725251;
    margin-bottom: 0.5rem;
}

#skillProjects ul {
    color: #999;
    padding-left: 1.5rem;
}

/* ==================== PLAYGROUND ==================== */
.playground-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.container-playground {
    max-width: 1400px;
    margin: 0 auto;
}

.playground-interface {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
}

.code-tabs {
    display: flex;
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(114, 82, 81, 0.3);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active,
.tab-btn:hover {
    color: #725251;
    border-bottom-color: #725251;
    background: rgba(114, 82, 81, 0.1);
}

.code-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
}

.code-editor {
    border-right: 1px solid rgba(114, 82, 81, 0.3);
}

.code-editor textarea {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    border: none;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    padding: 1rem;
    resize: none;
    outline: none;
}

.code-result {
    background: white;
}

.code-result iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.playground-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid rgba(114, 82, 81, 0.3);
}

.playground-controls button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.run-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.run-btn:hover {
    transform: translateY(-2px);
}

.clear-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.share-btn {
    background: linear-gradient(135deg, #725251, #a67c7c);
    color: white;
}

@media (max-width: 768px) {
    .playground-section {
        display: none;
    }
}

/* ==================== CONTACT ==================== */
.contact-section {
    padding: 5rem 2rem;
    background: #111111;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #725251;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-info p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: #725251;
    font-size: 1.2rem;
    width: 25px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(114, 82, 81, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #725251;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #725251;
    color: white;
    transform: translateY(-3px);
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 450px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-card h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-large {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-large:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(114, 82, 81, 0.2);
    padding: 4rem 2rem 2rem;
}

.footer-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #725251, #a67c7c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: #725251;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

.icondecon {
    display: flex;
    gap: 1rem;
}

.icondecon a {
    width: 45px;
    height: 45px;
    background: rgba(114, 82, 81, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #725251;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.icondecon a:hover {
    background: #725251;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #666;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(114, 82, 81, 0.2);
}

.footer-bottom a {
    color: #725251;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== PARRAINAGE PAGE ==================== */
.parrainage-page {
    padding-top: 80px;
}

.parrainage-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
    text-align: center;
    padding: 4rem 2rem;
}

.parrainage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(114, 82, 81, 0.15) 0%, transparent 60%);
}

.parrainage-hero-content {
    position: relative;
    z-index: 1;
}

.parrainage-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #725251, #a67c7c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(114, 82, 81, 0.2);
    color: #a67c7c;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* How it works */
.how-it-works {
    padding: 5rem 2rem;
    background: #111111;
}

.how-it-works .container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 220px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #725251;
    box-shadow: 0 20px 40px rgba(114, 82, 81, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(114, 82, 81, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 1.5rem;
    color: #725251;
}

.step-card h3 {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-arrow {
    color: #725251;
    font-size: 1.5rem;
}

@media (max-width: 968px) {
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* Advantages */
.advantages {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.advantages .container {
    max-width: 1000px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: #725251;
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(114, 82, 81, 0.2);
}

.card-header i {
    font-size: 2rem;
    color: #725251;
}

.card-header h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #999;
    margin-bottom: 0.8rem;
}

.benefits-list i {
    color: #2ecc71;
}

.card-highlight {
    background: rgba(114, 82, 81, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.card-highlight i {
    color: #f1c40f;
    font-size: 1.3rem;
}

.card-highlight span {
    color: #a67c7c;
    font-size: 0.9rem;
}

/* Conditions */
.conditions {
    padding: 5rem 2rem;
    background: #111111;
}

.conditions .container {
    max-width: 1000px;
    margin: 0 auto;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.condition-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.condition-card:hover {
    border-color: #725251;
}

.condition-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.condition-card h4 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.condition-card p {
    color: #999;
    font-size: 0.95rem;
}

.condition-card strong {
    color: #725251;
}

/* Forms Section */
.forms-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.forms-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.form-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-tab {
    padding: 1rem 2rem;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(114, 82, 81, 0.3);
    border-radius: 10px;
    color: #999;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-tab.active,
.form-tab:hover {
    background: linear-gradient(135deg, #725251, #a67c7c);
    border-color: #725251;
    color: white;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header h3 i {
    color: #725251;
    margin-right: 0.5rem;
}

.form-header p {
    color: #999;
}

.form-section {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section h4 {
    color: #725251;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    display: block;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    display: block;
}

/* Code input */
.code-input-group {
    max-width: 500px;
    margin: 0 auto;
}

.code-input-wrapper {
    display: flex;
    gap: 1rem;
}

.code-input-wrapper input {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.verify-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #725251, #a67c7c);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.verify-btn:hover {
    transform: translateY(-2px);
}

.code-result {
    text-align: center;
    padding: 2rem;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 15px;
    margin-top: 2rem;
}

.code-result .result-icon {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.code-result h4 {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.code-result .result-details {
    color: #e0e0e0;
}

.result-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    color: #999;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: #111111;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: #e0e0e0;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #999;
    margin-bottom: 2rem;
}



/* ==================== NEW CONTACT SECTION ==================== */
.contact-centered {
    display: flex;
    justify-content: center;
}

.contact-main-card {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(114, 82, 81, 0.2), rgba(166, 124, 124, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon-large i {
    font-size: 2rem;
    color: #725251;
}

.contact-intro h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-intro p {
    color: #999;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-email-box {
    background: rgba(114, 82, 81, 0.1);
    border: 1px solid rgba(114, 82, 81, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.contact-label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email-link:hover {
    color: #a67c7c;
}

.contact-email-link i {
    color: #725251;
    font-size: 1.2rem;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-actions .btn-primary,
.contact-actions .btn-secondary {
    width: 100%;
    justify-content: center;
}

.contact-promise {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(114, 82, 81, 0.2);
    flex-wrap: wrap;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.promise-item i {
    color: #2ecc71;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .contact-main-card {
        padding: 2rem 1.5rem;
    }

    .contact-promise {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-email-link {
        font-size: 1.1rem;
    }
}

/* ==================== UPDATED FOOTER ==================== */
.footer-contact {
    margin-top: 0.5rem;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #a67c7c;
}

.footer-email i {
    color: #725251;
}