/* CSS Reset and Base Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-gray-900: #111827;
    --text-gray-700: #374151;
    --text-gray-600: #4b5563;
    --text-gray-500: #6b7280;
    --text-gray-200: #e5e7eb;
    --bg-white: #ffffff;
    --bg-gray-50: #f9fafb;
    --border-gray-100: #f3f4f6;
    --border-gray-200: #e5e7eb;
    --border-gray-300: #d1d5db;
    --green-500: #22c55e;
    --yellow-400: #facc15;
    --blue-100: #dbeafe;
    --whatsapp-green: #25D366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-gray-900);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

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

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.font-emblema-one-regular {
    font-family: "Emblema One", system-ui;
    font-weight: 10;
    font-style: normal;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

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

.nav-brand {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-logo {
    height: 3.5rem;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

.mobile-menu-logo {
    height: 2.5rem;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-links {
    display: none;
}

.nav-contact {
    display: none;
}

.nav-links a,
.nav-contact a {
    color: var(--text-gray-700);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-contact a:hover {
    color: var(--primary-color);
}

#mobile-menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-gray-200);
}

#mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-links {
    padding: 1.5rem 1rem;
}

.mobile-menu-links a {
    display: block;
    font-size: 1.125rem;
    color: var(--text-gray-700);
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('https://images.pexels.com/photos/8296977/pexels-photo-8296977.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    height: 100%;
    text-align: left;
    margin-left: 5%;
    margin-right: 0;
    max-width: none;
    /* Allows it to span the full width */
    padding-left: 2rem;
    /* Add padding for spacing */
    padding-right: 2rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray-200);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    border: none;
}

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

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

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

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

/* Sections */
.section {
    padding: 5rem 0;
}

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

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

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray-600);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--text-gray-600);
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray-100);
}

.service-card .icon-wrapper {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-card .icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray-600);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    color: var(--text-gray-600);
    margin-bottom: 0.5rem;
}

.service-card li i {
    color: var(--green-500);
    margin-right: 0.75rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-card .header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
    min-height: 4rem;
}

.testimonial-card .avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-card .author {
    flex: 1;
    min-width: 0;
}

.testimonial-card .author h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.testimonial-card .author p {
    color: var(--text-gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-card .stars {
    display: flex;
    margin-bottom: 1rem;
}

.testimonial-card .stars i {
    color: var(--yellow-400);
    margin-right: 0.25rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content>p {
    font-size: 1.25rem;
    color: var(--text-gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.about-feature .icon-wrapper {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 9999px;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.about-feature .icon-wrapper i {
    color: var(--primary-color);
}

.about-feature h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--text-gray-600);
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    background-color: var(--bg-gray-50);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.badge i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.badge span {
    color: var(--text-gray-700);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
}

.about-image .overlay-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.overlay-card .number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.overlay-card .label {
    color: var(--text-gray-600);
    font-size: 0.875rem;
}

/* --- NEW Team Section Styles --- */
.team-section-container {
    max-width: 968px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    background-color: var(--bg-white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2.5rem;
    border: 1px solid var(--border-gray-100);
}

.founder-image-wrapper {
    flex-shrink: 0;
    text-align: center;
}

.founder-image-wrapper img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.founder-details {
    flex-grow: 1;
}

.founder-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-details .role {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.experience-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray-200);
    padding-bottom: 0.5rem;
    color: var(--text-gray-700);
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.experience-item .icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--bg-gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.experience-item .info .company {
    font-weight: 700;
    color: var(--text-gray-900);
}

.experience-item .info .role-duration {
    color: var(--text-gray-600);
    font-size: 0.875rem;
}

.founder-socials {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.founder-socials .social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-gray-50);
    border-radius: 50%;
    color: var(--text-gray-700);
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.founder-socials .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Charts Section */
.charts-grid {
    display: flex;
    justify-content: center;
}

.chart-container {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray-100);
    max-width: 600px;
    width: 100%;
}

.chart-container h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.chart {
    width: 100%;
    height: 20rem;
}

/* FAQ Section */
.faq-container {
    max-width: 48rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray-200);
}

.faq-button {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-button:hover {
    background-color: var(--bg-gray-50);
}

.faq-button span {
    font-weight: 500;
}

.faq-icon {
    color: var(--text-gray-500);
}

.faq-content {
    padding: 0 1.5rem 1rem;
    color: var(--text-gray-600);
}

.hidden {
    display: none;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-section .section-header p {
    color: var(--blue-100);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-contact-item .icon-wrapper {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    margin: 0 auto 1rem;
}

.cta-contact-item .icon-wrapper i {
    font-size: 1.5rem;
}

.cta-contact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-contact-item p {
    color: var(--blue-100);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info>p {
    font-size: 1.25rem;
    color: var(--text-gray-600);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item .icon-wrapper {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 0.75rem;
    margin-right: 1rem;
}

.contact-item .icon-wrapper i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.contact-item h3 {
    font-weight: 700;
}

.contact-item p {
    color: var(--text-gray-600);
}

.office-hours {
    background-color: var(--bg-gray-50);
    padding: 1.5rem;
    border-radius: 1rem;
}

.office-hours h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.office-hours .time-slot {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.office-hours .time-slot span:first-child {
    color: var(--text-gray-600);
}

.office-hours .time-slot span:last-child {
    font-weight: 500;
}

.contact-form-container {
    background-color: var(--bg-gray-50);
    padding: 2rem;
    border-radius: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-gray-700);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group .select-button {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .select-button:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.form-group .select-container {
    position: relative;
}

.select-button {
    background-color: var(--bg-white);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.25rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-gray-300);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.select-options div {
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.select-options div:hover {
    background-color: var(--bg-gray-50);
}

/* Success Message Styles */
.success-message {
    background-color: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid var(--green-500);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.success-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--green-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.success-message h3 {
    color: var(--text-gray-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.success-message p {
    color: var(--text-gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive adjustments for larger screens */
@media (min-width: 768px) {
    .success-message {
        padding: 3rem 2rem;
    }
    
    .success-icon {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .success-message p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.map-container {
    margin-top: 4rem;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 2px solid var(--border-gray-200);
}

/* Footer */
.footer {
    background-color: var(--text-gray-900);
    color: var(--bg-white);
    padding: 1.5rem 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer .copyright {
    color: #9ca3af;
    text-align: center;
}

.footer .socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer .social-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f2937;
    border-radius: 9999px;
    transition: background-color 0.3s;
}

.footer .social-icon:hover {
    background-color: var(--primary-color);
}

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

.footer .links a {
    color: #9ca3af;
    transition: color 0.3s;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    background-color: var(--primary-color);
    color: var(--bg-white);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 3.5rem;
    height: 3.5rem;
    bottom: 6.5rem;
    right: 2rem;
    background-color: var(--whatsapp-green);
    color: var(--bg-white);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float i {
    font-size: 1.75rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.form-wrapper ul {
    margin-left: 5rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-counter {
    animation: countUp 2s ease-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-logo {
        height: 3rem;
        max-width: 250px;
    }

    .mobile-menu-logo {
        height: 3rem;
        max-width: 250px;
    }
    .hero-content {
        margin-top: 4rem;
    }

    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .founder-socials {
        justify-content: center;
    }

    .about-image img {
        width: 95%;
    }

    .about-image .overlay-card {
        margin-top: 1.5rem;
        margin-right: 1.5rem;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .nav-links,
    .nav-contact {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    #mobile-menu-button {
        display: none;
    }

    .hero h1 {
        font-size: 3.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .cta-buttons {
        flex-direction: row;
    }

    .cta-contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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