/* ============================================
   ALLMETALPARTS - Modern Website Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #6B21A8;
    --primary-light: #7C3AED;
    --primary-dark: #581C87;
    --accent: #F97316;
    --accent-light: #FB923C;
    --accent-dark: #EA580C;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --dark-3: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-lighter: #CBD5E1;
    --light: #F8FAFC;
    --light-2: #F1F5F9;
    --light-3: #E2E8F0;
    --white: #FFFFFF;
    --green: #10B981;
    --blue: #3B82F6;
    --red: #EF4444;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section {
    padding: 100px 0;
    position: relative;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader .gear-icon {
    font-size: 48px;
    color: var(--primary-light);
}

.loader span {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
}

/* --- Floating Action Buttons --- */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.phone-btn { background: var(--primary); }
.whatsapp-btn { background: #25D366; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo { color: var(--dark); }

.logo-icon svg { color: var(--primary-light); }
.navbar.scrolled .logo-icon svg { color: var(--primary); }

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-link { color: var(--dark-3); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--white); }
.navbar.scrolled .nav-link:hover { color: var(--primary); }

.nav-btn-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nav-btn-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    position: relative;
    z-index: 10001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--dark); }

/* Keep hamburger dark when menu open on homepage (white panel behind it) */
.nav-toggle.active span { background: var(--dark) !important; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0F0B1E 0%, #1a0a2e 30%, #2d1b4e 60%, #0F172A 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(107, 33, 168, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* --- Hero Background Slideshow --- */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    animation: heroSlideZoom 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes heroSlideZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(15, 11, 30, 0.88) 0%,
        rgba(26, 10, 46, 0.82) 30%,
        rgba(45, 27, 78, 0.78) 60%,
        rgba(15, 23, 42, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    padding: 14px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

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

.btn-full { width: 100%; justify-content: center; }

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    align-self: center;
}

/* --- Hero Scroll Indicator --- */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(18px); opacity: 0; }
}

/* --- Section Headers --- */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(249, 115, 22, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.green {
    color: var(--green);
    background: rgba(16, 185, 129, 0.1);
}

.section-tag.blue {
    color: var(--blue);
    background: rgba(59, 130, 246, 0.1);
}

.section-tag.light {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

/* --- About Section --- */
.about { background: var(--white); }

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    max-height: 50vh;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

.about-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--light);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--light-2);
    transform: translateX(4px);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(107, 33, 168, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.value-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

/* --- Services Section --- */
.services { background: var(--light); }

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

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-icon.orange-light {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
}

.service-icon.orange-solid {
    background: var(--accent);
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card > p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-3);
    font-weight: 500;
}

.service-features li i {
    color: var(--green);
    font-size: 14px;
}

/* --- Why Choose Us --- */
.why-choose { background: var(--white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    background: var(--light);
    transition: var(--transition);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--light-2);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--white);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* --- Process Section --- */
.process { background: var(--light); }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
}

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

.step-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 8px;
}

