/* Norge Door - Custom CSS Architecture */
/* Nordic Hearth & Fjord Theme */

:root {
    /* Color Palette */
    --color-bg-dark: #070B13;
    --color-bg-medium: #0F1626;
    --color-bg-light: #1A2338;
    
    --color-text-white: #FFFFFF;
    --color-text-frost: #E2E8F0;
    --color-text-slate: #94A3B8;
    --color-text-dark: #1E293B;

    --color-copper: #D97706;
    --color-copper-light: #F59E0B;
    --color-copper-gradient: linear-gradient(135deg, #F59E0B 0%, #B45309 100%);
    --color-frost-gradient: linear-gradient(135deg, #F8FAFC 0%, #94A3B8 100%);
    
    --color-success: #10B981;
    --color-error: #EF4444;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Styling */
    --container-width: 1200px;
    --section-padding: 6rem 2rem;
    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(217, 119, 6, 0.15);
    
    --glass-bg: rgba(15, 22, 38, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --blur: blur(12px);
}

/* CSS Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-frost);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-white);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    font-weight: 300;
}

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

/* Global Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3.5rem; }
.relative-z { position: relative; z-index: 2; }
.bg-darker { background-color: rgba(4, 7, 13, 0.6); }

/* Layout Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-sidebar {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* Typography elements */
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--color-copper);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-slate);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.text-gradient {
    background: var(--color-frost-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: var(--color-copper-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

/* Glassmorphism Panel styles */
.glass-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: var(--blur);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.glass-card:hover {
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: var(--shadow-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--color-copper-gradient);
    color: var(--color-text-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(180, 83, 9, 0.4);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--color-bg-dark);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header Navigation Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 11, 19, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(7, 11, 19, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo img {
    height: 42px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-white);
}

.logo-text span {
    color: var(--color-copper);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-slate);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.btn-nav-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-white);
    transition: var(--transition-fast);
}

/* Page Section Padding */
.section-padding {
    padding: var(--section-padding);
}

/* Hero Section Styling */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 11, 19, 0.95) 0%, rgba(7, 11, 19, 0.8) 50%, rgba(7, 11, 19, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-copper-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-slate);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

/* Brand Introduction Section styling */
.rounded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.visual-card {
    padding: 0.5rem;
    position: relative;
}

.visual-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-copper-gradient);
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.visual-badge .badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.visual-badge .badge-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item-inline {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feature-item-inline .feature-icon {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item-inline h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--color-text-white);
}

.feature-item-inline p {
    font-size: 0.9rem;
    color: var(--color-text-slate);
}

/* Service Card Styles */
.service-card {
    padding: 0;
    overflow: hidden;
}

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

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.warranty-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(7, 11, 19, 0.85);
    border: 1px solid var(--color-copper);
    color: var(--color-text-white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-slate);
    margin-bottom: 1.5rem;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-copper-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.arrow-link span {
    transition: var(--transition-fast);
}

.arrow-link:hover span {
    transform: translateX(5px);
}

/* Warranty Assurance Section styling */
.warranty-shield-glow {
    width: 280px;
    height: 320px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.25) 0%, rgba(7, 11, 19, 0.4) 100%);
    border: 1px solid rgba(217, 119, 6, 0.4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(217, 119, 6, 0.2);
}

.warranty-shield-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--color-copper-gradient);
    z-index: -1;
    border-radius: 22px;
    opacity: 0.15;
    filter: blur(8px);
}

.shield-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.shield-symbol {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.shield-years {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--color-copper-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shield-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-text-white);
    margin-top: 0.5rem;
    font-weight: 600;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-copper-light);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Testimonials section */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--color-copper-light);
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.quote {
    font-style: italic;
    color: var(--color-text-frost);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.testimonial-card .author h4 {
    font-size: 1.05rem;
    color: var(--color-text-white);
}

.testimonial-card .author span {
    font-size: 0.8rem;
    color: var(--color-text-slate);
}

/* FAQ accordion styling */
.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-white);
}

.faq-question .faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-copper-light);
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--color-text-slate);
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

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

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
    color: var(--color-text-white);
}

