/* ==========================================================================
   JKA Electrical & Solar - Core Stylesheet
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Color & Variable Tokens */
:root {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Colours */
    --primary: #0f172a;        /* Slate 900 */
    --secondary: #1e293b;      /* Slate 800 */
    --accent-solar: #f59e0b;   /* Solar Amber */
    --accent-electric: #2563eb;/* Electric Blue */
    --accent-green: #10b981;   /* Clean Energy Green */
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-dark: #0b0f19;
    --border-light: #e2e8f0;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.30, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 24px -8px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.16);
    --shadow-inset: inset 0 2px 4px 0 rgba(255, 255, 255, 0.06);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

/* Typography Utilities */
.text-gradient-solar {
    background: linear-gradient(135deg, var(--accent-solar), #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-electric {
    background: linear-gradient(135deg, var(--accent-electric), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 99px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-solar), #ea580c);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(234, 88, 12, 0.4);
}

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

.btn-secondary:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.3);
}

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

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

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

.btn-outline-white:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Floating Navigation Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    background: rgba(11, 15, 25, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
    height: 80px;
    background: rgba(11, 15, 25, 0.9);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-light);
    position: relative;
    padding: 8px 0;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.phone-action:hover {
    background: var(--accent-solar);
    border-color: var(--accent-solar);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Mobile Navigation Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        z-index: 1050;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .header-actions {
        display: none;
    }
}

/* Dynamic Hero Section (Dawn-to-Noon Solar Cycle) */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Base image (Optimal colours, static) */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.9) contrast(1.05) saturate(1.05);
}

/* Disabled transition overlays */
.hero-dawn-overlay,
.hero-sun-glow {
    display: none !important;
}

/* Dark Vignette to keep text readable */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.75) 0%, rgba(11, 15, 25, 0.35) 60%, rgba(11, 15, 25, 0.6) 100%);
    z-index: 4;
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 10;
    color: var(--text-light);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-solar);
    padding: 8px 16px;
    border-radius: 99px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    animation: pulse-glow 2s infinite;
}

.hero-title {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 18px;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Animations */

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Service Highlights Row / Section */
.highlights-bar {
    background: var(--primary);
    padding: 30px 0;
    color: var(--text-light);
    border-top: 4px solid var(--accent-solar);
    position: relative;
    z-index: 20;
}

.highlights-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    font-size: 24px;
    color: var(--accent-solar);
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-text h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 2px;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .highlights-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Services Grid Section */
.services-section {
    background: #f1f5f9;
}

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

.section-badge {
    display: inline-block;
    color: var(--accent-electric);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.service-card {
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-electric);
    transition: var(--transition-smooth);
    transform: scaleY(0.1);
    transform-origin: bottom;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.15);
}

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

.service-card.solar::before {
    background: var(--accent-solar);
}

.service-card.battery::before {
    background: var(--accent-green);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
}

.service-card.electrical .service-icon {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-electric);
}

.service-card.solar .service-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-solar);
}

.service-card.battery .service-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

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

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

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

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* Feature/About Intro Section */
.about-intro-section {
    background: var(--text-light);
}

.about-intro-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.95);
    border-top: 2px solid var(--accent-solar);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    color: var(--text-light);
    max-width: 250px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition-smooth);
}

.about-intro-badge h3 {
    color: var(--accent-solar);
    font-size: 22px;
    margin-bottom: 0;
    line-height: 1;
}

.about-intro-badge p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .about-intro-badge {
        bottom: 10px;
        left: 10px;
        padding: 6px 12px;
        max-width: 200px;
        gap: 8px;
    }
    
    .about-intro-badge h3 {
        font-size: 18px;
    }
    
    .about-intro-badge p {
        font-size: 11px;
        line-height: 1.25;
    }
}

/* Testimonials / What Our Customers Say */
.testimonials-section {
    background: #0f172a;
    color: var(--text-light);
}

.testimonials-section .section-title {
    color: var(--text-light);
}

.testimonials-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    opacity: 0.4;
    scale: 0.95;
    transition: var(--transition-smooth);
}

.testimonial-slide.active {
    opacity: 1;
    scale: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 72px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
}

.rating-stars {
    display: flex;
    gap: 6px;
    color: var(--accent-solar);
    margin-bottom: 24px;
}

.rating-stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    background: var(--accent-solar);
    color: var(--primary);
    border-color: var(--accent-solar);
}

/* Call to Action Banner */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

/* Shared Contact Form & Styling */
.contact-section-layout {
    background: #f8fafc;
}

.contact-card-info {
    background: var(--primary);
    color: var(--text-light);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-card-info h3 {
    color: var(--text-light);
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-card-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-solar);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-detail-text p, 
.contact-detail-text a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.contact-detail-text a:hover {
    color: var(--accent-solar);
}

.contact-form-container {
    background: var(--text-light);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

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

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-electric);
    background: var(--text-light);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Honeypot anti-spam field */
.hp-field {
    display: none !important;
    visibility: hidden !important;
}

/* Alerts styles */
.form-alert {
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
}

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

.form-alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Global Footer Styles */
.site-footer {
    background: #080b12;
    color: var(--text-light);
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-widget h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-solar);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 320px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: #1877f2; /* Facebook Blue */
    border-color: #1877f2;
    transform: translateY(-2px);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-solar);
    transform: translateX(4px);
}

.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-item {
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-info-item svg {
    color: var(--accent-solar);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-info-item a:hover {
    color: var(--accent-solar);
}

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

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--accent-solar);
}

/* Page Header component for About & Contact */
.page-title-banner {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-light);
}

.page-title-banner h1 {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
    color: var(--accent-solar);
}

.breadcrumbs span {
    color: var(--accent-solar);
}

/* Interactive elements & micro-animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}
