/* CSS Design System - TS Aluminium Homepage */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-main: #0c0e12;
    --bg-darker: #07080a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    /* Branding Colors */
    --color-red: #d00f24;
    --color-red-hover: #b00b1d;
    --color-teal: #005c6e;
    --color-teal-hover: #004654;
    --color-gold: #e5b842;
    
    /* Text Colors */
    --text-light: #f5f6f8;
    --text-muted: #9fa6b2;
    --text-dark: #1f242e;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #2a2e3a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-red);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-red {
    background-color: var(--color-red);
    color: #ffffff;
}
.btn-red:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 15, 36, 0.35);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: transparent;
    color: #ffffff;
}
.btn-outline-white:hover {
    border-color: #ffffff;
    background-color: #ffffff;
    color: var(--bg-darker);
    transform: translateY(-2px);
}

.btn-teal {
    background-color: var(--color-teal);
    color: #ffffff;
}
.btn-teal:hover {
    background-color: var(--color-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 92, 110, 0.35);
}

/* ---------------- HEADER ---------------- */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(12, 14, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-card);
    transition: all 0.4s ease;
}

.header-nav.scrolled {
    padding: 10px 0;
    background-color: rgba(7, 8, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s ease;
}

.header-nav.scrolled .header-container {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.header-nav.scrolled .logo-img {
    height: 42px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Navigation Dropdown styling */
.nav-links li {
    position: relative;
}

.nav-arrow {
    font-size: 0.7rem;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.nav-links li:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.98);
    background-color: #0c0e12;
    border: 1px solid var(--border-card);
    border-radius: 8px;
    list-style: none;
    min-width: 260px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease,
                transform 0.25s ease,
                visibility 0.25s ease;
    transition-delay: 0.25s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

/* Hover bridge between nav item and dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -48px;
    left: -12px;
    width: calc(100% + 24px);
    height: 48px;
}

.nav-links li:hover .dropdown-menu,
.nav-links li.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    transition-delay: 0s;
}

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

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
}

/* Category Subheaders & Dividers inside Dropdown */
.dropdown-submenu-header {
    display: block;
    padding: 8px 20px 4px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    pointer-events: none;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-card);
    margin: 8px 0;
}

.header-action {
    display: flex;
    align-items: center;
}

/* ---------------- HERO SLIDER ---------------- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 90vh;
    background-color: var(--bg-darker);
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    filter: brightness(0.45);
}

/* 1:1 REPLICATION: Ken Burns Zoom Animation */
.slide.active .slide-bg {
    animation: kenBurns 10s ease-out forwards;
}

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

.slide-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding-top: 80px;
}

.slide-text-wrapper {
    max-width: 800px;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title span {
    color: var(--color-red);
}

.slide-subtitle {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover, .slider-dot.active {
    background-color: var(--color-red);
    transform: scale(1.25);
}

/* ---------------- RED GUARANTEE BANNER ---------------- */
.guarantee-banner {
    background-color: var(--color-red);
    position: relative;
    padding: 30px 0;
    z-index: 15;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.guarantee-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    text-transform: uppercase;
}

.guarantee-text span {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.guarantee-action {
    flex-shrink: 0;
}

/* ---------------- DARLEY WELCOME OVERLAY BAR ---------------- */
.welcome-overlay-bar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-card);
    padding: 40px 0;
}

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

.welcome-column {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px;
}

.welcome-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: rgba(0, 92, 110, 0.15);
    border: 1px solid rgba(0, 92, 110, 0.3);
    color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.welcome-column:hover .welcome-icon-box {
    background-color: var(--color-teal);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 92, 110, 0.4);
    transform: translateY(-3px);
}

.welcome-title {
    font-size: 1.15rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------------- SERVICE CARDS SECTION ---------------- */
.services-section {
    background-color: var(--bg-main);
}

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

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

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

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

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-red);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

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

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

/* ---------------- COMPASS & BLUEPRINT SECTION ---------------- */
.blueprint-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
}

