/* CSS Variables & Reset (Premium Light Theme) */
:root {
    --bg-dark: #f8fafc; /* Slate-50 background */
    --bg-card: rgba(255, 255, 255, 0.8);
    --border-color: rgba(15, 23, 42, 0.06);
    --border-color-hover: rgba(16, 185, 129, 0.4);
    
    /* Brand Colors */
    --accent-color: #10b981; /* Emerald */
    --accent-glow: rgba(16, 185, 129, 0.08);
    
    --secondary-color: #3b82f6; /* Indigo Blue */
    --secondary-glow: rgba(59, 130, 246, 0.08);
    
    --text-primary: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 700 */
    --text-white: #0f172a; /* Dark text for contrast in headers */
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Tech Specific Themes */
.tech-solar {
    --accent-color: #d97706; /* High contrast Amber */
    --accent-glow: rgba(217, 119, 6, 0.08);
}

.tech-wind {
    --accent-color: #0284c7; /* High contrast Sky Blue */
    --accent-glow: rgba(2, 132, 199, 0.08);
}

.tech-battery {
    --accent-color: #059669; /* High contrast Emerald */
    --accent-glow: rgba(5, 150, 105, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Ambient Glows (Subtle and soft for Light Theme) */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.glow-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    animation: drift 20s infinite alternate ease-in-out;
}

.glow-2 {
    top: 600px;
    left: -200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: drift 25s infinite alternate-reverse ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Typography & Layout Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a; /* Slate 900 */
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, #059669 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: #059669; /* Emerald */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
    background-color: rgba(15, 23, 42, 0.04);
    color: #0f172a;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: #0f172a;
    border: 2px solid rgba(15, 23, 42, 0.12);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: var(--accent-glow);
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Cards (Redefined for clean light shadows) */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06), 0 2px 5px rgba(15, 23, 42, 0.02);
}

/* Navbar (Light Theme) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    font-family: var(--font-heading);
}

.logo-icon {
    stroke-width: 2.5;
    color: #10b981;
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.2));
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0f172a;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0f172a;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 99;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    color: #475569;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.stat-unit {
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Hero Visual Graphics */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: visible;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.glass-overlay-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.top-left-widget {
    top: 30px;
    left: -30px;
}

.bottom-right-widget {
    bottom: 30px;
    right: -30px;
}

.widget-icon {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.03);
}

.text-yellow { color: #d97706; }
.text-cyan { color: #0284c7; }

.glass-overlay-card h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
    color: #475569;
}

.glass-overlay-card p {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

/* Floating Animations */
.floating {
    animation: float 6s infinite ease-in-out;
}
.floating-delayed {
    animation: float-delayed 6s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes float-delayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0px); }
}

/* Live Technology Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
    align-items: stretch;
}

.tech-selectors {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.tech-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.tech-btn:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
}

.tech-btn.active {
    background: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.tech-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.3s, background-color 0.3s;
}

.tech-btn:hover .tech-icon-wrapper,
.tech-btn.active .tech-icon-wrapper {
    color: var(--accent-color);
    background: var(--accent-glow);
}

.tech-btn-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tech-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}

.tech-status {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.online {
    background-color: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.status-indicator.transient {
    background-color: #f59e0b;
    box-shadow: 0 0 6px #f59e0b;
}

/* Dashboard Main Stats */
.main-stats-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.panel-title-group h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.live-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse-red 1.2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.health-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
}

.health-icon {
    width: 16px;
    height: 16px;
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.p-stat {
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
}

.p-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.p-stat-value-group {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 8px;
}

.p-stat-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    font-family: var(--font-heading);
    transition: all 0.3s;
}

.p-stat-unit {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Live Dynamic SVG Chart */
.chart-container {
    background: #f1f5f9; /* Slate 100 wrapper background */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.chart-wrapper {
    width: 100%;
}

.live-chart-svg {
    width: 100%;
    height: 120px;
    display: block;
    overflow: visible;
}

#chart-path {
    transition: d 0.5s ease-in-out;
}

#chart-path-fill {
    transition: d 0.5s ease-in-out;
}

/* Calculator Section */
.calculator-card {
    max-width: 1000px;
    margin: 0 auto;
}

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

.input-group {
    margin-bottom: 35px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.input-labels label {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
}

.input-labels i {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
}

.input-val-display {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    background: var(--accent-glow);
    padding: 4px 12px;
    border-radius: 6px;
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(15, 23, 42, 0.08);
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Outputs */
.calc-outputs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.result-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 23, 42, 0.015);
    border: 1px solid var(--border-color);
    padding: 18px 24px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.result-box:hover {
    transform: translateX(4px);
    border-color: rgba(15, 23, 42, 0.1);
}

.result-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-box i {
    width: 24px;
    height: 24px;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.result-value-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 2px;
}

.result-val {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
}

.text-green { color: #059669; }
.text-cyan { color: #0284c7; }
.text-emerald { color: #047857; }

.result-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.project-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.project-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.project-card:hover .project-img-placeholder {
    transform: scale(1.05);
}

.solar-bg {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.wind-bg {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
}

.storage-bg {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.project-vector-icon {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
    opacity: 0.8;
}

.project-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: #0f172a;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.project-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.project-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    color: var(--text-muted);
}

.project-footer i {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.font-bold {
    font-weight: 700;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text {
    font-size: 1.05rem;
    margin-top: 16px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-detail-item i {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-color);
    color: var(--accent-color);
}

.c-detail-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.c-detail-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
}

/* Form Styles */
.form-row {
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.015);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: #0f172a;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.form-group select option {
    background-color: #ffffff;
    color: #0f172a;
}

/* Footer styling */
.footer {
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.6fr);
    gap: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0f172a;
}

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

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.03);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
