/* Base Styles */
:root {
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --primary-gradient: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    --secondary-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --white: #fff;
    --black: #000;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --gray-dark: #343a40;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.section {
    padding: 10rem 0;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-line {
    width: 6rem;
    height: 3px;
    background: var(--primary-gradient);
    margin: 0 auto;
    border-radius: 3px;
}

.bg-light {
    background-color: var(--gray-light);
}

.lead {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    color: var(--white);
}

.btn:active {
    transform: translateY(-1px);
}

.btn i {
    margin-left: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-dark);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    border: 2px solid var(--primary-color);
    color: var(--white);
}

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

.btn-light:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-sm {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
}

.btn-full {
    width: 100%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 5rem;
    height: 5rem;
    border: 3px solid var(--gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    height: 200px; /* Increased to 3x the previous size */
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
    max-width: none; /* Remove any max-width constraints */
}

.logo-light {
    opacity: 1;
}

.logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#header.scrolled .logo-light {
    opacity: 0;
}

#header.scrolled .logo-dark {
    opacity: 1;
}

.logo-text {
    color: inherit;
}

.logo-accent {
    color: var(--primary-light);
    margin-left: 0.5rem;
}

#header.scrolled .logo a {
    color: var(--gray-dark);
}

#header.scrolled .logo {
    height: 150px; /* Make logo smaller when scrolled */
    transition: height 0.3s ease;
    
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu li {
    margin-left: 3rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1.6rem;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

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

#header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-cta {
    margin-left: 2rem;
}

.nav-cta .big-btn{
    font-size: 2rem;
    padding: 1.2rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 6px 0;
    background-color: var(--white);
    transition: all 0.3s ease;
}

#header.scrolled .mobile-menu-toggle span {
    background-color: var(--primary-color);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 2rem;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.6) 0%, rgba(76, 175, 80, 0.5) 100%);
    z-index: 1;
}

.parallax-section {
    background-attachment: fixed;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    gap: 3rem;
    overflow: hidden;
    padding-top: 2rem;
}

.hero-left {
    flex: 1 1 40%;
    max-width: 50rem;
}

.hero-right {
    flex: 1.3 1 60%;
    min-width: 320px;
    max-width: 500px;
    overflow: hidden;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-subtitle {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.hero-scroll {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.mouse {
    width: 3rem;
    height: 5rem;
    border: 2px solid var(--white);
    border-radius: 2rem;
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.wheel {
    width: 0.6rem;
    height: 0.6rem;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 2s ease infinite;
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(2rem);
    }
}

.scroll-text {
    color: var(--white);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-wave {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
    display: none;
}

/* Hero Form Styles */
.hero-right .contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-right .form-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.hero-right .form-card h3 {
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.hero-right .form-group {
    margin-bottom: 2.5rem;
}

.hero-right .form-group input,
.hero-right .form-group select,
.hero-right .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem 1.2rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

.hero-right .form-group input:focus,
.hero-right .form-group select:focus,
.hero-right .form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.hero-right .form-group label {
    position: absolute;
    top: 1.5rem;
    left: 1.2rem;
    font-size: 1.4rem;
    color: var(--text-lighter);
    pointer-events: none;
    transition: var(--transition);
    background: transparent;
}

.hero-right .form-group input:focus ~ label,
.hero-right .form-group select:focus ~ label,
.hero-right .form-group textarea:focus ~ label,
.hero-right .form-group input:not(:placeholder-shown) ~ label,
.hero-right .form-group select:not([value=""]) ~ label,
.hero-right .form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.8rem;
    left: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    padding: 0 0.5rem;
    z-index: 10;
}

/* Ensure form inputs are properly sized on mobile */
.hero-right .form-group input,
.hero-right .form-group select,
.hero-right .form-group textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.hero-right .form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

/* Honeypot field styling */
.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

.hero-right .btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.hero-right .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-gradient);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 7rem;
    height: 7rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    gap: 5rem;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about-text h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.about-text .lead {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 2rem;
}

.feature span {
    font-size: 1.6rem;
    color: var(--text-color);
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: -1;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 7rem;
    height: 7rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.highlight-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-gradient);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.highlight-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow);
}

.highlight-card:hover::before {
    height: 100%;
}

.highlight-icon {
    width: 8rem;
    height: 8rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3.2rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.highlight-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* CTA Section */
#cta {
    padding: 0;
}

.cta-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    padding: 10rem 0;
}