.blueprint-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.blueprint-left {
    padding: 20px 0;
}

.blueprint-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.blueprint-title span {
    color: var(--color-red);
}

.blueprint-checklist {
    list-style: none;
    margin: 30px 0 40px 0;
}

.blueprint-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.blueprint-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(208, 15, 36, 0.1);
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 2px;
}

.blueprint-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.blueprint-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blueprint-right {
    position: relative;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blueprint-img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 400px;
    filter: opacity(0.85) contrast(1.1);
}

/* ---------------- DARLEY BRANDS SECTION ---------------- */
.brands-section {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-card);
}

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

.brand-circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-circle-wrapper:hover .brand-circle {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--color-red);
    background-color: rgba(208, 15, 36, 0.05);
    box-shadow: 0 12px 30px rgba(208, 15, 36, 0.25);
    color: #ffffff;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ---------------- EXTRUSION & RADAR SECTION ---------------- */
.extrusion-radar-section {
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.extrusion-radar-layout {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 60px;
    align-items: center;
}

.extrusion-left {
    position: relative;
}

.extrusion-large-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: block;
    height: 480px;
    object-fit: cover;
}

.radar-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.radar-info-block {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-card);
}

.radar-section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.radar-section-title span {
    color: var(--color-red);
}

.radar-display {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    height: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.radar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) sepia(0.2) hue-rotate(320deg); /* Style in red color styling */
}

/* Pulsing radar target animation overlay */
.radar-target {
    position: absolute;
    top: 55%;
    left: 45%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.radar-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--color-red);
}

.radar-ring {
    border: 1.5px solid var(--color-red);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: radarPulse 2s linear infinite;
    opacity: 0;
}

.radar-ring-2 {
    border: 1.5px solid var(--color-red);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    animation: radarPulse 2s linear infinite;
    animation-delay: 0.6s;
    opacity: 0;
}

.radar-ring-3 {
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    animation: spin 12s linear infinite;
}

@keyframes radarPulse {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.radar-coordinates {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-card);
}

/* ---------------- ALUMINIUM SYSTEMS GRID ---------------- */
.systems-section {
    background-color: var(--bg-main);
}

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

