/* Solar Star USA - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-red: #D0222A;
    --primary-blue: #2D5B92;
    --dark-grey: #333333;
    --light-bg-grey: #F7F7F7;
    --white: #FFFFFF;
    
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Montserrat', sans-serif;
    
    --header-height-desktop: 80px;
    --header-height-mobile: 60px;
    --header-height-small: 55px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-grey);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height-desktop);
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header.scrolled {
    height: 60px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-grey);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover {
    color: var(--primary-red);
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 48px;
    padding: 0 24px;
    background: var(--primary-red);
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-cta:hover {
    background: #b01c22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(208, 34, 42, 0.4);
}

.phone-number {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-grey);
}

.phone-number:hover {
    color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-grey);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height-mobile);
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 15px;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--primary-blue);
}

.mobile-call-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo img {
    height: 35px;
    width: auto;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(51, 51, 51, 0.95);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-out;
    padding: 80px 20px 40px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 30px;
    height: 30px;
}

.mobile-nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 24px;
    color: var(--white);
    padding: 15px 0;
    display: block;
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--primary-red);
}

.mobile-menu-cta {
    margin-top: 30px;
    width: 100%;
    max-width: 280px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height-desktop);
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    height: 56px;
    padding: 0 40px;
    background: var(--primary-red);
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.hero-cta:hover {
    background: #b01c22;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(208, 34, 42, 0.5);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 34, 42, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(208, 34, 42, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(208, 34, 42, 0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    background: var(--light-bg-grey);
    padding: 100px 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-bottom: 15px;
    font-family: var(--font-headings);
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.why-choose-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-grey);
}

.why-choose-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.partner-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partner-badge span {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-badge img {
    max-width: 200px;
    animation: float 3s ease-in-out infinite;
}

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

/* Process Section */
.process-section {
    background: var(--light-bg-grey);
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 40px;
    right: -20px;
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: bold;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 12px;
    font-family: var(--font-headings);
    font-weight: 600;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header h2 {
    font-size: 2.2rem;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.partners-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-width: 140px;
    height: auto;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg-grey);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars svg {
    width: 20px;
    height: 20px;
    fill: #FFD700;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-grey);
}

.testimonial-location {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--dark-grey);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-grey) 0%, #444 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: var(--font-headings);
}

.cta-section .phone-cta {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    display: block;
}

.cta-section .phone-cta:hover {
    color: var(--primary-red);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 56px;
    padding: 0 40px;
    background: var(--primary-red);
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #b01c22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 34, 42, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer h4 {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-contact a {
    color: #ccc;
}

.footer-contact a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height-desktop);
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

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

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-grey);
}

.story-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mission-section {
    background: var(--light-bg-grey);
    padding: 80px 0;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.mission-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-grey);
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Services Page Styles */
.services-list {
    padding: 80px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item:nth-child(even) .service-image {
    order: 2;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.service-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.service-features li svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-green);
    flex-shrink: 0;
}

.service-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-cta-section {
    background: var(--primary-blue);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.service-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 52px;
    padding: 0 35px;
    background: var(--primary-red);
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b01c22;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(208, 34, 42, 0.4);
}

.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-blue);
}

.contact-item-content h4 {
    font-size: 1.1rem;
    color: var(--dark-grey);
    margin-bottom: 5px;
}

.contact-item-content p,
.contact-item-content a {
    color: #666;
    font-size: 1rem;
}

.contact-item-content a:hover {
    color: var(--primary-blue);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* FAQ Page Styles */
.faq-page {
    padding: 80px 0;
}

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

.faq-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.faq-intro p {
    color: #666;
    font-size: 1.05rem;
}

.faq-contact-cta {
    text-align: center;
    padding: 50px;
    background: var(--light-bg-grey);
    border-radius: 12px;
    margin-top: 50px;
}

.faq-contact-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-grey);
}

.faq-contact-cta p {
    color: #666;
    margin-bottom: 25px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: var(--header-height-mobile);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .service-item,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) .service-image {
        order: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .page-hero {
        min-height: 40vh;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        min-width: 240px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-cta {
        animation: none;
    }
}