/* Call To Action strip */
.cta-strip {
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 11, 19, 0.95) 0%, rgba(27, 21, 19, 0.8) 100%);
    z-index: 2;
}

.cta-strip h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-strip p {
    color: var(--color-text-slate);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Page Header styling */
.page-header {
    height: 45vh;
    min-height: 350px;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 11, 19, 0.85) 0%, rgba(7, 11, 19, 0.98) 100%);
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-slate);
    margin: 0 auto;
}

/* About Story specifics */
.about-story .story-image {
    position: relative;
}

/* Core Values and Steps */
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.value-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-slate);
}

.process-timeline {
    position: relative;
}

.process-step {
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(217, 119, 6, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.process-step:hover .step-number {
    color: var(--color-copper-light);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--color-text-slate);
}

/* Services list page */
.service-list-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.warranty-card-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--color-copper-gradient);
    color: var(--color-text-white);
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.service-list-card .card-body {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-list-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.service-subtitle-text {
    font-size: 0.88rem;
    color: var(--color-text-slate);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bullet-list-small {
    list-style: none;
    margin-bottom: 2rem;
}

.bullet-list-small li {
    font-size: 0.85rem;
    color: var(--color-text-frost);
    margin-bottom: 0.6rem;
    display: flex;
    gap: 0.6rem;
}

.bullet-list-small .bullet-dot {
    color: var(--color-copper-light);
    font-weight: bold;
}

.card-footer-actions {
    margin-top: auto;
}

/* TEK17 Diagrams */
.insulation-diagram-card {
    height: 100%;
    min-height: 300px;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 2rem;
}

.diagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 19, 0.2) 0%, rgba(7, 11, 19, 0.95) 100%);
    z-index: 1;
}

.insulation-info {
    position: relative;
    z-index: 2;
}

.rating-box {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    margin: 0.8rem 0;
}

.rating-box .u-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-copper-light);
    font-family: var(--font-heading);
}

.rating-box .unit {
    font-size: 0.75rem;
    color: var(--color-text-slate);
}

/* Service Detail View Specifics */
.service-header {
    height: 50vh;
    min-height: 400px;
}

.service-header .header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.warranty-header-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--color-copper-gradient);
    border-radius: 4px;
    color: var(--color-text-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.detail-intro-card {
    margin-bottom: 2.5rem;
}

.detail-intro-card h2,
.detail-features h2,
.detail-process h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.bullet-list-large {
    list-style: none;
}

.bullet-list-large li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.bullet-check {
    color: var(--color-copper-light);
    font-weight: 800;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-text {
    font-size: 1rem;
    color: var(--color-text-frost);
    padding-top: 2px;
}

.vertical-timeline {
    position: relative;
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
}

.timeline-item {
    position: relative;
}

.timeline-num {
    position: absolute;
    left: -40px;
    top: 0;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-copper);
    color: var(--color-copper-light);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-slate);
}

.sidebar-shield {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.warranty-term {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-copper-light);
    margin: 0.5rem 0 1rem 0;
    font-family: var(--font-heading);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table tr:last-child {
    border: none;
}

.specs-table td {
    padding: 0.9rem 0;
    font-size: 0.88rem;
}

.spec-label {
    color: var(--color-text-slate);
    font-weight: 400;
}

.spec-value {
    text-align: right;
    color: var(--color-text-white);
    font-weight: 500;
}

.sidebar-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.sidebar-nav-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 0.85rem;
}

.sidebar-nav-links a:hover {
    background: rgba(217, 119, 6, 0.05);
    border-color: rgba(217, 119, 6, 0.2);
    padding-left: 1.2rem;
}

.sidebar-nav-links .chevron {
    color: var(--color-copper-light);
    font-size: 0.9rem;
}

/* Contact Grid & Map components */
.contact-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
}

.contact-item .icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.05rem;
    color: var(--color-text-white);
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--color-text-slate);
}

.map-mockup-card {
    padding: 0.5rem;
    overflow: hidden;
}

.map-inner {
    height: 250px;
    background-color: #0B0E14;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.8;
}