.system-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.system-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-red);
    box-shadow: 0 10px 25px rgba(208, 15, 36, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

.system-icon {
    font-size: 2.2rem;
    color: var(--color-red);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.system-item:hover .system-icon {
    transform: scale(1.15);
}

.system-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ---------------- PROJECTS & VIDEO SHOWCASE ---------------- */
.projects-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-card);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.project-card-darley {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    border: 1px solid var(--border-card);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card-darley:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.project-card-darley img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card-darley:hover img {
    transform: scale(1.06);
}

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 24px;
    z-index: 5;
}

.project-card-title {
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project-card-location {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-action-row {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

/* Video blocks */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-card);
}

.video-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    border: 1px solid var(--border-card);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.6s ease;
}

.video-box:hover img {
    transform: scale(1.03);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--color-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 10;
    box-shadow: 0 0 20px rgba(208, 15, 36, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-play-btn i {
    margin-left: 4px;
}

.video-box:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #ffffff;
    color: var(--color-red);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.video-box-title {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ---------------- DARLEY STAT COUNTER SECTION ---------------- */
.counter-section {
    background-color: var(--color-teal);
    position: relative;
    overflow: hidden;
}

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

.counter-item {
    text-align: center;
    padding: 10px;
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.counter-label {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.counter-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 220px;
    margin: 0 auto;
}

.counter-btn-row {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* ---------------- DARLEY NEWSLETTER SECTION ---------------- */
.newsletter-section {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-card);
}

.newsletter-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
}

.newsletter-left {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup-wrapper {
    width: 280px;
    height: 520px;
    border: 12px solid #20222a;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background-color: #000000;
    position: relative;
}

.phone-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-right {
    padding: 20px 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    max-width: 500px;
}

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

.form-input {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 14px 18px;
    border-radius: 6px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 10px rgba(0, 92, 110, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

/* ---------------- PROFILE QUOTE CARDS ---------------- */
.quote-cards-section {
    background-color: var(--bg-darker);
}

.quote-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.quote-card-box {
    background-color: var(--bg-card);
    border: 1.5px solid rgba(0, 92, 110, 0.3);
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.quote-card-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-teal);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.quote-card-icon {
    font-size: 2.2rem;
    color: var(--color-teal);
    margin-bottom: 25px;
}

.quote-card-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.quote-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.quote-card-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-teal);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---------------- PROFILE RED TESTIMONIALS ---------------- */
.testimonials-section {
    background-color: var(--color-red);
    position: relative;
    overflow: hidden;
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-darker);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.testimonial-user-info h4 {
    font-size: 1rem;
    text-transform: uppercase;
}

.testimonial-user-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* ---------------- PARTNERS BAR ---------------- */
.partners-bar {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-card);
    border-bottom: 1px solid var(--border-card);
    padding: 35px 0;
}

.partners-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.partner-logo:hover {
    color: var(--color-red);
}

/* ---------------- SOCIAL FEEDS SECTION ---------------- */
.social-feeds-section {
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-card);
}

.social-feeds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feed-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 30px;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-card);
    margin-bottom: 20px;
}

.feed-title {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-title i {
    color: var(--color-teal);
}

.feed-content {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    overflow: hidden;
}

.feed-left-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feed-post {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feed-post-meta {
    font-size: 0.75rem;
    color: var(--color-gold);
}

.feed-right-pane {
    width: 150px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-card);
}

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

/* ---------------- PROFILE WORK WITH US ---------------- */
.work-with-us {
    background-color: var(--bg-darker);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-card);
}

.work-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.work-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 35px auto;
    font-size: 1.05rem;
}

/* ---------------- FOOTER ---------------- */
.footer-section {
    background-color: var(--bg-darker);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-card);
}

/* Left side map drawer */
.footer-left-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-map-container {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    background-color: var(--bg-main);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.google-map-embed {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-directions-link {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(7, 8, 10, 0.92);
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

.map-directions-link:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 30, 58, 0.35);
}

.map-directions-link i {
    font-size: 0.9rem;
}

.footer-right-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: var(--color-gold);
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact-list i {
    color: var(--color-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list span {
    line-height: 1.4;
}

/* 1:1 REPLICATION: Footer Brand Box */
.footer-bottom-black {
    background-color: #000000;
    padding: 40px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand-box {
    border: 2px solid #ffffff;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #000000;
    flex-shrink: 0;
}

.footer-brand-logo {
    height: 36px;
    width: auto;
}

.footer-brand-divider {
    width: 1px;
    height: 30px;
    background-color: #ffffff;
}

.footer-brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.footer-info-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.5;
}

.footer-legal-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ---------------- INQUIRY MODAL (GET A QUOTE) ---------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-main);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--color-red);
}

.modal-body {
    padding: 40px;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-textarea {
    min-height: 100px;
    resize: vertical;
}

/* ---------------- SCROLL REVEAL EFFECTS ---------------- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html.js-enabled .reveal:not(.active) {
    opacity: 0;
    transform: translateY(30px);
}

html.js-enabled .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ---------------- SECONDARY PAGES STYLING ---------------- */
.page-hero-section {
    position: relative;
    height: 760px;
    min-height: 760px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px; /* spacing for fixed header */
    border-bottom: 1px solid var(--border-card);
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(12, 14, 18, 0.75), rgba(12, 14, 18, 0.9));
    z-index: 1;
    pointer-events: none;
}

.page-hero-section .hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0 20px !important;
}

.page-hero-section .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-light);
}

.page-hero-section .hero-title span {
    color: var(--color-red);
}