.cta-content {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3.6rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* Testimonials Section */
.testimonials-container {
    max-width: 90rem;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-slide {
    padding: 1rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 2rem;
    left: 3rem;
    color: var(--primary-light);
    opacity: 0.2;
    font-size: 3rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
    border: 3px solid var(--primary-light);
}

.author-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.rating {
    color: #ffc107;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 2rem;
}

.testimonial-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--gray);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.5);
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 30rem;
}

.contact-card,
.form-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-card h3,
.form-card h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 5rem;
    height: 5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-links a {
    width: 4rem;
    height: 4rem;
    background-color: var(--gray-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* Form Styles */
.form-group {
    position: relative;
    margin-bottom: 3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 0;
    font-size: 1.6rem;
    border: none;
    border-bottom: 1px solid var(--gray);
    background-color: transparent;
    outline: none;
    transition: var(--transition);
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 0;
    font-size: 1.6rem;
    color: var(--text-lighter);
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group select:not([value=""]),
.form-group textarea:not(:placeholder-shown) {
    border-bottom-color: var(--primary-color);
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:not([value=""]) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -2rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.form-group input:focus ~ .form-border,
.form-group select:focus ~ .form-border,
.form-group textarea:focus ~ .form-border {
    width: 100%;
}

/* Map Section */
.section-map {
    padding: 0;
}

.map-container {
    height: 45rem;
    width: 100%;
}

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

/* Footer */
#footer {
    background-color: var(--gray-dark);
    color: var(--white);
    position: relative;
}

.footer-top {
    padding: 8rem 0 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
}

.footer-about {
    max-width: 30rem;
    margin-top: -5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 1.5rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 5rem 0 0 5rem;
    font-size: 1.4rem;
}

.newsletter-form button {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 0 2rem;
    border-radius: 0 5rem 5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

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

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

.back-to-top {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
}

.back-to-top a {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.back-to-top a:hover {
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .logo {
        height: 180px;
    }

    #header.scrolled .logo {
        height: 100px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .logo {
        height: 160px;
    }

    #header.scrolled .logo {
        height: 90px;
    }

    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide regular nav menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        padding: 120px 30px 30px;
        flex-direction: column;
        gap: 2rem;
        transition: 0.4s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

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

    .nav-link {
        color: var(--text-color);
        font-size: 1.8rem;
        width: 100%;
        padding: 1rem 0;
    }

    .nav-cta {
        width: 100%;
        margin-top: 2rem;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }

    /* Hamburger menu animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

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

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .about-content {
        flex-direction: column;
        gap: 4rem;
    }

    .about-image, .about-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .logo {
        height: 140px;
    }

    #header.scrolled .logo {
        height: 80px;
    }

    /* Hero Section Responsive */
    #hero {
        min-height: 100vh;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        margin-top: 10rem;
    }

    .hero-left {
        flex: none;
        max-width: 100%;
        order: 1;
    }

    .hero-right {
        flex: none;
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .hero-title {
        font-size: 5rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-scroll {
        bottom: 2rem;
        display: none;
    }

    .hero-scroll .mouse {
        width: 2.5rem;
        height: 4rem;
    }

    .hero-scroll .wheel {
        width: 0.5rem;
        height: 0.5rem;
    }

    .scroll-text {
        font-size: 1rem;
    }

    /* Hero Form Mobile Styles */
    .hero-right .contact-form {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .hero-right .form-card h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

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

    .hero-right .form-group input,
    .hero-right .form-group select,
    .hero-right .form-group textarea {
        padding: 1.2rem 1rem;
        font-size: 1.6rem;
    }

    .hero-right .form-group label {
        top: 1.2rem;
        left: 1rem;
        font-size: 1.6rem;
    }

    .hero-right .form-group input:focus ~ label,
    .hero-right .form-group select:focus ~ label,
    .hero-right .form-group textarea:focus ~ label,
    .hero-right .form-group input:not(:placeholder-shown) ~ label,
    .hero-right .form-group select:not([value=""]) ~ label,
    .hero-right .form-group textarea:not(:placeholder-shown) ~ label {
        top: -0.6rem;
        left: 0.8rem;
        font-size: 1.2rem;
    }

    .hero-right .btn-primary {
        padding: 1.2rem 1.5rem;
        font-size: 1.6rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service Highlights Mobile */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-card {
        padding: 2.5rem;
    }

    .highlight-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.4rem;
    }

    .highlight-card h3 {
        font-size: 1.8rem;
    }

    .highlight-card p {
        font-size: 1.4rem;
    }

    
}

/* Tablet Responsive Styles */
@media (max-width: 991px) and (min-width: 769px) {
    /* Hero Section Tablet */
    #hero {
        min-height: 90vh;
        padding-top: 7rem;
    }

    .hero-content {
        gap: 2.5rem;
    }

    .hero-left {
        flex: 1;
        max-width: 45%;
    }

    .hero-right {
        flex: 1;
        max-width: 55%;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .hero-subtitle {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Hero Form Tablet */
    .hero-right .contact-form {
        padding: 2.5rem;
    }

    .hero-right .form-card h3 {
        font-size: 2rem;
    }

    .hero-right .form-group {
        margin-bottom: 2.2rem;
    }

    .hero-right .form-group input,
    .hero-right .form-group select,
    .hero-right .form-group textarea {
        padding: 1.3rem 1.1rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }

    .logo {
        height: 120px;
    }

    #header.scrolled .logo {
        height: 70px;
    }

    .nav-menu {
        width: 100%;
    }

    /* Hero Section Small Mobile */
    #hero {
        min-height: 100vh;
        padding-top: 5rem;
        padding-bottom: 3rem;
        overflow: hidden;
    }

    .hero-content {
        gap: 2rem;
        align-items: flex-start;
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        margin-top: 15rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        max-width: 250px;
        padding: 1rem 2rem;
        font-size: 1.4rem;
    }

    .hero-scroll {
        bottom: 1rem;
        display: none;
    }

    .hero-scroll .mouse {
        width: 2rem;
        height: 3rem;
    }

    .hero-scroll .wheel {
        width: 0.4rem;
        height: 0.4rem;
    }

    .scroll-text {
        font-size: 0.9rem;
    }

    /* Hero Form Small Mobile */
    .hero-right .contact-form {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
        z-index: 1000;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-right .form-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-right .form-group {
        margin-bottom: 1.5rem;
    }

    .hero-right .form-group input,
    .hero-right .form-group select,
    .hero-right .form-group textarea {
        padding: 1rem 0.8rem;
        font-size: 1.6rem;
    }

    .hero-right .form-group label {
        top: 1rem;
        left: 0.8rem;
        font-size: 1.6rem;
    }

    .hero-right .form-group input:focus ~ label,
    .hero-right .form-group select:focus ~ label,
    .hero-right .form-group textarea:focus ~ label,
    .hero-right .form-group input:not(:placeholder-shown) ~ label,
    .hero-right .form-group select:not([value=""]) ~ label,
    .hero-right .form-group textarea:not(:placeholder-shown) ~ label {
        top: -0.5rem;
        left: 0.6rem;
        font-size: 1.1rem;
    }

    .hero-right .btn-primary {
        padding: 1rem 1.2rem;
        font-size: 1.4rem;
    }

    .section {
        padding: 6rem 0;
    }
    #features {
        margin-top: 10rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2.4rem;
    color: var(--text-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.close-modal:hover {
    color: var(--text-color);
}

.modal h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
    text-align: center;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 3rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.6rem;
    border: none;
    border-bottom: 1px solid var(--gray);
    background: transparent;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
    pointer-events: none;
}

.helper-text {
    display: block;
    font-size: 1.2rem;
    color: var(--text-lighter);
    margin-top: 0.5rem;
}

.modal .btn-primary {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    border-radius: 5px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.modal .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Thank You Modal Styles */
.thank-you-modal {
    max-width: 600px;
    text-align: center;
}

.thank-you-modal-content {
    padding: 2rem 0;
}

.thank-you-modal .thank-you-icon {
    width: 8rem;
    height: 8rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3.5rem;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    animation: modalPulse 2s infinite;
}

@keyframes modalPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(46, 125, 50, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
    }
}

.thank-you-modal h2 {
    color: var(--primary-color);
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thank-you-modal .modal-subtitle {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.thank-you-modal .thank-you-message {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-modal .thank-you-message p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.thank-you-modal .thank-you-message p:last-child {
    margin-bottom: 0;
}

.thank-you-modal .thank-you-message a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.thank-you-modal .thank-you-message a:hover {
    text-decoration: underline;
}

.thank-you-steps {
    margin-bottom: 3rem;
}

.thank-you-steps h3 {
    font-size: 2.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.6rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.step-text p {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.5;
}

.close-thank-you {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    margin-top: 1rem;
}

.close-thank-you i {
    margin-right: 1rem;
}

/* Responsive Thank You Modal */
@media (max-width: 768px) {
    .thank-you-modal {
        max-width: 90%;
        margin: 2rem;
    }
    
    .thank-you-modal .thank-you-icon {
        width: 6rem;
        height: 6rem;
        font-size: 2.5rem;
    }
    
    .thank-you-modal h2 {
        font-size: 2.4rem;
    }
    
    .thank-you-modal .modal-subtitle {
        font-size: 1.6rem;
    }
    
    .thank-you-modal .thank-you-message {
        padding: 1.5rem;
    }
    
    .thank-you-modal .thank-you-message p {
        font-size: 1.4rem;
    }
    
    .thank-you-steps h3 {
        font-size: 1.8rem;
    }
    
    .step-item {
        gap: 1rem;
    }
    
    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    
    .step-text h4 {
        font-size: 1.4rem;
    }
    
    .step-text p {
        font-size: 1.3rem;
    }
}

/* Get in Touch Text */
.get-in-touch {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

/* Hide Testimonials Section */
#testimonials {
    display: none;
}

/* Update About Section */
.stats-container {
    display: none; /* Hide the stats since it's a startup */
}

/* Hide Newsletter */
.footer-newsletter {
    display: none;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.helper-text {
    display: block;
    font-size: 1.2rem;
    color: var(--text-lighter);
    margin-top: 0.5rem;
    margin-bottom: -1rem;
}

.section-description {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Update form styles */
.form-group {
    position: relative;
    margin-bottom: 3rem;
}

.form-group input::placeholder {
    color: var(--text-lighter);
    opacity: 0.7;
}

/* Quote button specific styles */
.quote-btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 1.5rem 2.5rem;
    border-radius: 5rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Thank You Page Styles */
#thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    padding-top: 8rem;
}

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

.thank-you-icon {
    width: 12rem;
    height: 12rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(46, 125, 50, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.3);
    }
}

.thank-you-title {
    font-size: 4.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.thank-you-subtitle {
    font-size: 2.4rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.thank-you-message {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 4rem;
    text-align: left;
}

.thank-you-message p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.thank-you-message p:last-child {
    margin-bottom: 0;
}

.thank-you-message a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.thank-you-message a:hover {
    text-decoration: underline;
}

.thank-you-details {
    margin-bottom: 4rem;
}

.thank-you-details h3 {
    font-size: 2.8rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.step-icon {
    width: 6rem;
    height: 6rem;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.4rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.step-card h4 {
    font-size: 1.8rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.thank-you-actions .btn {
    min-width: 20rem;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
}

.thank-you-actions .btn i {
    margin-right: 1rem;
}

/* Responsive Thank You Page */
@media (max-width: 768px) {
    .thank-you-icon {
        width: 10rem;
        height: 10rem;
        font-size: 4rem;
    }
    
    .thank-you-title {
        font-size: 3.6rem;
    }
    
    .thank-you-subtitle {
        font-size: 2rem;
    }
    
    .thank-you-message {
        padding: 2rem;
    }
    
    .thank-you-message p {
        font-size: 1.6rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 30rem;
    }
}

@media (max-width: 576px) {
    .thank-you-icon {
        width: 8rem;
        height: 8rem;
        font-size: 3rem;
    }
    
    .thank-you-title {
        font-size: 2.8rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.6rem;
    }
    
    .thank-you-details h3 {
        font-size: 2.2rem;
    }
}