/* ========================================
   BASE / GLOBAL STYLES
   ======================================== */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #fefefe;
    color: #1a2e5a;
    width: 100%;
    overflow-x: hidden;
}

html {
    width: 100%;
    overflow-x: hidden;
}

.wrapper {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ========================================
   CIRCLE (Shared Background Element)
   ======================================== */
.circle {
    width: 1000px;
    height: 1000px;
    filter: blur(100px);
    background: radial-gradient(circle, rgba(55, 81, 121, 0.4) 0%, transparent 100%);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 768px) {
    .circle {
        display: none;
    }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    padding: 24px 0;
}

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

.logo img {
    height: 50px;
}

.nav-circle {
    position: absolute;
    top: -50%;
    right: -50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #1a2e5a;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links a:hover {
    opacity: 0.8;
}

.btn-login {
    background-color: #6c8cd4;
    color: white !important;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #8ba4df;
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .nav-links {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .navbar-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .btn-login {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a:not(.btn-login) {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    padding: 20px 0;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-height: 500px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    color: #1a2e5a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    color: #7a8599;
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1a2e5a;
    color: white;
    padding: 20px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    transition: background-color 0.3s;
}

.btn-register:hover {
    background-color: #2a4070;
}

.btn-register svg {
    width: 20px;
    height: 20px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

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

.hero-video video {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(80, 80, 80, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.play-button:hover {
    background-color: rgba(60, 60, 60, 0.95);
    transform: translate(-50%, -50%) scale(1.05);
}

.play-button svg {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px;
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column-reverse;
        gap: 40px;
        margin: 20px 0;
        padding: 40px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 10px 0;
    }

    .hero {
        margin: 0;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .btn-register {
        padding: 16px 28px;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 25px 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn-register {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CTA MESSAGE
   ======================================== */
.cta-message {
    position: relative;
    text-align: center;
    padding: 48px 0;
}

.cta-message-circle {
    position: absolute;
    left: -50%;
    top: 50%;
    transform: translateY(-50%);
}

.cta-message h2 {
    font-size: 24px;
    font-weight: 400;
    color: #1a2e5a;
    margin: 0 auto;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .cta-message h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .cta-message {
        padding: 32px 0;
    }

    .cta-message h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cta-message {
        position: relative;
    }

    .cta-message h2 {
        font-size: 16px;
    }

    .cta-message-circle {
        position: absolute;
        left: 0;
        bottom: 0;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    position: relative;
    width: 100%;
    padding: 48px 0;
    min-height: 550px;
}

.services-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(60% - 310px);
    right: 0;
    height: 75%;
    background: linear-gradient(135deg, #d6e4f5 0%, #e8eff8 25%, #fff5eb 55%, #fdd9b5 80%, #f0a86e 100%);
    border-radius: 30px 0 0 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    z-index: 0;
}

.services-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 430px;
    padding: 60px 0;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 300px;
    flex-shrink: 0;
    padding-right: 40px;
}

.services-header h2 {
    font-weight: 300;
    font-size: 52px;
    line-height: 1.1;
    color: #1a2e5a;
    margin-bottom: 30px;
}

.services-arrow {
    width: 40px;
    height: 40px;
    color: #d4912a;
}

.services-arrow svg {
    width: 100%;
    height: 100%;
}

.services-carousel {
    position: absolute;
    left: 350px;
    right: -100px;
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    background: #ffffff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
    width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.service-card:last-child {
    margin-right: 150px;
}

.service-card-image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a2e5a;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

.service-card p {
    font-size: 14px;
    color: #7a8599;
    line-height: 1.5;
    text-align: center;
}

.carousel-nav {
    position: absolute;
    bottom: -55px;
    right: 0px;
    display: flex;
    gap: 12px;
}

.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #1a2e5a;
    cursor: pointer;
    transition: color 0.3s;
}

.carousel-nav-btn:hover {
    color: #d4912a;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 992px) {
    .services {
        min-height: auto;
    }

    .services-bg {
        left: 20%;
        right: 0;
        height: 80%;
    }

    .services-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-header {
        width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .services-header h2 {
        font-size: 42px;
    }

    .services-arrow {
        margin: 0 auto;
    }

    .services-carousel {
        position: static;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100%;
        overflow-x: scroll;
        padding: 20px;
    }

    .carousel-nav {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 30px 0;
        min-height: auto;
    }

    .services-bg {
        border-radius: 20px;
        left: 20px;
        right: 20px;
        height: auto;
        top: 100px;
        bottom: 60px;
        transform: none;
    }

    .services-content {
        padding: 20px 0;
        min-height: auto;
        gap: 20px;
    }

    .services-header {
        padding: 0;
        margin-bottom: 0;
        max-width: 100%;
    }

    .services-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .services-arrow {
        display: none;
    }

    .services-carousel {
        width: 100%;
        padding: 10px 0;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }

    .service-card {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: center;
        padding: 20px;
    }

    .service-card:first-child {
        margin-left: 0;
    }

    .service-card:last-child {
        margin-right: 0;
    }

    .service-card-image {
        height: 140px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 13px;
    }

    .carousel-nav {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 24px;
    }

    .service-card {
        width: 100%;
        min-width: 100%;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 48px 0;
    background-color: rgba(148, 123, 211, 0.2);
}

.about-card {
    border-radius: 30px;
    padding: 60px 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.53);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-card h2 {
    font-size: 36px;
    font-weight: 300;
    color: #1a2e5a;
    text-align: center;
    margin-bottom: 40px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.about-content p {
    font-size: 16px;
    color: #737373;
    line-height: 1.7;
    text-align: justify;
}

.about-values {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-icon.blue {
    background-color: #1a2e5a;
}

.value-icon.orange {
    background-color: #e8a838;
}

.value-icon.red {
    background-color: #d45a3a;
}

.value-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1a2e5a;
}

@media (max-width: 992px) {
    .about-card {
        padding: 50px 40px;
    }

    .about-content {
        gap: 30px;
    }

    .about-values {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 30px 0;
    }

    .about-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .about-card h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .about-content p {
        font-size: 14px;
        text-align: left;
    }

    .about-values {
        flex-wrap: wrap;
        gap: 25px;
    }

    .value-icon {
        width: 55px;
        height: 55px;
        border-radius: 10px;
    }

    .value-icon svg {
        width: 26px;
        height: 26px;
    }

    .value-item span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 25px 15px;
    }

    .about-card h2 {
        font-size: 20px;
    }

    .about-values {
        gap: 20px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
    }

    .value-item span {
        font-size: 13px;
    }
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.clients-circle {
    position: absolute;
    right: -50%;
    top: 50%;
    transform: translateY(-25%);
}

.clients h2 {
    font-size: 42px;
    font-weight: 300;
    color: #1a2e5a;
    line-height: 1.2;
    margin-bottom: 40px;
}

.clients-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.presence-card {
    background: #dbe4ee;
    border-radius: 20px;
    padding: 40px 50px;
}

.presence-card h3 {
    font-size: 36px;
    font-weight: 600;
    color: #1a2e5a;
    margin-bottom: 10px;
}

.presence-card p {
    font-size: 16px;
    color: #7a8599;
}

.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.chart-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 50%;
}

.chart-legend {
    display: flex;
    gap: 40px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.usa {
    background-color: #8899b3;
}

.legend-color.rd {
    background-color: #1a2e5a;
}

.legend-item span:last-child {
    font-size: 14px;
    color: #1a2e5a;
}

.logo-triangles {
    width: 800px;
    height: auto;
    object-fit: cover;
    opacity: 0.2;
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    left: -350px;
    z-index: -1;
}

@media (max-width: 992px) {
    .clients h2 {
        font-size: 36px;
    }

    .clients-content {
        gap: 40px;
    }

    .presence-card {
        padding: 30px 40px;
    }

    .presence-card h3 {
        font-size: 28px;
    }

    .chart-placeholder {
        width: 240px;
        height: 240px;
    }

    .logo-triangles {
        width: 500px;
        left: -200px;
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 30px 0;
    }

    .clients h2 {
        font-size: 28px;
        text-align: center;
    }

    .clients-content {
        flex-direction: column;
        gap: 30px;
    }

    .presence-card {
        padding: 25px 30px;
        max-width: 100%;
        text-align: center;
    }

    .presence-card h3 {
        font-size: 24px;
    }

    .chart-placeholder {
        width: 200px;
        height: 200px;
    }

    .chart-legend {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .logo-triangles {
        width: 300px;
        left: -100px;
    }
}

@media (max-width: 480px) {
    .clients h2 {
        font-size: 24px;
    }

    .presence-card {
        padding: 20px;
    }

    .presence-card h3 {
        font-size: 20px;
    }

    .chart-placeholder {
        width: 180px;
        height: 180px;
    }

    .logo-triangles {
        width: 300px;
        left: -150px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 48px 0 80px;
    overflow: hidden;
}

.testimonials-card {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
}

.testimonials-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.testimonial-card {
    display: block;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
}

.testimonial-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2e5a;
    margin-bottom: 5px;
}

.testimonial-card .company {
    font-size: 14px;
    font-style: italic;
    color: #d4912a;
    margin-bottom: 15px;
}

.testimonial-card .quote {
    font-size: 14px;
    color: #5a6a80;
    line-height: 1.6;
}

.testimonial-card.main-card {
    width: 380px;
    padding: 40px;
    z-index: 2;
    position: relative;
}

.testimonial-card.main-card h3 {
    font-size: 36px;
}

.testimonial-card.main-card .company {
    font-size: 18px;
}

.testimonial-card.main-card .quote {
    font-size: 16px;
}

.testimonial-card.side-card {
    width: 260px;
    opacity: 0.9;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #d4912a;
    flex-shrink: 0;
    z-index: 3;
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
}

.testimonial-nav:hover {
    color: #1a2e5a;
}

@media (max-width: 992px) {
    .testimonials-card {
        padding: 40px 30px;
    }

    .testimonial-card.side-card {
        display: none;
    }

    .testimonials-slider {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 30px 0 50px;
    }

    .testimonials-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .testimonials-slider {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        align-items: center;
        column-gap: 10px;
        padding: 0;
    }

    .testimonial-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        position: static;
        transform: none;
        background: white;
        border: 1px solid rgba(26, 46, 90, 0.15);
        border-radius: 999px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        z-index: 5;
    }

    .testimonial-nav.prev {
        grid-column: 1;
        justify-self: center;
    }

    .testimonial-nav.next {
        grid-column: 3;
        justify-self: center;
    }

    .testimonial-nav svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-card.main-card {
        grid-column: 2;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 25px;
    }

    .testimonial-card.main-card h3 {
        font-size: 24px;
    }

    .testimonial-card.main-card .company {
        font-size: 14px;
    }

    .testimonial-card.main-card .quote {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-card {
        padding: 25px 15px;
    }

    .testimonial-card.main-card {
        padding: 20px;
    }

    .testimonial-card.main-card h3 {
        font-size: 20px;
    }

    .testimonials-slider {
        grid-template-columns: 32px minmax(0, 1fr) 32px;
        column-gap: 6px;
    }

    .testimonial-nav {
        width: 32px;
        height: 32px;
    }

    .testimonial-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    overflow: hidden;
    background: linear-gradient(135deg, #043673, #c5d4f7);
    padding: 50px 0 30px;
    color: white;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 300px;
    height: 100px;
    object-fit: cover;
}

.footer-divider {
    width: 1px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.3);
    align-self: center;
}

.footer-contact {
    flex: 1;
}

.footer-contact h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-item span {
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    color: white;
    text-decoration: underline;
    font-size: 13px;
}

.footer-legal span {
    font-size: 13px;
}

.footer-legal p {
    width: 100%;
    margin-top: 8px;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
}

.social-link svg {
    width: 32px;
    height: 32px;
}

.social-link span {
    font-size: 12px;
}

@media (max-width: 992px) {
    .footer {
        padding: 50px 0 30px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .footer-main {
        gap: 0px;
        flex-wrap: wrap;
    }

    .contact-columns {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        width: 250px;
        height: 100px;
    }

    .footer-divider {
        display: none;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact h3 {
        font-size: 16px;
    }

    .contact-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-legal p {
        text-align: center;
    }

    .footer-social {
        gap: 20px;
    }

    .social-link svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .footer-contact h3 {
        font-size: 14px;
    }

    .contact-item p,
    .contact-item span {
        font-size: 13px;
    }

    .footer-legal a,
    .footer-legal span,
    .footer-legal p {
        font-size: 12px;
    }

    .social-link svg {
        width: 24px;
        height: 24px;
    }

    .social-link span {
        font-size: 11px;
    }
}
