:root {
    --primary-color: #B8860B;
    --secondary-color: #1a1a2e;
    --accent-color: #4361ee;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
    --dark-blue: #0f1729;
    --dark-bg: #0f1729;
    --card-bg: rgba(255, 255, 255, 0.08);
    --bg-color: rgba(15, 23, 41, 0.97);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen reader only - masque visuellement mais accessible aux lecteurs d'écran */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    /* Police de secours avec métriques similaires à Roboto pour réduire layout shift */
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-blue);
    /* Optimisation pour réduire le layout shift lors du font swap */
    font-size-adjust: 0.5;
}

/* Header & Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--dark-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-letter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.2rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-number {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-number:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: 0.5rem;
}

/* Social Links Styles */
.social-link {
    color: var(--dark-blue);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark-blue);
}

.social-link i {
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background: #4267B2;
}

.social-link.tiktok {
    background: #000;
    position: relative;
    overflow: hidden;
}

.social-link.tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link.tiktok:hover::before {
    opacity: 1;
}

.social-link.tiktok i {
    position: relative;
    z-index: 1;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* CTA Button */
.cta-button {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #8B6508;
}

/* Mobile menu styles */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button i {
    color: var(--primary-color);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .nav-contact {
        gap: 1rem;
    }

    .social-links {
        gap: 0.5rem;
        margin-left: 0.3rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 1rem;
    }

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

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links ul li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 0.5rem;
    }

    .nav-contact {
        display: none;
    }

    .nav-links.active .nav-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-button.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-button.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .mobile-menu-button {
        display: block;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 5% 4rem;
    position: relative;
    background: linear-gradient(rgba(15, 23, 41, 0.75), rgba(15, 23, 41, 0.75)), url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    will-change: background-image;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 8rem 1rem 4rem;
        text-align: center;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        text-align: center;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 3.8rem;
        line-height: 1.3;
        margin: 0 auto 1.5rem;
        padding: 0;
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
        margin: 0 auto 2rem;
        max-width: 500px;
    }

    .hero-stats {
        margin-top: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 7rem 1rem 4rem;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .hero-stats {
        margin-top: 2.5rem;
    }
}

.mobile-break {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-break {
        display: inline;
    }

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

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.secondary-button {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.promo-badge {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
}

.discount {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.promo-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(184, 134, 11, 0.15);
    color: #d4af37;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background-color: var(--dark-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: #d4af37;
}

.service-card h3 {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.service-card p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #e5e7eb;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.service-features li a {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li a i {
    font-size: 0.875rem;
    position: relative;
    top: 1px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.15);
}

.service-link:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

@media screen and (max-width: 768px) {
    .service-card {
        text-align: center;
        padding: 2rem;
        min-height: 350px;
    }

    .service-features {
        text-align: left;
        display: inline-block;
        margin: 1.5rem auto;
    }

    .service-icon {
        margin: 0 auto 1.5rem;
    }

    .service-link {
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .service-features li {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .service-features li a {
        display: inline-flex;
        align-items: center;
    }

    .service-features li a i {
        position: static;
    }
}

/* Process Section */
.process {
    padding: 6rem 5%;
    background-color: var(--bg-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 320px;
    margin: 0 auto;
    min-height: 360px;
}

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

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
    min-height: 2.8em;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-list li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

.process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}

.process-list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .process-card {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card {
        padding: 1.75rem;
        max-width: 100%;
    }

    .process-number {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .process-card h3 {
        font-size: 1.2rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .process-list li {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 768px) {
    .process-card {
        min-height: 320px;
    }
    
    .process-card p {
        min-height: auto;
    }
}

@media screen and (max-width: 768px) {
    .process-list li::before {
        top: 0.45rem;
        width: 4px;
        height: 4px;
    }
}

/* Why Us Section */
.why-us {
    padding: 6rem 5%;
    background-color: var(--dark-blue);
}

.why-us-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.why-us-card .icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-us-card .icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.why-us-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: #e5e7eb;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .why-us-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .why-us-card {
        padding: 1.5rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    background-color: var(--dark-blue);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.faq-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: #d4af37;
}

.faq-item.active h3::after {
    content: '-';
}

.faq-item p {
    color: #e5e7eb;
    display: none;
    margin-top: 1rem;
    line-height: 1.6;
}

.faq-item.active p {
    display: block;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background-color: rgba(15, 23, 41, 0.97);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #d4af37;
}

.contact-item i {
    font-size: 1.2rem;
    color: #d4af37;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
    color: var(--white);
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: #d4af37;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-card p {
    color: #f3f4f6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
}

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

.contact-form textarea {
    height: 150px;
    margin-bottom: 1rem;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.contact-form button:hover {
    background-color: #8b6608;
}

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

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

    .faq-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-top: 0;
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-contact {
        gap: 1rem;
    }

    .social-links {
        gap: 0.5rem;
        margin-left: 0.3rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-contact {
        display: none;
    }
    
    .nav-links.active .nav-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }
    
    .nav-links.active .social-links {
        margin: 1rem 0;
        gap: 1rem;
    }

    .nav-links.active .social-link {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Creations Section & Carousel */
.creations {
    padding: 4rem 0;
    background-color: var(--background);
    position: relative;
}

.carousel-container {
    width: 300px;
    margin: 0 auto;
    position: relative;
}

.carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    /* Optimisations pour le rendu des images */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    /* Réduire les reflows lors du chargement */
    content-visibility: auto;
    contain-intrinsic-size: 300px 450px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.8);
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background: rgba(184, 134, 11, 1);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}


@media (max-width: 480px) {
    .carousel-container {
        width: 250px;
        max-width: 100%;
    }
    
    .carousel-slide img {
        max-width: 250px;
        aspect-ratio: 2/3;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section:first-child h3 {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-section p {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a,
.footer-section p a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
    color: #d4af37;
}

.quick-links {
    display: flex;
    gap: 3rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links ul li {
    margin-bottom: 1rem;
}

.quick-links ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.quick-links ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .quick-links {
        justify-content: center;
        gap: 4rem;
    }
}

@media (max-width: 480px) {
    .quick-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .quick-links ul {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section:not(:last-child) {
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Hero Section */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button,
.secondary-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.secondary-button {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stat-item span {
    font-size: 1rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
        max-width: 400px;
        margin: 2rem auto 0;
    }

    .cta-button,
    .secondary-button {
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 3rem auto 0;
        max-width: 300px;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
        padding: 0.5rem;
    }

    .stat-item i {
        font-size: 1.3rem;
    }

    .stat-item span {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .services,
    .process {
        padding: 4rem 1.5rem;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .service-features {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }

    .service-icon {
        margin: 0 auto 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 300px;
        margin: 2rem auto;
    }

    .cta-button,
    .secondary-button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .services-grid,
    .process-steps {
        max-width: 100%;
    }

    .service-card,
    .step-card {
        padding: 1.5rem;
    }
}

.mobile-break {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        word-break: keep-all;
        hyphens: none;
    }
}

/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 41, 0.95);
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border: 1px solid rgba(184, 134, 11, 0.3);
    backdrop-filter: blur(10px);
    animation: slideUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
}

.alert-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.alert-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.alert-button {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.alert-button:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media screen and (max-width: 768px) {
    .custom-alert {
        width: 90%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .logo-letter {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1rem;
    }
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-only {
        display: flex;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
    
    .nav-brand .social-links {
        gap: 0.3rem;
        margin-left: 2.5rem;
    }
    
    .nav-brand .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
}
