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

:root {
    --primary-brown: #7A5B2B;
    --dark-blue: #2A1A50;
    --accent-orange: #FF9933;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

/* Top Bar */
.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.75rem 0;
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.top-bar-link:hover {
    color: var(--accent-orange);
    transform: translateY(-1px);
}

.top-bar-icon {
    font-size: 1rem;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.sticky-with-topbar {
    top: 40px;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

nav {
    position: relative;
}

.mobile-menu-close {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

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

nav a:hover {
    color: var(--primary-brown);
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E6892A 100%);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    order: 2;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-brown) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Assets/solar-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42,26,80,0.65) 0%, rgba(122,91,43,0.65) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-left {
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-subtitle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.hero-subtitle-icon svg {
    width: 100%;
    height: 100%;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    font-size: 0.95rem;
}

.hero-feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero-feature::before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-right {
    position: relative;
}

/* Quote Form Styles */
.quote-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-height: 85vh;
    overflow-y: auto;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-left .trust-indicators {
    margin-top: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-left .trust-item {
    color: rgba(255, 255, 255, 0.95);
}

.trust-icon {
    font-size: 1.1rem;
    color: #22c55e;
    font-weight: bold;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.25rem;
    text-align: center;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-grey);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-grey);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--accent-orange);
    color: var(--white);
}

.progress-step.completed .step-number {
    background: #22c55e;
    color: var(--white);
}

.progress-step.completed .step-number::after {
    content: "✓";
    position: absolute;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--dark-blue);
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-label:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 153, 51, 0.05);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    font-size: 1rem;
    color: var(--text-dark);
    user-select: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    color: var(--accent-orange);
    font-weight: 600;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    color: var(--accent-orange);
    font-weight: 600;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: var(--accent-orange);
    background: rgba(255, 153, 51, 0.1);
}

.form-select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select:hover {
    border-color: var(--accent-orange);
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.form-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    font-family: inherit;
}

.form-input:hover {
    border-color: var(--accent-orange);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    padding: 0.25rem;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
    display: none;
}

.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

.form-textarea:hover {
    border-color: var(--accent-orange);
}

.form-textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

.form-textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-error {
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ef4444;
}

.checkbox-label-agreement {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label-agreement:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 153, 51, 0.05);
}

.checkbox-label-agreement input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-label-agreement input[type="checkbox"]:checked + span {
    color: var(--text-dark);
}

.checkbox-label-agreement:has(input[type="checkbox"]:checked) {
    border-color: var(--accent-orange);
    background: rgba(255, 153, 51, 0.1);
}

.privacy-link {
    color: #2563eb;
    text-decoration: underline;
    transition: var(--transition);
}

.privacy-link:hover {
    color: var(--accent-orange);
}

.form-submit-btn {
    flex: 1;
    padding: 1rem;
    background: #22c55e;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.form-submit-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-helper {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.5;
}

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

.form-group-half {
    margin-bottom: 1.5rem;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-back-btn {
    flex: 1;
    padding: 0.875rem;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--light-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-back-btn:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 153, 51, 0.05);
    color: var(--accent-orange);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-next-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E6892A 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-top: 0.5rem;
}

.form-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.intro-section {
    text-align: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out;
}

.intro-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(to bottom, var(--light-grey) 0%, var(--white) 100%);
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 4rem;
    font-weight: 700;
    position: relative;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    transform: scaleY(0);
    transition: var(--transition);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    color: var(--primary-brown);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Image Section */
.image-section {
    margin: 6rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42,26,80,0.1) 0%, rgba(122,91,43,0.1) 100%);
    pointer-events: none;
}

.image-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.image-section:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    margin: 6rem 0;
}

.services h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 4rem;
    font-weight: 700;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-item h3 {
    color: var(--primary-brown);
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: var(--light-grey);
    margin: 6rem 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image Gallery Section */
.image-gallery-section {
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-container h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Locations Section */
.locations-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-grey) 100%);
    margin: 6rem 0;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.locations-container h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.locations-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-item h3 {
    color: var(--primary-brown);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-item ul {
    list-style: none;
    padding: 0;
}

.location-item ul li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--light-grey);
    position: relative;
    padding-left: 1.5rem;
}

.location-item ul li:last-child {
    border-bottom: none;
}

.location-item ul li::before {
    content: "📍";
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--white);
    margin: 6rem 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-container h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--light-grey);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.testimonials-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.testimonials-link:hover {
    color: var(--primary-brown);
}