.page-hero-section .breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.page-hero-section .breadcrumb a {
    color: var(--text-muted);
}

.page-hero-section .breadcrumb a:hover {
    color: var(--color-red);
}

.page-hero-section .breadcrumb span {
    color: var(--color-gold);
}

.page-main-content {
    background-color: var(--bg-main);
}

.content-placeholder-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.placeholder-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(208, 15, 36, 0.1);
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    border: 1px solid rgba(208, 15, 36, 0.25);
    box-shadow: 0 0 20px rgba(208, 15, 36, 0.15);
}

.content-placeholder-box h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.placeholder-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.placeholder-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* ---------------- INTERACTIVE VISUAL EFFECTS (BATCH 1) ---------------- */

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-red), var(--color-gold));
    width: 0%;
    z-index: 100000;
    transition: width 0.1s ease-out;
}

.blueprint-svg {
    width: 100%;
    height: auto;
    background-color: #0b0f19;
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.blueprint-path-animate {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawBlueprintPath 5s linear forwards;
}

@keyframes drawBlueprintPath {
    to {
        stroke-dashoffset: 0;
    }
}

.blueprint-pulse-dot {
    fill: var(--color-teal);
    animation: pulseDot 2s infinite;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.blueprint-pulse-dot:hover {
    fill: var(--color-red);
}

@keyframes pulseDot {
    0% { r: 5; opacity: 1; }
    50% { r: 12; opacity: 0.5; }
    100% { r: 5; opacity: 1; }
}

.blueprint-tooltip {
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--color-teal);
    border-radius: 6px;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    max-width: 250px;
    line-height: 1.5;
    transform: translateY(10px);
}


/* ---------------- INTERACTIVE VISUAL EFFECTS (BATCH 1) ---------------- */

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-red), var(--color-gold));
    width: 0%;
    z-index: 100000;
    transition: width 0.1s ease-out;
}

.blueprint-svg {
    width: 100%;
    height: auto;
    background-color: #0b0f19;
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.blueprint-path-animate {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawBlueprintPath 5s linear forwards;
}

@keyframes drawBlueprintPath {
    to {
        stroke-dashoffset: 0;
    }
}

.blueprint-pulse-dot {
    fill: var(--color-teal);
    animation: pulseDot 2s infinite;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.blueprint-pulse-dot:hover {
    fill: var(--color-red);
}

@keyframes pulseDot {
    0% { r: 5; opacity: 1; }
    50% { r: 12; opacity: 0.5; }
    100% { r: 5; opacity: 1; }
}

.blueprint-tooltip {
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--color-teal);
    border-radius: 6px;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    max-width: 250px;
    line-height: 1.5;
    transform: translateY(10px);
}

.blueprint-tooltip.active {
    opacity: 1;
    transform: translateY(0);
}

/* Card 3D Perspective settings */
.service-card, .project-card, .system-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.service-card:hover, .project-card:hover, .system-card:hover {
    box-shadow: 0 15px 35px rgba(0, 150, 150, 0.15);
}

/* --- ENRICHED SUBPAGE COMPONENT STYLES --- */
.enrich-section {
    margin-top: 50px;
    border-top: 1px solid var(--border-card);
    padding-top: 40px;
}

.enrich-section-title {
    color: var(--color-gold);
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: rgba(0, 92, 110, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    color: var(--color-teal);
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Showcase Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(208, 15, 36, 0.3);
}

.showcase-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.showcase-meta {
    color: var(--color-gold);
    font-size: 0.82rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.showcase-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Form Card */
.form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-teal);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-field-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(229, 184, 66, 0.3);
}

.review-rating {
    color: var(--color-gold);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-author {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.review-author span {
    color: var(--color-teal);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-map-container {
        height: 320px;
    }

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

@media (max-width: 600px) {
    .footer-map-container {
        height: 280px;
    }

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

    .map-directions-link {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

