/* 
    Premium Luxury CSS for Cible Finishing & Interiors Landing Page
    Colors: Deep Dark Brown, Warm Brown/Gold, Crisp White
*/

:root {
    --primary-color: #1C1008;
    /* Deep dark brown */
    --secondary-color: #8B5E3C;
    /* Warm brand brown */
    --secondary-hover: #7A5030;
    --secondary-light: #C8A882;
    /* Warm beige/gold */
    --text-dark: #2c2010;
    --text-light: #8a7060;
    --bg-light: #f9f5f0;
    /* Warm off-white */
    --white: #ffffff;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 10px 30px rgba(28, 16, 8, 0.06);
    --shadow-medium: 0 15px 40px rgba(28, 16, 8, 0.12);
    --shadow-large: 0 20px 50px rgba(28, 16, 8, 0.18);
}

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

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

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn i { font-size: 1.1em; }

.btn::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -55%;
    width: 35%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-18deg);
    opacity: 0;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 94, 60, 0.45);
}

.btn:hover::after {
    opacity: 1;
    animation: softShine 0.8s ease;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #2e1c0c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(28, 16, 8, 0.5);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Utilities */
.rounded-image { border-radius: 8px; }
.shadow-medium { box-shadow: var(--shadow-medium); }
.shadow-large { box-shadow: var(--shadow-large); }

/* Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.08); }
}

@keyframes driftFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(16px, -18px, 0); }
}

@keyframes imageDrift {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.015); }
}

@keyframes ringPulse {
    0% { transform: scale(0.92); opacity: 0.55; }
    100% { transform: scale(1.45); opacity: 0; }
}

@keyframes slideProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes softShine {
    0% { transform: translateX(-140%); }
    100% { transform: translateX(140%); }
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

/* Section Headers */
section {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

html[lang="en"] .section-title,
html[lang="en"] .hero h1 {
    font-family: 'Playfair Display', serif;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
}

.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 110px;
    height: 2px;
    margin: -14px auto 0;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.75;
}

.process .section-header::after {
    background: linear-gradient(90deg, transparent, var(--secondary-light), transparent);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 8px 0;
}

.header.scrolled .nav-links a { color: var(--primary-color); text-shadow: none; }
.header.scrolled .btn-outline { border-color: var(--primary-color); color: var(--primary-color); }
.header.scrolled .btn-outline:hover { background-color: var(--primary-color); color: var(--white); }
.header.scrolled .mobile-menu-toggle { color: var(--primary-color); }

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

.logo img {
    height: 100px;
    transition: var(--transition-fast);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.header.scrolled .logo img {
    height: 50px;
    filter: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-light);
    transition: var(--transition-fast);
}

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

.header:not(.scrolled) .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.header:not(.scrolled) .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.12);
    transition: opacity 1.4s ease, transform 6s ease;
}

.hero-bg-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 16, 8, 0.25) 0%, rgba(28, 16, 8, 0.55) 50%, rgba(28, 16, 8, 0.75) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 75%);
    opacity: 0.18;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 260px; height: 260px;
    top: 16%; left: 6%;
    background: radial-gradient(circle, rgba(139, 94, 60, 0.4) 0%, rgba(139, 94, 60, 0) 70%);
    animation: pulseGlow 7s ease-in-out infinite, driftFloat 14s ease-in-out infinite;
}

.hero-orb-2 {
    width: 340px; height: 340px;
    right: 3%; bottom: 10%;
    background: radial-gradient(circle, rgba(200, 168, 130, 0.22) 0%, rgba(200, 168, 130, 0) 72%);
    animation: pulseGlow 8.5s ease-in-out infinite, driftFloat 18s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding-top: clamp(76px, 10vh, 126px);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: none;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: none;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 34px;
}

.hero-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-dot {
    border: 0;
    cursor: pointer;
    width: 46px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
    position: relative;
    overflow: hidden;
}

.hero-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    transform: scaleX(0);
    transform-origin: right center;
}

.hero-dot.is-active::after {
    animation: slideProgress 6s linear forwards;
}

.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-scroll i {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    animation: floatY 2.4s ease-in-out infinite;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p { color: var(--text-light); font-size: 1.1rem; }

.about-image img { animation: imageDrift 8s ease-in-out infinite; }

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(28,16,8,0.06);
}

