/* ========================================
   Sun Coast Energy - Main Stylesheet
   ======================================== */

/* CSS Variables - Brand Colors */
:root {
    --color-white: #FFFFFF;
    --color-light-gray: #F8F8F8;
    --color-charcoal: #333333;
    --color-golden-yellow: #FDB813;
    --color-bright-red: #ED1C24;
    --color-deep-navy: #20335D;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-deep-navy);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-golden-yellow);
    margin: 15px auto 0;
}

/* Primary CTA Button */
.primary-cta {
    display: inline-block;
    background-color: var(--color-golden-yellow);
    color: var(--color-charcoal);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-cta:hover {
    background-color: #e5a811;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 184, 19, 0.3);
}

.primary-cta:active {
    transform: translateY(0);
}

/* Secondary CTA */
.secondary-cta {
    display: inline-block;
    background-color: var(--color-deep-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 5px;
    transition: all var(--transition-fast);
}

.secondary-cta:hover {
    background-color: #1a2847;
    transform: translateY(-2px);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

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

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

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

.logo-mobile {
    display: none;
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-deep-navy);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-golden-yellow);
    transition: width var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--color-deep-navy);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-deep-navy);
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--color-deep-navy);
    left: 0;
    transition: all var(--transition-medium);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-toggle.active .hamburger {
    background: transparent;
}

.mobile-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/assets_hero_background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(32, 51, 93, 0.85) 0%, rgba(32, 51, 93, 0.6) 100%);
}

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

.hero h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.trust-element {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-golden-yellow);
}

.location {
    font-size: 1rem;
    opacity: 0.9;
}

/* Hero CTA Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(253, 184, 19, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--color-light-gray);
}

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

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-deep-navy);
    border-radius: 50%;
    color: var(--color-golden-yellow);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

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

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--color-golden-yellow);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    padding: 100px 0;
    background: var(--color-light-gray);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-fast);
}

.process-icon:hover {
    transform: scale(1.05);
}

.process-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

.process-connector {
    width: 80px;
    height: 3px;
    background: var(--color-golden-yellow);
    margin-top: 60px;
    flex-shrink: 0;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--color-white);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.trust-badge {
    padding: 15px 30px;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.trust-badge:hover {
    border-color: var(--color-golden-yellow);
    box-shadow: 0 0 15px rgba(253, 184, 19, 0.3);
}

.badge-placeholder {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-deep-navy);
    font-size: 0.9rem;
}

/* Testimonial Carousel */
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-golden-yellow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-slide blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-slide cite {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-deep-navy);
    font-style: normal;
}

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

.testimonial-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-btn.active {
    background: var(--color-golden-yellow);
    transform: scale(1.2);
}

/* ========================================
   Blog Preview Section
   ======================================== */
.blog-preview {
    padding: 100px 0;
    background: var(--color-light-gray);
}

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

.blog-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-fast);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--color-deep-navy);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--color-golden-yellow);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 40px;
}

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

.contact-form label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-deep-navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--color-white);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-deep-navy);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--color-golden-yellow);
}

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

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--color-golden-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   Page Header (Inner Pages)
   ======================================== */
.page-header {
    background: var(--color-deep-navy);
    color: var(--color-white);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========================================
   About Page
   ======================================== */
.about-page {
    padding: 80px 0;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image-large img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    margin-bottom: 10px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--color-deep-navy);
    font-weight: 500;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.values-list li strong {
    color: var(--color-deep-navy);
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--color-light-gray);
}

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

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-deep-navy);
    border-radius: 50%;
    color: var(--color-golden-yellow);
}

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

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--color-white);
}

.trust-badges-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge-large {
    padding: 25px 40px;
    border: 2px solid var(--color-light-gray);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.trust-badge-large:hover {
    border-color: var(--color-golden-yellow);
    box-shadow: 0 0 20px rgba(253, 184, 19, 0.3);
}

.badge-placeholder-large {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-deep-navy);
    font-size: 1rem;
}

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

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 15px;
}

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

/* ========================================
   Services Page
   ======================================== */
.services-detail {
    padding: 80px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-item.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-item.reverse .service-content {
    order: -1;
}

.service-icon-large {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-deep-navy);
    border-radius: 50%;
    color: var(--color-golden-yellow);
}

.service-icon-large svg {
    width: 60px;
    height: 60px;
}

.service-content h2 {
    margin-bottom: 20px;
}

.service-content > p {
    color: #555;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-golden-yellow);
    font-weight: bold;
}

/* ========================================
   FAQs Page
   ======================================== */
.faqs-section {
    padding: 80px 0;
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-deep-navy);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-golden-yellow);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-golden-yellow);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

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

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

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    padding: 80px 0;
}

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

.contact-form-section h2 {
    margin-bottom: 10px;
}

.contact-form-section > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card,
.hours-card,
.trust-card {
    background: var(--color-light-gray);
    padding: 30px;
    border-radius: 10px;
}

.contact-card h3,
.hours-card h3,
.trust-card h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-deep-navy);
    border-radius: 50%;
    color: var(--color-golden-yellow);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-method h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-method p {
    color: #555;
    font-size: 0.9rem;
}

.contact-method a {
    color: var(--color-deep-navy);
}

.contact-method a:hover {
    color: var(--color-golden-yellow);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
}

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

.emergency-note {
    margin-top: 15px;
    padding: 10px;
    background: var(--color-deep-navy);
    color: var(--color-white);
    text-align: center;
    border-radius: 5px;
    font-size: 0.9rem;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-golden-yellow);
    font-weight: bold;
}

.map-section {
    padding: 0 0 80px;
}

.map-placeholder {
    background: var(--color-light-gray);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
}

.map-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-deep-navy);
    margin-bottom: 10px;
}

.map-placeholder span {
    color: #666;
    font-size: 1rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-medium);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid,
    .blog-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-container,
    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-badges-large {
        gap: 15px;
    }
    
    .trust-badge-large {
        padding: 15px 25px;
    }
    
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-content ul {
        text-align: left;
        display: inline-block;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* ========================================
   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 {
        background-attachment: scroll;
    }
    
    .pulse-animation {
        animation: none;
    }
}
