/* Electra Surge - Historic House Renovation - Dark Modern Theme */
/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e1e5e9;
    background-color: #0a0e13;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

a:hover {
    color: #ff6b66;
    text-decoration: underline;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.section-dark {
    background-color: #151b22;
}

.section-gray {
    background-color: #1a1f26;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
    fill: #ff524d;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background-color: #ff524d;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 82, 77, 0.3);
    text-decoration: none;
}

.btn-secondary {
    background-color: #374151;
    color: #ffffff !important;
}

.btn-secondary:hover {
    background-color: #4b5563;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: #ff524d;
    border-color: #ff524d;
}

.btn-outline:hover {
    background-color: #ff524d;
    color: #ffffff;
    text-decoration: none;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 14, 19, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f2937;
    transition: all 0.3s ease;
}

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

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

.logo {
    width: 40px;
    height: 40px;
    fill: #ff524d;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e1e5e9;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff524d;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff524d;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f26 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 1;
}

.hero-svg {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff524d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f26 100%);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    fill: #ff524d;
}

/* Cards */
.benefit-card,
.package-card,
.achievement-card,
.review-card,
.service-card,
.value-card,
.team-member,
.contact-info-card,
.social-card,
.resource-card {
    background-color: #1a1f26;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover,
.package-card:hover,
.service-card:hover,
.value-card:hover,
.team-member:hover,
.contact-info-card:hover,
.social-card:hover,
.resource-card:hover {
    transform: translateY(-5px);
    border-color: #ff524d;
    box-shadow: 0 10px 30px rgba(255, 82, 77, 0.1);
}

.benefit-icon,
.value-icon,
.service-icon,
.contact-icon,
.social-icon,
.resource-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    fill: #ff524d;
}

/* Package Cards */
.package-featured {
    position: relative;
    border-color: #ff524d;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff524d;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff524d;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Achievement Cards */
.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff524d;
    text-align: center;
    margin-bottom: 0.5rem;
}

.achievement-label {
    text-align: center;
    color: #9ca3af;
    font-weight: 500;
}

/* Review Cards */
.review-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #d1d5db;
}

.review-author {
    color: #9ca3af;
    font-weight: 600;
}

/* Service Cards */
.service-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.rating-stars {
    color: #fbbf24;
}

.rating-text {
    color: #9ca3af;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.25rem 0;
    color: #d1d5db;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff524d;
    text-align: center;
    margin: 1.5rem 0;
}

.service-btn {
    margin-top: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d1d5db;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #374151;
    border-radius: 8px;
    background-color: #1a1f26;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff524d;
    box-shadow: 0 0 0 3px rgba(255, 82, 77, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #374151;
    border-radius: 4px;
    background-color: #1a1f26;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

form input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .checkbox-custom {
    background-color: #ff524d;
    border-color: #ff524d;
}

input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.form-note {
    font-size: 0.9rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 1rem;
}

/* Contact Forms */
.contact-form,
.subscription-form,
.newsletter-form {
    background-color: #1a1f26;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #374151;
}

.subscription-card {
    background-color: #1a1f26;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #374151;
}

.contact-form-main {
    max-width: 800px;
    margin: 0 auto;
}

/* Q&A Section */
.qa-grid {
    display: grid;
    gap: 2rem;
}

.qa-item {
    background-color: #1a1f26;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #374151;
}

.qa-question {
    color: #ff524d;
    margin-bottom: 1rem;
}

.qa-answer {
    color: #d1d5db;
    line-height: 1.6;
}

/* Team Members */
.member-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    fill: #ff524d;
}

.member-role {
    color: #ff524d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background-color: #374151;
    color: #d1d5db;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ff524d;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: #ff524d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content h3 {
    color: #ff524d;
    margin-bottom: 0.5rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #ff524d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-content p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: transparent;
    color: #9ca3af;
    border: 2px solid #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #ff524d;
    color: #ffffff;
    border-color: #ff524d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Contact Information */
.contact-info {
    background-color: #1a1f26;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #374151;
    margin: 1rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #ff524d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
}

.office-hours {
    margin: 1rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #374151;
}

.emergency-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #7f1d1d;
    border-radius: 8px;
}

.emergency-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff524d;
}

/* Footer */
.footer {
    background-color: #151b22;
    border-top: 1px solid #374151;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff524d;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #6b7280;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #1a1f26;
    border-top: 1px solid #374151;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal-content {
    background-color: #1a1f26;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
}

.cookie-option {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    background-color: #0a0e13;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    color: #9ca3af;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1f26;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #ff524d;
    border-bottom: 2px solid #ff524d;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #ffffff;
    margin: 1.5rem 0 1rem;
}

.legal-section ul,
.legal-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.company-info {
    background-color: #151b22;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff524d;
    margin: 1rem 0;
}

/* Cookie Tables */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #374151;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #374151;
}

.cookie-table th {
    background-color: #374151;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    color: #d1d5db;
}

.cookie-controls {
    margin: 1.5rem 0;
    text-align: center;
}

/* Thank You Page */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    fill: #10b981;
    margin-bottom: 2rem;
}

.thank-you-title {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.steps-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    background-color: #1a1f26;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #374151;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #ff524d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ff524d;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #d1d5db;
    margin: 0;
}

.contact-reminder {
    background-color: #1a1f26;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #374151;
    margin: 2rem 0;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff524d;
    font-weight: bold;
}

.feature-image,
.hero-svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Highlight Boxes */
.highlight-box {
    background-color: #151b22;
    border-left: 4px solid #ff524d;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #ff524d;
    margin-bottom: 1rem;
}

/* Quick Contact */
.quick-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1a1f26;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #374151;
    gap: 2rem;
}

.quick-contact-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Map Section */
.map-section {
    text-align: center;
    margin: 2rem 0;
}

.map-placeholder {
    background-color: #1a1f26;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 3rem;
    margin-top: 2rem;
}

.map-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.map-icon {
    width: 40px;
    height: 40px;
    fill: #ff524d;
}

.map-directions {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.map-directions p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

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

.certification-item {
    background-color: #1a1f26;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.cert-icon {
    width: 60px;
    height: 60px;
    fill: #ff524d;
    margin-bottom: 1rem;
}

/* Info Lists */
.info-list {
    display: grid;
    gap: 1rem;
}

.info-item {
    background-color: #151b22;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #ff524d;
}

/* CTA Sections */
.cta-services,
.contact-cta,
.newsletter-section {
    background-color: #1a1f26;
    border: 1px solid #374151;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.newsletter-inputs {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.newsletter-inputs input {
    flex: 1;
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    color: #ff524d;
    font-weight: 600;
}
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #0a0e13;
        border-top: 1px solid #374151;
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section {
        padding: 3rem 0;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .package-featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .services-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .newsletter-inputs {
        flex-direction: column;
        max-width: 100%;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-year {
        left: -1.5rem;
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    .social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .benefit-card,
    .package-card,
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.3rem;
    }
    .cta-services, .contact-cta, .newsletter-section {
        padding: 3rem 1rem;
    }
    .legal-page {
        word-break: break-word;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #ff524d;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
