/* Responsive and Mobile Styles */


/* Remove theme container constraints */
body.page-id-[landing-page-id] .entry-content,
body.page-id-[thank-you-page-id] .entry-content {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Tablet and small screens */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .cta-buttons a {
	font-size:16px;
    }
	
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
    }

    .form-container {
        padding: 25px;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .final-cta p {
        font-size: 18px;
    }
}

/* Mobile devices */
@media (max-width: 600px) {
    .hero {
        padding: 40px 15px 60px;
    }

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

    .hero .subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .hero .location {
        font-size: 14px;
    }

    .phone-banner {
        font-size: 16px;
        padding: 12px;
    }

    .trust-items {
        flex-direction: column;
        gap: 15px;
    }

    .trust-item {
        min-width: auto;
    }

    .benefits,
    .services,
    .why-choose,
    .testimonials,
    .contact-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .benefits-grid,
    .services-grid,
    .testimonial-grid {
        gap: 20px;
    }

    .benefit-card,
    .service-card,
    .testimonial {
        padding: 20px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    .form-container {
        padding: 20px;
        border-radius: 15px;
    }

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

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 16px;
    }

    .final-cta {
        padding: 40px 15px;
    }

    .final-cta h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .final-cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .footer-content {
        max-width: 100%;
    }

    .gallery_wrapper {
        padding: 40px 15px;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 22px;
    }

    .hero .subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 16px;
        max-width: 100%;
    }

    .trust-icon {
        font-size: 28px;
    }

    .trust-item h3 {
        font-size: 16px;
    }

    .benefit-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .benefit-card h3 {
        font-size: 18px;
    }

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

    .feature-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }

    .feature h3 {
        font-size: 16px;
    }

    .form-container {
        padding: 15px;
    }

    .lightbox-close {
        width: 30px;
        height: 30px;
        font-size: 20px;
        top: -5px;
        right: -5px;
    }
}

/* Sticky Phone Button for Mobile */
.sticky-phone {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #A79777;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(167, 151, 119, 0.5);
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.sticky-phone:hover {
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .sticky-phone {
        display: block;
    }
}

/* Print styles */
@media print {
    .phone-banner,
    .sticky-phone,
    .cta-buttons {
        display: none;
    }
}
