:root {
    --primary-green: #0f6858;
    --accent-green: #9bceb5;
    --light-green: #c5e0d8;
    --cta-orange: #ee9e58;
    --cream: #f8f6f3;
    --warm-white: #fefefe;
    --charcoal: #2a2a2a;
    --soft-gray: #666;
    --border-light: #e0ddd8;
}

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

body {
    font-family: "Lexend", sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--warm-white);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s ease;
}

header.scrolled {
    background: var(--primary-green);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

header.scrolled .nav-links a {
    color: white;
}

header.scrolled .nav-links a:not(.contact-pill):hover {
    color: var(--accent-green);
}

header.scrolled .nav-links a:not(.contact-pill)::after {
    background: var(--accent-green);
}

header.scrolled .contact-pill:hover {
    background: white;
    color: var(--cta-orange);
    border-color: white;
}

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

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

.logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.contact-pill)::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cta-orange);
    transition: width 0.3s ease;
}

.nav-links a:not(.contact-pill):hover {
    color: var(--cta-orange);
}

.nav-links a:not(.contact-pill):hover::after {
    width: 100%;
}

.contact-pill {
    padding: 0.6rem 1.5rem;
    background: var(--cta-orange);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--cta-orange);
}

.contact-pill:hover {
    background: white;
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

/* Hero Section */
.hero {
    margin-top: 0;
    height: 100vh;
    background:
        linear-gradient(
            135deg,
            rgba(15, 104, 88, 0.7) 0%,
            rgba(18, 122, 103, 0.7) 100%
        ),
        url("../images/hero-image.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-small {
    height: 33vh;
    min-height: 300px;
    padding-bottom: 60px;
}

.hero-small .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-small .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--warm-white);
    clip-path: ellipse(100% 100% at 50% 100%);
}

.hero-small::after {
    height: 80px;
}

@media (max-width: 768px) {
    .hero::after {
        height: 80px;
        clip-path: ellipse(150% 100% at 50% 100%);
    }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            circle at 20% 50%,
            rgba(155, 206, 181, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 255, 255, 0.03) 0%,
            transparent 50%
        );
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-family: "Lexend", sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--cta-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--cta-orange);
}

.cta-button:hover {
    background: white;
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

/* Intro Section */
.intro {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

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

.intro-content {
    text-align: left;
}

.intro h2 {
    font-family: "Lexend", sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.intro p:last-of-type {
    margin-bottom: 3rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 48px;
    box-shadow: 0 10px 40px rgba(15, 104, 88, 0.15);
}

.intro-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.intro-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.intro-button.primary {
    background: var(--cta-orange);
    color: white;
    border: 2px solid var(--cta-orange);
}

.intro-button.primary:hover {
    background: white;
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

.intro-button.secondary {
    background: transparent;
    color: var(--soft-gray);
    border: 2px solid var(--border-light);
}

.intro-button.secondary:hover {
    border-color: var(--cta-orange);
    color: var(--cta-orange);
}

/* Services Section */
.services {
    padding: 8rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: "Lexend", sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    padding: 3rem 2rem;
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 48px;
    transition: border-width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-width: 4px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

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

.service-card h3 {
    font-family: "Lexend", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--soft-gray);
    line-height: 1.8;
}

/* Garden Design Section */
.garden-design {
    padding: 24rem 5%;
    background: #e8f4f0;
    position: relative;
    overflow: hidden;
}

.garden-design::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--warm-white);
    clip-path: ellipse(100% 100% at 50% 0%);
}

.garden-design::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--cream);
    clip-path: ellipse(100% 100% at 50% 100%);
}

.garden-design-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.garden-design-content {
    order: 2;
}

.garden-design-content h2 {
    font-family: "Lexend", sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.garden-design-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
}

.garden-design-content p:last-of-type {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

.garden-design-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.design-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: var(--cta-orange);
    color: white;
    border: 2px solid var(--cta-orange);
}

.design-button:hover {
    background: white;
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

.design-button.secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.design-button.secondary:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.garden-design-image {
    position: relative;
    order: 1;
}

.garden-design-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 48px;
    box-shadow: 0 10px 40px rgba(15, 104, 88, 0.15);
}

@media (max-width: 968px) {
    .garden-design-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .garden-design-content {
        order: 1;
    }

    .garden-design-image {
        order: 2;
    }

    .garden-design-content h2 {
        font-size: 2.2rem;
    }

    .garden-design-buttons {
        justify-content: center;
    }
}

