/* ----------------------------------------------------
   DESIGN SYSTEM & CUSTOM VARIABLES
---------------------------------------------------- */
:root {
    /* Color Palette */
    --bg-dark: hsl(222, 47%, 7%);
    --bg-dark-accent: hsl(222, 47%, 4%);
    --panel-bg: hsla(222, 47%, 12%, 0.65);
    --panel-border: rgba(255, 255, 255, 0.08);
    
    --text-primary: hsl(210, 40%, 98%);
    --text-secondary: hsl(215, 20%, 75%);
    --text-muted: hsl(215, 12%, 50%);
    
    --solar-primary: hsl(38, 100%, 50%);
    --solar-glow: rgba(255, 145, 0, 0.15);
    --wind-primary: hsl(163, 100%, 50%);
    --wind-glow: rgba(0, 255, 183, 0.15);
    
    --primary: hsl(163, 100%, 50%);
    --primary-hover: hsl(163, 100%, 40%);
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ----------------------------------------------------
   BASE STYLES & RESET
---------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-weight: 400;
}

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

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--panel-bg);
    border: 2px solid var(--bg-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ----------------------------------------------------
   LAYOUT UTILITIES
---------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.alt-bg {
    background-color: var(--bg-dark-accent);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--text-primary) 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 700px;
    color: var(--text-secondary);
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Section Tags */
.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

.tag-solar {
    background: rgba(255, 145, 0, 0.1);
    color: var(--solar-primary);
    border: 1px solid rgba(255, 145, 0, 0.2);
}

.tag-wind {
    background: rgba(0, 255, 183, 0.1);
    color: var(--wind-primary);
    border: 1px solid rgba(0, 255, 183, 0.2);
}

.tag-process {
    background: rgba(165, 180, 252, 0.1);
    color: #a5b4fc;
    border: 1px solid rgba(165, 180, 252, 0.2);
}

.tag-contact {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--wind-primary) 0%, #00d4ff 100%);
    color: hsl(222, 47%, 7%);
    box-shadow: 0 4px 20px rgba(0, 255, 183, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 183, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--panel-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
}

/* ----------------------------------------------------
   HEADER & NAVBAR
---------------------------------------------------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 20, 38, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--panel-border);
    transition: var(--transition-smooth);
}

.navbar-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.accent-text {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--wind-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Rotating Logo blades */
#turbine-blades {
    transform-origin: 50px 50px;
    animation: rotateTurbine 8s linear infinite;
}

@keyframes rotateTurbine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.contact-btn {
    background: rgba(0, 255, 183, 0.1);
    color: var(--wind-primary) !important;
    border: 1px solid rgba(0, 255, 183, 0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: var(--wind-primary);
    color: var(--bg-dark) !important;
    box-shadow: 0 4px 15px rgba(0, 255, 183, 0.3);
}

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

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

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 145, 0, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 183, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-content .badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    color: #a5b4fc;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--solar-primary) 0%, var(--wind-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--panel-border);
}

.hero-img {
    width: 100%;
    object-fit: cover;
    height: 450px;
    transition: var(--transition-smooth);
}

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

.hero-stat-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hero-stat-card .stat-num {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--wind-primary);
    line-height: 1;
}

.hero-stat-card .stat-lbl {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ----------------------------------------------------
   IMAGE & CONTENT PANELS (SOLAR / WIND)
---------------------------------------------------- */
.visual-panel .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.visual-panel img {
    width: 100%;
    object-fit: cover;
    height: 480px;
    transition: var(--transition-smooth);
}

.visual-panel img:hover {
    transform: scale(1.04);
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--panel-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.solar-badge {
    background: rgba(255, 145, 0, 0.2);
}
.solar-badge .badge-val {
    color: var(--solar-primary);
}

.wind-badge {
    background: rgba(0, 255, 183, 0.2);
}
.wind-badge .badge-val {
    color: var(--wind-primary);
}

.floating-badge .badge-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.floating-badge .badge-val {
    font-size: 1.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-top: 0.15rem;
}

.content-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content-panel .section-desc {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
}

.solar-icon-bg {
    background: rgba(255, 145, 0, 0.1);
    color: var(--solar-primary);
    border: 1px solid rgba(255, 145, 0, 0.2);
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ----------------------------------------------------
   POLICY ACCORDION (WIND SECTION)
---------------------------------------------------- */
.policy-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item.active {
    border-color: rgba(0, 255, 183, 0.3);
    background: rgba(0, 255, 183, 0.02);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: left;
}

.accordion-header .chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-header .chevron {
    transform: rotate(-135deg);
    border-color: var(--wind-primary);
}

.accordion-item.active .accordion-header {
    color: var(--wind-primary);
}

.accordion-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ----------------------------------------------------
   TIMELINE PROCESS SECTION
---------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--panel-border) 10%, var(--panel-border) 90%, transparent);
}

.timeline-item {
    position: relative;
    padding-left: 6rem;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-muted);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 183, 0.2);
}

.timeline-panel {
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

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

.timeline-panel:hover {
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* ----------------------------------------------------
   CONTACT & FORM SECTION
---------------------------------------------------- */
.contact-info-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--panel-border);
    color: var(--wind-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-link:hover {
    color: var(--wind-primary);
}

.info-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-card {
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contact-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Form Styling */
.feasibility-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

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

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 183, 0.15);
}

/* Dropdown styling adjustment for dark mode */
.form-group select option {
    background-color: var(--bg-dark-accent);
    color: var(--text-primary);
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: hsl(0, 100%, 65%);
}

.error-msg {
    color: hsl(0, 100%, 65%);
    font-size: 0.8rem;
    font-weight: 500;
    display: none;
    margin-top: 0.25rem;
}

/* Success Card */
.form-success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon-wrapper {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 183, 0.1);
    border: 1px solid rgba(0, 255, 183, 0.2);
}

.form-success-message h3 {
    font-size: 2rem;
    color: var(--wind-primary);
    margin-bottom: 1rem;
}

.form-success-message p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
#footer {
    border-top: 1px solid var(--panel-border);
    padding: 5rem 0 0 0;
    background-color: var(--bg-dark-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about p {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--panel-border);
    padding: 2rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal a {
    margin-left: 2rem;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ----------------------------------------------------
   SCROLL REVEAL ANIMATIONS
---------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Hero delays */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

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

/* ----------------------------------------------------
   RESPONSIVE LAYOUT BREAKPOINTS
---------------------------------------------------- */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .grid-2col {
        gap: 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reverse-mobile {
        direction: ltr; /* Reset if needed */
    }
    
    .reverse-mobile .content-panel {
        order: 1;
    }
    
    .reverse-mobile .visual-panel {
        order: 2;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    #nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(13, 20, 38, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        overflow: hidden;
        transition: var(--transition-smooth);
        border-bottom: 0 solid var(--panel-border);
    }
    
    #nav-menu.open {
        height: calc(100vh - 80px);
        border-bottom-width: 1px;
    }
    
    #nav-menu ul {
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
        width: 100%;
        height: 100%;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .timeline::before {
        left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 4.5rem;
    }
    
    .timeline-badge {
        left: 0;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal a {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .timeline-panel {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
