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

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

/* ===== FLOATING ACTION BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-call {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3em;
    }
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9em;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.header-contact a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.85em;
    white-space: nowrap;
}

.header-contact a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"></path></svg>') repeat-x;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.1em;
    margin-bottom: 12px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-location {
    font-size: 1em;
    margin-bottom: 25px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-btn {
    padding: 12px 25px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* ===== FILTER SECTION ===== */
.filter-section {
    max-width: 1400px;
    margin: -25px auto 40px;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.filter-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.05);
}

.filter-btn.active {
    background: #667eea;
    color: white;
}

/* ===== PETS SECTION ===== */
.pets-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 15px;
}

.section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1em;
    color: #666;
    margin-bottom: 35px;
}

/* ===== BREED SELECTOR ===== */
.breed-selector-container {
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

.selector-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.selector-icon {
    font-size: 1.2em;
}

.breed-selector {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
    border: 2px solid #667eea;
    border-radius: 50px;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.breed-selector:hover {
    border-color: #764ba2;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.breed-selector:focus {
    border-color: #667eea;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.3);
}

/* ===== PET CARDS ===== */
.pets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

@media (min-width: 640px) {
    .pets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .pets-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.pet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease;
}

.pet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.pet-image-container {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pet-image-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pet-card:hover .pet-image-real {
    transform: scale(1.05);
}

.pet-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6em;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.pet-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: #667eea;
    font-size: 0.8em;
}

.pet-info {
    padding: 20px;
}

.pet-breed {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.pet-price {
    font-size: 1.1em;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
}

.characteristics {
    margin-bottom: 20px;
}

.char-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9em;
}

.char-icon {
    font-size: 1.1em;
    flex-shrink: 0;
}

.contact-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85em;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.call-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.email-btn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.email-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(240, 147, 251, 0.4);
}

.inquiry-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 15px;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95em;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
}

.service-features {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9em;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: bold;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 15px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.about-text p {
    font-size: 1em;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.about-feature {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.about-feature-icon {
    font-size: 2em;
    margin-bottom: 8px;
}

.about-feature h4 {
    font-size: 1.1em;
    margin-bottom: 4px;
    color: #667eea;
}

.about-feature p {
    font-size: 0.9em;
    color: #666;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8em;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal h2 {
    font-size: 1.8em;
    margin-bottom: 8px;
    color: #667eea;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95em;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
    font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ===== FOOTER ===== */
footer {
    background: #2c3e50;
    color: white;
    padding: 50px 15px 25px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #667eea;
}

.footer-section p,
.footer-section a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.95em;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9em;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 15px 60px rgba(102, 126, 234, 0.4);
        transform: translateY(-5px);
    }
}

.highlight-breed {
    animation: highlightPulse 1s ease-in-out 2;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        font-size: 1.3em;
    }

    .header-nav {
        order: 2;
        justify-content: center;
        gap: 10px;
    }

    .header-nav a {
        font-size: 0.8em;
        padding: 5px 10px;
    }

    .header-contact {
        order: 3;
        justify-content: center;
        gap: 8px;
    }

    .header-contact a {
        font-size: 0.75em;
        padding: 6px 12px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero-subtitle {
        font-size: 1em;
    }

    .hero-location {
        font-size: 0.9em;
    }

    .cta-buttons {
        gap: 10px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .section-subtitle {
        font-size: 0.95em;
    }

    .filter-card {
        padding: 15px;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85em;
    }

    .modal-content {
        padding: 20px;
    }

    .modal h2 {
        font-size: 1.5em;
    }
}
/* ===== PAGINATION WRAPPER ===== */
.pagination-wrapper {
    max-width: 1400px;
    margin: 50px auto 0;
    padding: 0 15px;
}

/* ===== PAGINATION CONTROLS ===== */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pagination-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95em;
    min-width: 120px;
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* ===== PAGE NUMBERS ===== */
.page-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    width: 40px;
    height: 40px;
    padding: 0;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.page-number:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.page-number.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.page-number.active:hover {
    transform: scale(1.1);
}

/* ===== RESULTS INFO ===== */
.results-info {
    text-align: center;
    font-size: 0.95em;
    color: #666;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .pagination-wrapper {
        margin: 35px auto 0;
        padding: 0 12px;
    }

    .pagination-controls {
        gap: 12px;
        margin-bottom: 15px;
    }

    .pagination-btn {
        padding: 8px 15px;
        font-size: 0.9em;
        min-width: 100px;
    }

    .page-numbers {
        gap: 6px;
    }

    .page-number {
        width: 36px;
        height: 36px;
        font-size: 0.85em;
    }

    .results-info {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .pagination-wrapper {
        margin: 30px auto 0;
        padding: 0 10px;
    }

    .pagination-controls {
        gap: 10px;
        margin-bottom: 12px;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.85em;
        min-width: 90px;
    }

    .page-numbers {
        gap: 5px;
    }

    .page-number {
        width: 32px;
        height: 32px;
        font-size: 0.8em;
    }

    .results-info {
        font-size: 0.85em;
        margin-bottom: 15px;
    }
}


@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.1em;
    }

    .header-nav {
        gap: 8px;
    }

    .header-nav a {
        font-size: 0.75em;
        padding: 4px 8px;
    }

    .header-contact a {
        font-size: 0.7em;
        padding: 5px 10px;
    }

    .hero {
        padding: 30px 12px;
    }

    .hero h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9em;
        margin-bottom: 8px;
    }

    .cta-btn {
        padding: 10px 18px;
        font-size: 0.85em;
    }

    .pets-section {
        padding: 30px 12px;
    }

    .section-title {
        font-size: 1.5em;
    }

    .pet-image-container {
        height: 200px;
    }

    .pet-image-fallback {
        font-size: 4em;
    }

    .pet-info {
        padding: 15px;
    }

    .pet-breed {
        font-size: 1.3em;
    }

    .pet-price {
        font-size: 1em;
    }

    .char-item {
        font-size: 0.85em;
        padding: 6px;
    }

    .contact-btn {
        min-width: 90px;
        padding: 8px 10px;
        font-size: 0.8em;
    }

    .services-section {
        padding: 40px 12px;
    }

    .about-section {
        padding: 40px 12px;
    }

    .about-text h2 {
        font-size: 1.5em;
    }

    .about-text p {
        font-size: 0.95em;
    }

    footer {
        padding: 40px 12px 20px;
    }

    .footer-section h3 {
        font-size: 1.1em;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9em;
    }
}

/* ===== FORM MESSAGE ===== */
.form-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FORM STYLING ===== */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #f5576c;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #25D366;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
