/* CSS Reset & Variables */
:root {
    --primary: #8a2be2;
    --primary-hover: #731cb8;
    --primary-rgb: 138, 43, 226;
    --accent: #00e5b9;
    --accent-hover: #00c29d;
    --accent-rgb: 0, 229, 185;
    --dark-purple: #1b004e;
    --dark-purple-rgb: 27, 0, 78;
    --white: #ffffff;
    --bg-light: #f9f8ff;
    --text-color: #554e60;
    --text-muted: #8c8599;
    --border-color: #edeaf5;
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(138, 43, 226, 0.1);
    --shadow-sm: 0 4px 6px rgba(27, 0, 78, 0.05);
    --shadow-md: 0 10px 20px rgba(27, 0, 78, 0.08);
    --shadow-lg: 0 20px 40px rgba(27, 0, 78, 0.12);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-purple);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.2);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 43, 226, 0.4);
}

/* Reusable Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6f1ab8);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7824c9, #5e139c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-purple);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

.hidden {
    display: none !important;
}

/* Section Common Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* STICKY HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-purple);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-purple);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-menu .nav-btn-cta::after {
    display: none;
}

.nav-menu .nav-btn-cta {
    padding: 10px 20px;
    color: var(--white) !important;
}

/* Dropdown Menu styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    border-radius: 12px;
    padding: 15px;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px !important;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-color);
    width: 100%;
}

.dropdown-menu a i {
    font-size: 1rem;
    color: var(--primary);
    width: 20px;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
}

.dropdown-menu a::after {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-purple);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-bg-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    top: -100px;
    right: -100px;
    animation: floatBlob 8s ease-in-out infinite alternate;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background-color: var(--accent);
    bottom: -50px;
    left: -50px;
    animation: floatBlob 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.rating-badge .stars {
    color: #ffb800;
    display: flex;
    gap: 3px;
    font-size: 0.85rem;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-color);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-purple);
}

.tag i {
    color: var(--accent);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-wrapper {
    width: 100%;
    max-width: 450px;
    position: relative;
}

.hero-svg {
    filter: drop-shadow(0 15px 30px rgba(27, 0, 78, 0.1));
}

/* STATS SECTION */
.stats-bar {
    padding: 40px 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
    z-index: 5;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
}

/* ABOUT SECTION */
.about {
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-graphic {
    flex: 1;
}

.about-svg {
    filter: drop-shadow(0 15px 30px rgba(27, 0, 78, 0.05));
}

.about-content {
    flex: 1.2;
}

.about-content .section-title {
    margin-bottom: 25px;
}

.section-description {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--dark-purple);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #e8e8ff;
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.8rem;
}

/* SERVICES SECTION */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-icon.purple-bg {
    background-color: #e8e8ff;
    color: var(--primary);
}

.service-icon.cyan-bg {
    background-color: #d2fdf4;
    color: #00bcd4;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition);
}

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

/* COMMITMENT SECTION */
.commitment {
    background-color: var(--white);
}

.commitment-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.commitment-content {
    flex: 1.2;
}

.commitment-graphic {
    flex: 1;
}

.commitment-svg {
    filter: drop-shadow(0 15px 30px rgba(138, 43, 226, 0.08));
}

/* PORTFOLIO SECTION */
.portfolio {
    background-color: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    transition: var(--transition);
}

.portfolio-img-wrapper {
    position: relative;
    height: 240px;
    width: 100%;
}

.portfolio-svg-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.pizzeria-bg {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
}

.construction-bg {
    background: linear-gradient(135deg, #10ac84, #019058);
}

.aerospace-bg {
    background: linear-gradient(135deg, #2e86de, #1d6fa5);
}

.portfolio-svg-mockup i {
    font-size: 3rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 0, 78, 0.9);
    display: flex;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.overlay-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.overlay-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.portfolio-tag {
    background-color: var(--accent);
    color: var(--dark-purple);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.portfolio-actions {
    margin-top: 40px;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: var(--white);
    overflow: hidden;
}

.google-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.google-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }

.google-rating-summary .stars {
    color: #ffb800;
    font-size: 1rem;
    display: flex;
    gap: 4px;
}

.rating-val {
    font-size: 0.95rem;
    color: var(--text-color);
}

.slider-outer-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 0 50px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.user-meta h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.user-meta .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.source-icon {
    margin-left: auto;
    color: #4285F4;
    font-size: 1.4rem;
}

.testimonial-card .stars {
    color: #ffb800;
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.testimonial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 5px;
}

/* CTA & CONTACT FORM SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--dark-purple), #26006e);
    color: var(--white);
    padding: 100px 0;
}

.cta-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-info {
    flex: 1.1;
}

.cta-info h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-features .feat {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.cta-features .feat i {
    color: var(--accent);
    font-size: 1.2rem;
}

.cta-form-wrapper {
    flex: 1;
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.cta-form-wrapper h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-purple);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.form-success-msg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transform: translateY(100%);
    transition: var(--transition);
}

.form-success-msg.show {
    transform: translateY(0);
}

.form-success-msg i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.form-success-msg h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success-msg p {
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    background-color: #0b0022;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.col-main .footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: 20px;
}

.office-addr, .office-antennas, .office-contact {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.office-addr i, .office-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.col-social {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

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

.activateur-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--white);
}

.activateur-badge i {
    font-size: 1.5rem;
    color: var(--accent);
}

.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.85rem;
}

.sub-footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.security-shields {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.security-shields i {
    color: var(--accent);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 450px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    z-index: 2000;
    transform: translateY(120%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cookie-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.cookie-preferences {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.pref-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.pref-item label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.pref-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: 20px;
    margin-top: 3px;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-actions .btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col.col-main,
    .footer-col.col-social {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-tags {
        align-items: center;
    }
    
    .about-container,
    .commitment-container,
    .cta-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-graphic,
    .commitment-graphic {
        width: 100%;
        max-width: 400px;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 40%;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    /* MOBILE NAVIGATION */
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        padding: 100px 30px 40px 30px;
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        padding: 10px 0 0 15px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    .nav-menu .nav-btn-cta {
        display: flex;
        width: 100%;
        text-align: center;
    }
    
    /* Testimonials padding */
    .slider-outer-wrapper {
        padding: 0;
    }
    
    .slider-btn {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        max-width: none;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .sub-footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
