/* Base Styles */
:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --secondary-color: #ffffff;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --bg-light: #f9fafb;
    --bg-lighter: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --whatsapp-color: #25d366;
    --whatsapp-hover: #128c7e;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 48rem;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: var(--primary-color);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.secondary-btn:hover {
    background-color: var(--bg-lighter);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background-color: var(--whatsapp-color);
    color: white;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.btn-with-icon:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-with-icon svg {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.desktop-nav {
    display: none;
}

.desktop-nav a {
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-menu.open {
    max-height: 20rem;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-content a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
}

.mobile-menu-content a:hover {
    background-color: var(--bg-lighter);
}

/* Hero Section */
.hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: linear-gradient(to right, #e0e7ff, #e0f2fe);
}

.hero-grid {
    display: grid;
    gap: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
}

.client-images {
    display: flex;
}

.client-images img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -0.5rem;
}

.trust-text {
    margin-left: 1rem;
}

.trust-text p {
    color: var(--text-light);
}

.trust-text strong {
    font-weight: 700;
}

.stars {
    display: flex;
    align-items: center;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--warning-color);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.result-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    padding: 2rem 0;
    background-color: var(--bg-light);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.badges-grid img {
    height: 3rem;
    width: auto;
    margin: 0 auto;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.badges-grid img:hover {
    opacity: 1;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: #4f46e5;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.service-features li:before {
    content: "✓";
    color: #10b981;
    margin-right: 0.5rem;
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: #4f46e5;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: #4338ca;
}

.service-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    gap: 2rem;
}

.case-study {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.case-study:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.case-study:hover .case-study-overlay {
    opacity: 0.75;
}

.case-study-content {
    padding: 1.5rem;
}

.case-study h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.case-study-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.case-study-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
}

.rating .star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--warning-color);
}

.rating span {
    margin-left: 0.25rem;
    color: var(--text-light);
}

.read-more {
    font-weight: 500;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.read-more:hover {
    color: var(--primary-hover);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
}

.why-choose-us-grid {
    display: grid;
    gap: 2rem;
}

.why-choose-us h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.why-choose-us-text {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
}

.benefit-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    color: #a5b4fc;
}

.benefit-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    opacity: 0.9;
}

.process-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.process-card-content {
    padding: 1.5rem;
    color: var(--text-color);
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e0e7ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
}

.step-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.process-cta {
    margin-top: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-author h3 {
    font-weight: 600;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-rating {
    display: flex;
    margin-bottom: 0.5rem;
}

.testimonial-rating .star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--warning-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    position: relative;
    transform: scale(1.05);
    z-index: 10;
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom-left-radius: var(--radius-md);
}

.pricing-card-content {
    padding: 1.5rem;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
}

.price-period {
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.pricing-features li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--success-color);
    margin-right: 0.5rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-light);
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.2s ease;
}

.pricing-btn:hover {
    background-color: #e5e7eb;
}

.custom-plan-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: white;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-toggle:hover {
    background-color: var(--bg-light);
}

.faq-toggle h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-toggle.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content.active {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-content > div {
    padding: 0 1.5rem 1.5rem;
}

.faq-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-content ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.faq-cta-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map {
    height: 24rem;
    width: 100%;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #e0e7ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-info h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--text-color);
}

.contact-info .small {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background-color: white;
}

.contact-form {
    max-width: 48rem;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.form-group textarea {
    min-height: 10rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.submit-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background-color: #111827;
    color: white;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: #374151;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    transform: scale(0);
    opacity: 0;
    z-index: 40;
}

.whatsapp-float.visible {
    transform: scale(1);
    opacity: 1;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 2rem;
    height: 2rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    
    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 3rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .copyright {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}