/* ============================================
   VARIÁVEIS E RESET GLOBAL
   ============================================ */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-top: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--white-color);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
}

.navbar-logo {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.5rem;
    gap: 10px;
}

.navbar-logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    text-align: center;
    gap: 30px;
}

.nav-item {
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-links {
    color: var(--dark-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.nav-links::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links:hover::after {
    width: 100%;
}

.nav-links-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white-color);
    padding: 100px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--white-color);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-cref {
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.image-placeholder.large {
    width: 400px;
    height: 400px;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
    width: fit-content;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 50px;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 100px 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:nth-child(5) {
    border-top-color: #9B59B6;
}

.service-card:nth-child(5) .service-icon {
    color: #9B59B6;
}

.service-card:nth-child(6) {
    border-top-color: #E91E63;
}

.service-card:nth-child(6) .service-icon {
    color: #E91E63;
}

.service-card:nth-child(7) {
    border-top-color: #2ECC71;
}

.service-card:nth-child(7) .service-icon {
    color: #2ECC71;
}

.service-card:nth-child(8) {
    border-top-color: #D4A574;
}

.service-card:nth-child(8) .service-icon {
    color: #D4A574;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-features li {
    color: var(--gray-color);
    display: flex;
    gap: 10px;
}

.service-features i {
    color: var(--secondary-color);
    font-weight: 700;
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.result-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.result-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.result-images {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.05);
    align-items: center;
}

.before-image,
.after-image {
    flex: 1;
}

.result-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.result-info {
    padding: 30px;
}

.result-info h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.result-stats {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.result-comment {
    color: var(--gray-color);
    font-style: italic;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 50px;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: var(--accent-color);
}

.testimonial-text {
    color: var(--gray-color);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 3px;
    font-size: 1rem;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.85rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 50px;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white-color);
}

.contact .section-title {
    color: var(--white-color);
}

.contact .section-title::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    transition: var(--transition);
    font-size: 1.15rem;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.phone-group {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

.phone-group .country-select {
    width: 115px;
    min-width: 115px;
    flex-shrink: 0;
    border-radius: 5px 0 0 5px;
    border-right: none;
    font-size: 0.9rem;
    padding: 12px 22px 12px 10px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.phone-group input[type="tel"] {
    flex: 1;
    min-width: 0;
    border-radius: 0 5px 5px 0;
    border-left: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: var(--dark-color);
    color: var(--white-color);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    margin-left: 5px;
}

.social-links-footer {
    display: flex;
    gap: 15px;
}

.social-links-footer a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    transition: var(--transition);
}

.social-links-footer a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

.toast.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   DARK MODE TOGGLE BUTTON
   ============================================ */
.dark-mode-toggle {
    position: fixed;
    top: 12px;
    left: calc(50% - 22px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--dark-color);
    color: var(--white-color);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    user-select: none;
}

.dark-mode-toggle:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .dark-mode-toggle {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* ============================================
   MODO NOTURNO
   ============================================ */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-mode .navbar {
    background: #1e1e1e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

body.dark-mode .nav-links {
    color: #e0e0e0;
}

body.dark-mode .navbar-logo a {
    color: var(--primary-color);
}

body.dark-mode .section-title {
    color: #f0f0f0;
}

body.dark-mode .section-subtitle {
    color: #b0b0b0;
}

/* About */
body.dark-mode .about {
    background: #1a1a2e;
}

body.dark-mode .about-description {
    color: #c8c8c8;
}

body.dark-mode .stat h3 {
    color: var(--secondary-color);
}

body.dark-mode .stat p {
    color: #b0b0b0;
}

/* Services */
body.dark-mode .services {
    background: #121212;
}

body.dark-mode .service-card {
    background: #1e1e2e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .service-card h3 {
    color: #f0f0f0;
}

body.dark-mode .service-card p {
    color: #c0c0c0;
}

body.dark-mode .service-features li {
    color: #b0b0b0;
}

/* Testimonials */
body.dark-mode .testimonials {
    background: #1a1a2e;
}

body.dark-mode .testimonial-card {
    background: #1e1e2e;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .testimonial-text {
    color: #d0d0d0;
}

body.dark-mode .author-info h4 {
    color: #f0f0f0;
}

body.dark-mode .author-info p {
    color: #999;
}

body.dark-mode .testimonial-stars i {
    color: var(--accent-color);
}

/* Contact */
body.dark-mode .contact {
    background: linear-gradient(135deg, #0d0d1a, #1a0a0a);
}

/* Footer */
body.dark-mode .footer {
    background: #0a0a0a;
}

/* Mobile nav */
body.dark-mode .nav-menu.active {
    background: #1e1e1e;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: -100%;
        opacity: 1;
        transition: all 0.5s ease;
        background-color: var(--white-color);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 1;
        box-shadow: var(--shadow);
    }

    .nav-item {
        height: auto;
    }

    .nav-links {
        padding: 15px 20px;
        width: 100%;
        display: table;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links::after {
        display: none;
    }

    .navbar-container {
        padding: 0 15px;
    }

    .navbar-logo {
        font-size: 1.3rem;
        gap: 8px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 60px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    /* Hero Mobile */
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 20px 50px;
        min-height: auto;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-image {
        order: -1;
    }

    .image-placeholder {
        width: 220px;
        height: 220px;
        font-size: 3rem;
    }

    .hero-cref {
        font-size: 0.75rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .cta-button:hover {
        transform: none;
    }

    /* About Mobile */
    .about {
        padding: 60px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        display: flex;
        justify-content: center;
        order: -1;
    }

    .about-photo {
        max-width: 280px;
        width: 100%;
    }

    .image-placeholder.large {
        width: 200px;
        height: 200px;
    }

    .about-description {
        font-size: 1rem;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .stat p {
        font-size: 0.8rem;
    }

    /* Services Mobile */
    .services {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card:hover {
        transform: none;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        flex-wrap: nowrap;
    }

    /* Contact Mobile */
    .contact {
        padding: 60px 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info {
        gap: 15px;
    }

    .info-card {
        padding: 15px 18px;
    }

    .info-icon {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .info-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .info-card p {
        font-size: 0.88rem;
        margin-bottom: 3px;
    }

    .map-container iframe {
        height: 150px;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 5px;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

    .contact-form {
        gap: 14px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 14px;
        font-size: 1rem;
    }

    /* Phone Group Mobile */
    .phone-group .country-select {
        width: 105px;
        min-width: 105px;
        font-size: 0.88rem;
        padding: 14px 22px 14px 8px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a {
        font-size: 0.85rem;
    }

    .social-links-footer {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .toast {
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        font-size: 0.9rem;
        padding: 15px 20px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .hero {
        padding: 90px 15px 40px;
        gap: 25px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .image-placeholder {
        width: 180px;
        height: 180px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .about {
        padding: 50px 15px;
    }

    .about-photo {
        max-width: 220px;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat h3 {
        font-size: 1.3rem;
    }

    .stat p {
        font-size: 0.7rem;
    }

    .services {
        padding: 50px 15px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    .testimonials {
        padding: 50px 15px;
    }

    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .author-info h4 {
        font-size: 0.9rem;
    }

    .author-info p {
        font-size: 0.75rem;
    }

    .contact {
        padding: 50px 12px;
    }

    .contact-info {
        gap: 12px;
    }

    .info-card {
        padding: 12px 14px;
    }

    .info-icon {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .info-card h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .info-card p {
        font-size: 0.82rem;
        margin-bottom: 2px;
    }

    .map-container iframe {
        height: 130px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-form {
        gap: 12px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 12px;
        font-size: 0.95rem;
    }

    /* Phone Group 480px */
    .phone-group .country-select {
        width: 95px;
        min-width: 95px;
        font-size: 0.82rem;
        padding: 12px 18px 12px 6px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .footer-section p,
    .footer-section li,
    .footer-section a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    .navbar-logo {
        font-size: 1.1rem;
    }

    .navbar-logo a {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }
}