/* Battery Rebate Section */
.battery-rebate-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(42,26,80,0.05) 0%, rgba(122,91,43,0.05) 100%);
    margin: 0;
    position: relative;
    z-index: 2;
}

.rebate-container {
    max-width: 1400px;
    margin: 0 auto;
}

.rebate-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.rebate-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-brown) 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.rebate-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.rebate-subtitle {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.rebate-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.rebate-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rebate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.rebate-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid rgba(255, 153, 51, 0.3);
    position: relative;
    overflow: hidden;
}

.rebate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
}

.rebate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.rebate-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(122, 91, 43, 0.1) 100%);
    transition: var(--transition);
}

.rebate-card:nth-child(1) .rebate-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
}

.rebate-card:nth-child(2) .rebate-card-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.15) 100%);
}

.rebate-card:nth-child(3) .rebate-card-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 153, 51, 0.15) 100%);
}

.rebate-card:hover .rebate-card-icon {
    transform: scale(1.1);
}

.rebate-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.rebate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rebate-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.rebate-list li:last-child {
    border-bottom: none;
}

.rebate-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 51, 0.1);
    border-radius: 50%;
    font-size: 0.9rem;
}

.rebate-list li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.rebate-list ol,
ol.rebate-list {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.rebate-list ol li,
ol.rebate-list li {
    padding-left: 2.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    counter-increment: step-counter;
}

.rebate-list ol li::before,
ol.rebate-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.85rem;
}

.rebate-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 153, 51, 0.15);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    position: relative;
}

.rebate-discount-faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.rebate-discount-table {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.rebate-faq-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.rebate-faq-section h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.rebate-faq-section h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    border-radius: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 153, 51, 0.05);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

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

.rebate-discount-table h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.table-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.rebate-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.rebate-table thead {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-brown) 100%);
    color: var(--white);
}

.rebate-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.rebate-table tbody tr {
    border-bottom: 1px solid var(--light-grey);
    transition: var(--transition);
}

.rebate-table tbody tr:hover {
    background: rgba(255, 153, 51, 0.05);
}

.rebate-table tbody tr:last-child {
    border-bottom: none;
}

.rebate-table td {
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.rebate-table td.highlight {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.2rem;
}

.rebate-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.rebate-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(42,26,80,0.05) 0%, rgba(122,91,43,0.05) 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-orange);
}

.rebate-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.rebate-cta strong {
    color: var(--accent-orange);
    font-size: 1.3rem;
}

.rebate-link {
    display: inline-block;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--dark-blue);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.rebate-link:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* About Solar Picks Section */
.about-solarpicks-section {
    padding: 4rem 2rem;
    background: var(--white);
    margin: 0;
    position: relative;
    z-index: 2;
}

.about-solarpicks-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-solarpicks-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-solarpicks-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-solarpicks-main h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.about-solarpicks-main h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    border-radius: 2px;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-top: 2rem;
}

.about-email-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.about-email-link:hover {
    color: var(--primary-brown);
    border-bottom-color: var(--primary-brown);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.about-feature-card {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(122, 91, 43, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: var(--transition);
}

.about-feature-card:hover .about-feature-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.about-feature-icon svg {
    width: 40px;
    height: 40px;
}

.about-feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-feature-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--light-grey) 0%, var(--white) 100%);
    margin: 0;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works-container h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.how-it-works-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-orange) 5%, var(--accent-orange) 95%, transparent 100%);
    z-index: 0;
    transform: translateY(-50%);
    opacity: 0.3;
}

.steps-grid .step-card {
    position: relative;
    z-index: 1;
}

.steps-grid .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    opacity: 0.7;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 2px 8px rgba(255, 153, 51, 0.2);
    flex-shrink: 0;
}

.steps-grid .step-arrow:hover {
    opacity: 1;
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 153, 51, 0.4);
}

.steps-grid .step-arrow svg {
    width: 30px;
    height: 30px;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

.step-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-brown) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    margin: 6rem 0;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.benefits-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefits-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

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

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Footer Social */
.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    align-items: center;
}

.footer-social-icons .social-icon {
    color: var(--white);
    opacity: 0.85;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}

.footer-social-icons .social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-social-icons .social-icon:hover {
    opacity: 1;
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-brown) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    z-index: 2;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,153,51,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero-cta {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E6892A 100%);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 153, 51, 0.4);
}

