/* styles.css */

/* Variables */
:root {
    --primary-color: #ec4899;
    --secondary-color: #1e3a8a;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

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

.btn-animated:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    background-color: #d03d85;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-login {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-login:hover {
    background-color: #152c6b;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

.btn-download {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-download:hover {
    background-color: #d03d85;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.btn-download-app {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-download-app i {
    font-size: 24px;
    margin-right: 10px;
}

.btn-download-app span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-download-app small {
    font-size: 12px;
}

.btn-download-app:hover {
    background-color: #333;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
}

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

.logo img {
    height: 50px;
}

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

.nav-list {
    display: flex;
    margin-right: 20px;
}

.nav-link {
    padding: 10px 15px;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 80px;
    position: relative;
    background-color: var(--light);
    overflow: hidden;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

.hero-image-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(236, 72, 153, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(30, 58, 138, 0.1);
    top: 20%;
    right: 10%;
    animation: pulse 5s ease-in-out infinite 1s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background-color: rgba(236, 72, 153, 0.1);
    bottom: 10%;
    left: 10%;
    animation: pulse 6s ease-in-out infinite 2s;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    animation: floating 8s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    left: 15%;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    animation: floating 10s ease-in-out infinite;
}

.shape-3 {
    top: 10%;
    right: 20%;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    animation: floating 9s ease-in-out infinite;
}

.shape-4 {
    bottom: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background-color: var(--secondary-color);
    animation: floating 7s ease-in-out infinite;
}

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

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.shape-bg {
    position: absolute;
    border-radius: var(--border-radius);
    z-index: 1;
}

.shape-bg-1 {
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: var(--primary-color);
    opacity: 0.1;
}

.shape-bg-2 {
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--secondary-color);
    opacity: 0.1;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--gray);
}

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

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(236, 72, 153, 0.05), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.service-icon-wrapper {
    margin-bottom: 20px;
    position: relative;
    width: 80px;
    height: 80px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
    animation: spin 15s linear infinite;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-text {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.4s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

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

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

.feature-item {
    display: flex;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    padding: 20px;
    border-radius: var(--border-radius);
}

.feature-item:hover {
    background-color: var(--light);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon i {
    color: var(--white);
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

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

.testimonial-slider-wrapper {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-item {
    padding: 20px 0;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    width: 50px;
    height: 50px;
    background-color: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 20px;
    color: var(--primary-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(236, 72, 153, 0.2);
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author-info span {
    color: var(--gray);
    font-size: 14px;
}

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

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.testimonial-dots {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* App Section */
.app-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #152c6b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.app-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.app-text {
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-stats {
    margin-bottom: 30px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.app-image-wrapper {
    position: relative;
    text-align: center;
}

.app-image img {
    position: relative;
    z-index: 2;
    max-height: 500px;
}

.app-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    animation: pulse 2s infinite;
}

/* Contact Section */
.contact-section {
    background-color: var(--light);
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    padding: 15px;
    border-radius: var(--border-radius);
}

.contact-info-item:hover {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transform: translateX(10px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-info-icon {
    background-color: var(--primary-color);
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-info-icon i {
    color: var(--white);
}

.contact-info-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

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

.contact-info-text a {
    color: var(--gray);
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

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

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

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

.footer h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-links ul li i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li:hover i {
    transform: translateX(5px);
}

.footer-links ul li:hover a {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.copyright {
    text-align: center;
    margin: 0;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

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

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 30px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

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

/* Responsive Styles */
@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 140px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        box-shadow: var(--box-shadow);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .nav-list li {
        margin-bottom: 15px;
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .about-image-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        margin-top: 40px;
    }
    
    .footer {
        padding-top: 60px;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 40px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
}