.stat-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 10px 20px rgba(28,16,8,0.1));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 700;
    margin-top: 5px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    border: 1px solid rgba(28,16,8,0.04);
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-bottom: 3px solid var(--secondary-color);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -85%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    animation: softShine 0.95s ease;
}

.service-icon-wrap {
    width: 70px; height: 70px;
    margin: 30px auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(139, 94, 60, 0.3);
    transition: transform 0.35s ease;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.service-content {
    padding: 0 20px 30px;
}

.service-content h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us { background-color: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img { animation: imageDrift 9s ease-in-out infinite; }

.why-features { display: flex; flex-direction: column; gap: 25px; }

.why-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    background: var(--bg-light);
    transition: var(--transition-fast);
}

.why-feature-item:hover {
    background: rgba(139, 94, 60, 0.06);
    transform: translateX(-5px);
}

.why-feature-icon {
    width: 55px; height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(139, 94, 60, 0.25);
}

.why-feature-text h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2e1c0c 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
}

.process .section-subtitle { color: var(--secondary-light); }
.process .section-title { color: var(--white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 12.5%;
    left: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
    opacity: 0.4;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(200, 168, 130, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-light);
    font-family: 'Playfair Display', serif;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.process-step:hover .step-number {
    background: rgba(139, 94, 60, 0.3);
    border-color: var(--secondary-light);
    transform: scale(1.05);
}

.process-step h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   CTA / CONTACT SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: url('../images/hero-3.jpg') center/cover fixed;
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(28, 16, 8, 0.88);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-content .section-subtitle { color: var(--secondary-light); }
.cta-content .section-title { color: var(--white); }

.cta-content p {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.cta-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 8px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
    transform-style: preserve-3d;
}

.cta-box:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.cta-box .number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-light);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.cta-box .label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { background-color: var(--bg-light); }

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

.faq-item {
    border-bottom: 1px solid rgba(28,16,8,0.06);
    margin-bottom: 15px;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.faq-question:hover { background-color: rgba(139, 94, 60, 0.05); }

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 15px;
}

.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-question.active + .faq-answer { opacity: 1; }

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #100800;
    color: var(--white);
    padding: 80px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    max-width: 350px;
}

.footer h4 {
    font-size: 1.2rem;
    color: var(--secondary-light);
    margin-bottom: 25px;
}

.footer-links ul li { margin-bottom: 15px; }

.footer-links ul li a { color: rgba(255,255,255,0.65); }

.footer-links ul li a:hover {
    color: var(--secondary-light);
    padding-right: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.65);
    align-items: center;
}

.footer-contact ul li i {
    color: var(--secondary-light);
    font-size: 1.2rem;
}

.footer-contact ul li a {
    color: rgba(255,255,255,0.65);
    display: inline-block;
}

.footer-contact ul li a:hover { color: var(--secondary-light); }

.header-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.header.scrolled .language-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.header-cta {
    display: flex;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-actions a {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-large);
    transition: transform 0.3s ease;
    position: relative;
}

.floating-actions a:hover { transform: scale(1.1); }

.floating-actions a::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    animation: ringPulse 2.6s ease-out infinite;
}

.floating-wa { background-color: #25D366; }
.floating-call { background-color: var(--secondary-color); }

/* ============================================
   TILT & HOVER EFFECTS
   ============================================ */
.about-image,
.why-image,
.service-card,
.cta-box {
    position: relative;
}

.about-image::before,
.why-image::before,
.service-card::before,
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 32%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.about-image:hover::before,
.why-image:hover::before,
.service-card:hover::before,
.cta-box:hover::before {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
}

@media (max-width: 992px) {
    .about-grid,
    .why-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .hero h1 { font-size: 3rem; }
    .hero-content { max-width: 760px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-medium);
        display: none;
    }

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

    .nav-links a {
        color: var(--primary-color) !important;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .header-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    .header.scrolled { padding: 10px 0; }
    .header:not(.scrolled) .mobile-menu-toggle { color: var(--white); }

    .hero h1 { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-slider-nav { gap: 12px; }
    .hero-dot { width: 34px; }

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

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr 1fr; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    .hero-orb-1, .hero-orb-2, .hero-grid { display: none; }

    .about-stats { flex-wrap: wrap; gap: 25px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