.map-pin {
    font-size: 2.2rem;
    position: relative;
    z-index: 5;
    animation: bounce 2s infinite ease-in-out;
}

.map-radar {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    border-radius: 50%;
    z-index: 2;
    animation: radar-pulse 3s infinite linear;
}

.map-details {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(15, 22, 38, 0.85);
    border: var(--glass-border);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 0.8rem;
    text-align: left;
}

.map-details h3 {
    font-size: 0.85rem;
    color: var(--color-text-white);
    letter-spacing: 1px;
}

.map-details p {
    font-size: 0.75rem;
    color: var(--color-text-slate);
}

.map-details .coords {
    display: block;
    font-size: 0.65rem;
    color: var(--color-copper-light);
    margin-top: 0.2rem;
    font-family: monospace;
}

/* Contact Form controls */
.quote-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-form label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-slate);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-white);
    transition: var(--transition-fast);
    outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-copper-light);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.1);
}

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

/* Form alert banners */
.alert {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-error);
}

.alert-icon {
    font-size: 1.3rem;
    font-weight: bold;
}

.alert-content strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.alert-content p,
.alert-content ul {
    font-size: 0.85rem;
    color: var(--color-text-frost);
}

.alert-content ul {
    padding-left: 1.2rem;
}

/* Privacy Page specifics */
.privacy-card {
    padding: 3.5rem;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--color-text-white);
    margin-bottom: 2.5rem;
}

.policy-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-white);
}

.policy-section p {
    font-size: 0.95rem;
    color: var(--color-text-slate);
    margin-bottom: 1.2rem;
}

.policy-bullets {
    list-style: none;
    padding-left: 0.5rem;
}

.policy-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-text-slate);
}

.policy-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-copper-light);
    font-size: 1.4rem;
    line-height: 1;
    top: -2px;
}

.policy-contact-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 1.5rem;
}

.policy-contact-box ul {
    list-style: none;
}

.policy-contact-box li {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--color-text-slate);
}

.policy-contact-box li:last-child {
    margin-bottom: 0;
}

.policy-contact-box a {
    color: var(--color-copper-light);
}

/* Arabic Branding badges */
.arabic-badge {
    margin-top: 1.5rem;
}

.arabic-badge span {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--color-text-slate);
    direction: rtl;
}

/* Footer structure styling */
.footer {
    background-color: #03060C;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 5rem 0 0 0;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
    color: var(--color-text-white);
}

.brand-desc {
    font-size: 0.88rem;
    color: var(--color-text-slate);
    margin-top: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo img {
    height: 38px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: var(--color-text-slate);
}

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

.contact-details li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--color-text-slate);
}

.contact-details .icon {
    font-size: 1.1rem;
}

.warranty-card-small {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.2rem;
    border-radius: 6px;
    display: flex;
    gap: 1rem;
}

.warranty-card-small .seal-icon {
    font-size: 1.8rem;
}

.warranty-card-small h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.warranty-card-small p {
    font-size: 0.75rem;
    color: var(--color-text-slate);
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.8rem 0;
}

.footer-bottom-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-slate);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--color-text-white);
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes radar-pulse {
    0% { transform: scale(0.2); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Scroll reveal transition templates */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

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

/* Custom Fade Ins */
.fade-in {
    opacity: 0;
    animation: simple-fade 1s forwards ease-out;
}

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

@keyframes simple-fade {
    to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }
    
    .grid-2, .grid-3, .grid-4, .grid-sidebar {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 110;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #070B13;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 105;
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }
    
    .btn-nav-mobile {
        display: inline-flex;
        width: 100%;
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        background: var(--color-copper-gradient);
        border-radius: 4px;
        color: #fff;
        justify-content: center;
        font-size: 0.9rem;
        text-transform: uppercase;
        font-family: var(--font-heading);
        font-weight: 500;
        letter-spacing: 1px;
    }
    
    .nav-actions .btn-secondary {
        display: none;
    }
    
    /* Toggle active state transformation */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .visual-badge {
        right: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .privacy-card {
        padding: 1.5rem;
    }
}