.step-content {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(107, 33, 168, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* --- Gallery Section --- */
.gallery { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* --- Metrics Section --- */
.metrics {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #4338CA 100%);
    padding: 80px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.metric-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.metric-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.metric-icon {
    font-size: 28px;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-number::after {
    content: '+';
    font-size: 32px;
    color: var(--accent);
}

.metric-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.metric-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

/* --- Testimonials --- */
.testimonials { background: var(--light); }

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
    color: #FBBF24;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card > p {
    font-size: 17px;
    color: var(--dark-3);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    text-align: left;
}

.testimonial-author span {
    display: block;
    font-size: 13px;
    color: var(--gray);
    text-align: left;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

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

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

/* --- FAQ Section --- */
.faq { background: var(--white); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--light-3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(107, 33, 168, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
    background: transparent;
}

.faq-question:hover { color: var(--primary); }

.faq-question i {
    color: var(--gray-light);
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

/* --- Quote Section --- */
.quote-section {
    background: linear-gradient(135deg, #0F172A 0%, #1a0a2e 100%);
    color: var(--white);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.quote-info h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.quote-info > p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin-bottom: 32px;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

.quote-feature i { color: var(--green); font-size: 16px; }

.quote-form-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

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

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.file-label:hover {
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.08);
}

.file-label input { display: none; }
.file-label i { font-size: 18px; color: var(--accent); }

.file-name {
    font-size: 13px;
    color: var(--accent-light);
    margin-top: 4px;
}

.form-message {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --- Contact Section --- */
.contact { background: var(--light); }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-3);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    display: block;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-logo svg { color: var(--primary-light); }

.footer-brand > p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social 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;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-credit {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-credit a {
    color: var(--accent-light);
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
}

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

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

/* --- AOS (Animate on Scroll) styles --- */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate { opacity: 1; }

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }

[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }

[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* --- Responsive --- */

/* Tablet landscape */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item.gallery-large { grid-column: span 2; }
    .hero-content { max-width: 700px; }
    .stat-number { font-size: 30px; }
    .stat-plus { font-size: 24px; }
    .metric-number { font-size: 40px; }
    .metric-number::after { font-size: 28px; }
    .step-number { font-size: 36px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .container { padding: 0 20px; }
    .section-header { margin-bottom: 40px; }
    .section-desc { font-size: 15px; }

    /* Mobile Nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 10000;
    }
    .nav-menu.active { right: 0; }

    /* Dark overlay backdrop when menu open */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu .nav-link {
        color: var(--dark) !important;
        font-size: 17px;
        padding: 14px 0;
        border-bottom: 1px solid var(--light-3);
        width: 100%;
    }
    .nav-menu .nav-link::after {
        display: none !important;
    }
    .nav-menu .nav-link.active {
        color: var(--primary) !important;
        font-weight: 700;
    }
    .nav-menu .nav-link:hover {
        color: var(--primary) !important;
    }
    .nav-menu .nav-btn-cta {
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero { padding: 100px 20px 60px; min-height: 90vh; }
    .hero-actions { margin-bottom: 40px; }
    .hero-stats { gap: 20px; }
    .hero-stat-divider { display: none; }
    .stat-number { font-size: 26px; }
    .stat-plus { font-size: 20px; }
    .hero-scroll { display: none; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-main img { height: auto; max-height: 350px; }
    .about-img-secondary { right: 10px; bottom: -20px; width: 140px; height: 140px; }
    .about-experience-badge { top: -10px; left: -10px; padding: 14px 18px; }
    .exp-number { font-size: 28px; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 24px; }

    /* Why Choose */
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-card { padding: 28px 18px; }
    .why-icon { width: 52px; height: 52px; font-size: 20px; }

    /* Process */
    .process-timeline { grid-template-columns: 1fr; gap: 24px; }
    .process-line { display: none; }
    .step-number { font-size: 32px; }
    .step-content { padding: 24px 20px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.gallery-large { grid-column: span 2; }

    /* Metrics */
    .metrics { padding: 60px 0; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .metric-card { padding: 24px 16px; }
    .metric-number { font-size: 36px; }
    .metric-number::after { font-size: 24px; }
    .metric-label { font-size: 14px; }

    /* Testimonials */
    .testimonial-card { padding: 28px 20px; }
    .testimonial-card > p { font-size: 15px; }

    /* Quote */
    .quote-grid { grid-template-columns: 1fr; gap: 40px; }
    .quote-info h2 { font-size: clamp(26px, 5vw, 38px); }
    .form-row { grid-template-columns: 1fr; }
    .quote-form-wrapper { padding: 28px 20px; }

    /* Contact */
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-card { padding: 28px 18px; }

    /* Map */
    .map-wrapper iframe { height: 300px; }

    /* Footer */
    .footer { padding: 60px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    /* FABs */
    .floating-actions { right: 16px; bottom: 80px; }
    .fab-btn { width: 50px; height: 50px; font-size: 20px; }
    .back-to-top { right: 16px; bottom: 24px; }

    /* FAQ */
    .faq-question { padding: 16px 18px; font-size: 15px; }
    .faq-answer p { padding: 0 18px 16px; font-size: 14px; }

    /* Page Hero */
    .page-hero { min-height: 340px; padding: 120px 20px 50px; }
    .page-hero-content { max-width: 90vw; }
    .page-hero p { font-size: 16px; }
}

/* Large phones */
@media (max-width: 640px) {
    .hero h1 { font-size: clamp(28px, 7vw, 40px); }
    .hero-subtitle { font-size: 16px; }
    .hero-badge { font-size: 12px; padding: 6px 14px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-lg { padding: 14px 28px; font-size: 15px; width: 100%; max-width: 300px; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.gallery-large { grid-column: span 1; aspect-ratio: 1; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn-lg { max-width: 280px; }
    .testimonials-slider { max-width: 100%; }
}

/* Small phones */
@media (max-width: 480px) {
    .section { padding: 50px 0; }
    .container { padding: 0 16px; }
    .section-header { margin-bottom: 32px; }

    /* Hero */
    .hero { padding: 90px 16px 50px; min-height: 85vh; }
    .hero-content { max-width: 100%; }
    .hero-actions { margin-bottom: 32px; }
    .stat-number { font-size: 22px; }
    .stat-plus { font-size: 18px; }
    .stat-label { font-size: 11px; }
    .hero-stats { gap: 16px; }

    /* Cards */
    .service-card { padding: 20px 16px; }
    .why-card { padding: 24px 16px; }
    .metric-card { padding: 20px 12px; }
    .metric-number { font-size: 32px; }
    .metric-number::after { font-size: 20px; }
    .metric-label { font-size: 13px; }
    .contact-card { padding: 24px 16px; }
    .testimonial-card { padding: 24px 16px; }
    .testimonial-card > p { font-size: 14px; line-height: 1.7; }

    /* Quote */
    .quote-form-wrapper { padding: 20px 14px; }
    .quote-info h2 { font-size: 24px; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: 12px 14px; font-size: 16px; }

    /* Gallery */
    .gallery-grid { gap: 10px; }
    .gallery-overlay { padding: 12px; }
    .gallery-overlay span { font-size: 13px; }

    /* Process */
    .step-number { font-size: 28px; }
    .step-content { padding: 20px 16px; }
    .step-icon { width: 48px; height: 48px; font-size: 18px; }

    /* VMV & Materials */
    .vmv-grid { grid-template-columns: 1fr; }
    .vmv-card { padding: 28px 20px; }
    .vmv-icon { width: 52px; height: 52px; font-size: 20px; }
    .materials-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .material-card { padding: 20px 12px; }

    /* Page Hero */
    .page-hero { min-height: 280px; padding: 110px 16px 40px; }
    .page-hero p { font-size: 15px; }
    .breadcrumb { font-size: 12px; gap: 8px; }

    /* Footer */
    .footer { padding: 50px 0 0; }
    .footer-grid { gap: 28px; }
    .footer-logo { font-size: 20px; }
    .footer-bottom { padding: 20px 0; }

    /* FAQ */
    .faq-question { padding: 14px 16px; font-size: 14px; gap: 12px; }
    .faq-answer p { padding: 0 16px 14px; font-size: 13px; }

    /* CTA */
    .cta-banner { padding: 50px 0; }
    .cta-content { padding: 32px 20px; }
    .cta-content p { font-size: 15px; margin-bottom: 24px; }

    /* Map */
    .map-wrapper iframe { height: 250px; }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero h1 { font-size: 26px; }
    .hero-subtitle { font-size: 15px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    .stat-number { font-size: 20px; }
    .stat-plus { font-size: 16px; }
    .metrics-grid { grid-template-columns: 1fr; }
    .metric-number { font-size: 36px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 4/3; }
    .materials-grid { grid-template-columns: 1fr; }
    .nav-menu { width: 90%; }
    .section { padding: 40px 0; }
    .container { padding: 0 14px; }
    .page-hero { min-height: 260px; padding: 100px 14px 36px; }
    .quote-form-wrapper { padding: 18px 12px; }
    .btn-lg { padding: 12px 24px; font-size: 14px; }
}

/* ============================================
   MULTI-PAGE STYLES
   ============================================ */

/* --- Navbar Dark (for inner pages) --- */
.navbar-dark {
    background: var(--dark);
}

.navbar-dark.scrolled {
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.navbar-dark .nav-link { color: rgba(255,255,255,0.75); }
.navbar-dark .nav-link:hover { color: var(--white); }
.navbar-dark .nav-link.active::after { width: 100%; }
.navbar-dark.scrolled .nav-link { color: rgba(255,255,255,0.75); }
.navbar-dark.scrolled .nav-link:hover { color: var(--white); }
.navbar-dark .nav-logo { color: var(--white); }
.navbar-dark.scrolled .nav-logo { color: var(--white); }
.navbar-dark.scrolled .logo-icon svg { color: var(--primary-light); }

/* Fix: hamburger stays white on dark navbar even when scrolled */
.navbar-dark .nav-toggle span { background: var(--white); }
.navbar-dark.scrolled .nav-toggle span { background: var(--white); }

/* --- Page Hero Banner --- */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 60px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0F0B1E 0%, #1a0a2e 40%, #2d1b4e 70%, #0F172A 100%);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(107, 33, 168, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(249, 115, 22, 0.12) 0%, transparent 50%);
}

.page-hero-services .page-hero-bg {
    background: linear-gradient(135deg, #0F172A 0%, #1e1145 40%, #2d1b4e 70%, #0a1628 100%);
}

.page-hero-contact .page-hero-bg {
    background: linear-gradient(135deg, #0a1628 0%, #0F172A 40%, #1a0a2e 70%, #0F0B1E 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.breadcrumb a:hover { color: var(--accent-light); }

.breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

.breadcrumb span {
    color: var(--accent-light);
    font-weight: 600;
}

/* --- Section CTA --- */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--light);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #4338CA 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn-outline-dark {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: transparent;
}

.btn-outline-dark:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* --- VMV (Vision Mission Values) Section --- */
.vmv-section { background: var(--light); }

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

.vmv-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-3);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vmv-card:hover::before { opacity: 1; }

.vmv-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(107, 33, 168, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.vmv-card:hover .vmv-icon {
    background: var(--primary);
    color: var(--white);
}

.vmv-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.vmv-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* --- Materials Section --- */
.materials-section { background: var(--light); }

.materials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.material-card {
    background: var(--white);
    padding: 28px 16px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--light-3);
    transition: var(--transition);
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.material-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(107, 33, 168, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
    transition: var(--transition);
}

.material-card:hover .material-icon {
    background: var(--primary);
    color: var(--white);
}

.material-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.material-card p {
    font-size: 12px;
    color: var(--gray);
}

/* --- Contact Map section --- */
.contact-map { background: var(--white); }

/* --- Responsive for new sections --- */
@media (max-width: 1024px) {
    .vmv-grid { grid-template-columns: repeat(3, 1fr); }
    .materials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .vmv-grid { grid-template-columns: 1fr; }
    .vmv-card { padding: 32px 24px; }
    .materials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 360px) {
    .materials-grid { grid-template-columns: 1fr; }
    .vmv-card { padding: 24px 16px; }
    .vmv-card h3 { font-size: 19px; }
}
