@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --color-copper: #A0522D;
    --color-copper-dark: #8B4513;
    --color-dark-gray: #333333;
    --color-light-gray: #F8F8F8;
    --color-white: #FFFFFF;
    --color-slate: #708090;
    --color-border: #E0E0E0;
    --font-primary: 'Poppins', sans-serif;
    --transition-base: 0.3s ease;
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-card-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

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

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

.logo img {
    max-height: 60px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-copper);
    margin-left: 10px;
}

.nav-desktop {
    display: none;
}

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

.nav-desktop a {
    font-weight: 500;
    color: var(--color-dark-gray);
    transition: var(--transition-base);
    position: relative;
}

.nav-desktop a:hover {
    color: var(--color-copper);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-copper);
    transition: var(--transition-base);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 600;
    color: var(--color-dark-gray);
    transition: var(--transition-base);
}

.phone-link:hover {
    color: var(--color-copper);
}

/* Mobile Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-dark-gray);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

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

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-dark-gray);
    z-index: 999;
    transition: var(--transition-base);
    padding: 80px 30px 30px;
    overflow-y: auto;
}

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

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    margin-bottom: 30px;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    transition: var(--transition-base);
}

.mobile-nav a:hover {
    color: var(--color-copper);
}

.mobile-nav-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.mobile-nav-phone {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
}

.mobile-nav-phone:hover {
    color: var(--color-copper);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-copper);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-copper-dark);
    transform: scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-copper);
    border: 2px solid var(--color-copper);
}

.btn-secondary:hover {
    background: var(--color-copper);
    color: var(--color-white);
}

.btn-mobile-quote {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-copper);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 5px;
    margin-top: 15px;
    transition: var(--transition-base);
}

.btn-mobile-quote:hover {
    background: var(--color-copper-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--color-light-gray);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-content .btn {
    margin-top: 10px;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
}

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

.section-subtitle {
    text-align: center;
    color: var(--color-slate);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
}

/* Services Section */
.services-section {
    background: var(--color-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-base);
}

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

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark-gray);
}

.service-card p {
    color: var(--color-slate);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-card a {
    color: var(--color-copper);
    font-weight: 500;
    transition: var(--transition-base);
}

.service-card a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    background: var(--color-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: 30px;
}

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

.why-choose-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-copper);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
}

.why-choose-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark-gray);
}

.why-choose-item p {
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--color-light-gray);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .client-name {
    font-weight: 600;
    color: var(--color-copper);
    margin-bottom: 5px;
}

.testimonial-card .client-title {
    font-size: 0.9rem;
    color: var(--color-slate);
}

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

.testimonial-nav button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-copper);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover,
.testimonial-nav button.active {
    background: var(--color-copper);
    color: var(--color-white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dots .dot.active {
    background: var(--color-copper);
}

/* CTA Section */
.cta-section {
    background: var(--color-copper);
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
}

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

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

.cta-section .btn {
    background: var(--color-white);
    color: var(--color-copper);
}

.cta-section .btn:hover {
    background: var(--color-light-gray);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--color-slate);
    font-size: 0.95rem;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

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

.footer-nav a {
    color: var(--color-slate);
    transition: var(--transition-base);
}

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

.footer-contact p {
    color: var(--color-slate);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--color-slate);
    transition: var(--transition-base);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate);
    transition: var(--transition-base);
}

.social-icons a:hover {
    background: var(--color-copper);
    border-color: var(--color-copper);
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

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

.trust-badges img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition-base);
}

.trust-badges img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom p {
    color: var(--color-slate);
    font-size: 0.9rem;
}

.footer-bottom .legal-links {
    margin-top: 10px;
}

.footer-bottom .legal-links a {
    color: var(--color-slate);
    font-size: 0.85rem;
    margin: 0 10px;
    transition: var(--transition-base);
}

.footer-bottom .legal-links a:hover {
    color: var(--color-copper);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-copper);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
    box-shadow: var(--shadow-card);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-copper-dark);
    transform: translateY(-3px);
}

/* Page Hero (for inner pages) */
.page-hero {
    min-height: 40vh;
}

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

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

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

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark-gray);
}

.service-detail-content p {
    color: var(--color-slate);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-detail-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--color-dark-gray);
}

.service-detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--color-copper);
    border-radius: 50%;
}

.process-section {
    background: var(--color-light-gray);
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark-gray);
}

.process-step p {
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* Projects Page Styles */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 0 20px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-dark-gray);
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-copper);
    border-color: var(--color-copper);
    color: var(--color-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.project-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-card p {
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

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

.story-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: 20px;
}

.values-section {
    background: var(--color-light-gray);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
}

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

.value-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--color-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark-gray);
}

.value-card p {
    color: var(--color-slate);
    font-size: 0.95rem;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--color-copper);
}

.team-member h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--color-slate);
    font-size: 0.95rem;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    text-align: center;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark-gray);
}

.contact-info-item p {
    color: var(--color-slate);
    margin-bottom: 5px;
}

.contact-info-item a {
    color: var(--color-copper);
    transition: var(--transition-base);
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--color-light-gray);
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: var(--color-dark-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-copper);
}

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

.contact-form .btn {
    width: 100%;
}

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

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

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

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