/* Design Process Section */
.design-process {
    padding: 8rem 5%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.design-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-image: url("../contour-lines.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.design-process .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.design-process h2 {
    font-family: "Lexend", sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-content h3 {
    font-family: "Lexend", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.step-content h3::before {
    content: attr(data-number) ". ";
    color: var(--primary-green);
    font-weight: 600;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--soft-gray);
    max-width: 100%;
}

.back-link {
    text-align: center;
    margin-top: 4rem;
}

.back-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--cta-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--cta-orange);
}

.back-button:hover {
    background: white;
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

@media (max-width: 768px) {
    .process-step {
        gap: 0.75rem;
    }

    .step-content h3 {
        font-size: 1.4rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}

/* Gallery Section */
.gallery {
    padding: 8rem 5%;
    background: var(--cream);
}

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

.carousel-container {
    position: relative;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.carousel-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 104, 88, 0.2);
}

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

.carousel-image img.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-green);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--accent-green);
}

.gallery-link {
    text-align: center;
    margin-top: 3rem;
}

.gallery-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--cta-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--cta-orange);
}

.gallery-button:hover {
    background: white;
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 5%;
    background: var(--warm-white);
}

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

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

.testimonial-card {
    background: transparent;
    padding: 2.5rem;
    border-left: 4px solid var(--accent-green);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: "Lexend", sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-green);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--soft-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95rem;
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--soft-gray);
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--cream);
    padding: 4rem;
    border: 0px solid var(--border-light);
    border-radius: 48px;
    margin-top: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 2rem;
    border: 0px solid var(--border-light);
    border-radius: 12px;
    background: white;
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(155, 206, 181, 0.2);
}

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

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.submit-button:hover {
    background: #127a67;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 104, 88, 0.3);
}

/* Footer */
footer {
    background: var(--primary-green);
    color: white;
    padding: 4rem 5% 2rem 5%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: "Lexend", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.footer-section:nth-child(2) {
    text-align: center;
}

.footer-section.contact-info {
    text-align: right;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-link:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-green);
}

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

footer p {
    opacity: 0.85;
    font-size: 0.9rem;
}

/* Responsive */

/* Tablet styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .intro h2,
    .garden-design-content h2 {
        font-size: 2.2rem;
    }

    .garden-design-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .garden-design-content {
        order: 1;
        text-align: center;
    }

    .garden-design-image {
        order: 2;
    }

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

/* Mobile styles */
@media (max-width: 768px) {
    /* Mobile menu */
    .mobile-menu-toggle {
        display: flex;
    }

    header.scrolled .mobile-menu-toggle span {
        background: white;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--primary-green);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

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

    .nav-links a {
        color: white;
        font-size: 1.2rem;
    }

    .nav-links a:not(.contact-pill)::after {
        background: var(--accent-green);
    }

    .contact-pill {
        background: var(--cta-orange);
        color: white;
    }

    .contact-pill:hover {
        background: white;
        color: var(--cta-orange);
    }

    /* Logo scaling */
    .logo img {
        height: 32px;
    }

    /* Hero */
    .hero {
        height: 80vh;
        min-height: 600px;
    }

    .hero-small {
        height: 25vh;
        min-height: 250px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-small .hero-content p {
        font-size: 1rem;
    }

    /* Intro */
    .intro-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-content {
        text-align: center;
    }

    .intro h2 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .intro-buttons {
        flex-direction: column;
        align-items: center;
    }

    .intro-button {
        width: 100%;
        max-width: 300px;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Services, Gallery, Contact, Testimonials */
    .services,
    .gallery,
    .contact,
    .testimonials {
        padding: 4rem 5%;
    }

    /* Garden Design */
    .garden-design {
        padding: 8rem 5%;
    }

    .garden-design::before,
    .garden-design::after {
        height: 80px;
        clip-path: ellipse(150% 100% at 50% 0%);
    }

    .garden-design::after {
        clip-path: ellipse(150% 100% at 50% 100%);
    }

    .garden-design-container {
        grid-template-columns: 1fr;
    }

    .garden-design-content h2 {
        font-size: 2rem;
    }

    .garden-design-content p {
        font-size: 1rem;
    }

    /* Design Process */
    .design-process {
        padding: 4rem 5%;
    }

    /* Contact */
    .contact-form {
        padding: 2rem;
    }

    /* Grids */
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .intro h2,
    .garden-design-content h2,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        width: 85%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