.hero-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

.battery-reviews h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-grey);
    transition: var(--transition);
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    align-items: center;
}

.star {
    color: #FFD700;
    font-size: 1.25rem;
    line-height: 1;
}

.star.filled {
    color: #FFD700;
}

.star.half {
    background: linear-gradient(90deg, #FFD700 50%, #E0E0E0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.star.empty {
    color: #E0E0E0;
}

.rating-value {
    margin-left: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.battery-reviews {
    margin-top: 0;
}

.battery-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.battery-review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-grey);
    transition: var(--transition);
    text-align: left;
}

.battery-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.battery-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.battery-review-header h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin: 0;
}

.battery-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.battery-pros-cons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.battery-pros-cons .pros,
.battery-pros-cons .cons {
    font-size: 0.95rem;
    line-height: 1.6;
}

.battery-pros-cons .pros {
    color: var(--text-dark);
}

.battery-pros-cons .pros strong {
    color: #4CAF50;
}

.battery-pros-cons .cons {
    color: var(--text-dark);
}

.battery-pros-cons .cons strong {
    color: var(--accent-orange);
}

.reviews-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-grey);
}

/* Contact Forms Section */
.contact-forms-section {
    padding: 4rem 2rem;
    background: var(--light-grey);
    margin: 0;
    position: relative;
    z-index: 2;
}

.contact-forms-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-forms-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-forms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.contact-form-panel {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #E6892A 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-footer-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2rem;
    font-style: italic;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-orange);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.footer-section:first-child h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: var(--transition);
    opacity: 1;
}

.footer-bottom a:hover {
    opacity: 1;
    color: var(--white);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Responsive */
@media (max-width: 1024px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        padding-left: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 1000;
        align-items: flex-start;
        text-align: left;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-grey);
        text-align: left;
    }

    nav ul li a {
        text-align: left;
        justify-content: flex-start;
        display: block;
        width: 100%;
    }

    nav ul li a.cta-button {
        text-align: left;
        justify-content: flex-start;
        display: inline-block;
        width: auto;
    }

    nav a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        order: 2;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    nav {
        order: 3;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 968px) {
    .mobile-menu-close {
        display: flex;
        position: fixed;
        top: 90px;
        right: 1.5rem;
        z-index: 1001;
        background: var(--white);
        border: 2px solid var(--accent-orange);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        opacity: 0;
        pointer-events: none;
        box-shadow: var(--shadow-md);
    }

    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
        color: var(--accent-orange);
    }

    .mobile-menu-close:hover {
        background: var(--accent-orange);
        transform: scale(1.1);
    }

    .mobile-menu-close:hover svg {
        color: var(--white);
    }

    .mobile-menu-close.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-features {
        justify-content: center;
    }

    .quote-form-container {
        padding: 2rem;
    }

    .main-content {
        padding: 4rem 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .top-bar-container {
        padding: 0 1rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .top-bar-link {
        font-size: 0.85rem;
    }

    .header-container {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .quote-form-container {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .trust-indicators {
        font-size: 0.75rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-section {
        padding: 3rem 1rem;
    }

    .testimonial-card,
    .battery-review-card {
        padding: 1.5rem;
    }

    .battery-review-header h3 {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .battery-description {
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid .step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem auto;
    }

    .steps-grid .step-arrow:hover {
        transform: rotate(90deg) translateX(5px) scale(1.1);
    }

    .steps-grid::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .battery-rebate-section {
        padding: 4rem 1.5rem;
    }

    .rebate-cards {
        grid-template-columns: 1fr;
    }

    .rebate-discount-faq-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rebate-discount-table {
        padding: 2rem 1.5rem;
    }

    .rebate-faq-section {
        padding: 2rem 1.5rem;
    }

    .rebate-table {
        font-size: 0.9rem;
    }

    .rebate-table th,
    .rebate-table td {
        padding: 1rem 0.75rem;
    }

    .rebate-cta {
        padding: 1.5rem;
    }

    .about-solarpicks-section {
        padding: 4rem 1.5rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .battery-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .battery-review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-feature-card {
        padding: 2.5rem 2rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .form-buttons {
        flex-direction: column;
    }

    .form-back-btn,
    .form-next-btn {
        width: 100%;
    }

    .contact-forms-section {
        padding: 3rem 1.5rem;
    }

    .contact-forms-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
}

