@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #FFD300;
    border-radius: 4px;
}

/* Section Transitions */
section {
    transition: all 0.5s ease;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #FFD300, #FFAA00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glow Effect */
.glow {
    text-shadow: 0 0 10px rgba(255, 211, 0, 0.5);
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Glass Morphism */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(255, 211, 0, 0.2);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 211, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD300;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #FFD300;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: white;
}

.service-display {
    background: rgba(255, 211, 0, 0.1);
    border: 1px solid rgba(255, 211, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    color: #FFD300;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD300;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.required {
    color: #ff6b6b;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 211, 0, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #FFD300;
    color: black;
}

.btn-primary:hover {
    background: #FFC000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 211, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Base button styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

/* Testimonial Image Styles */
.testimonial-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(255, 211, 0, 0.1);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 200px;
    transition: transform 0.3s ease;
}

.testimonial-image:hover {
    transform: scale(1.02);
}

/* Video container styles */
.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    min-height: 200px;
}

.video-item {
    max-width: 100%;
    max-height: 256px;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* Floating Buttons Container */
.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

/* Floating Call Button */
.floating-call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD300, #FFAA00);
    color: black;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(255, 211, 0, 0.4);
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 0.95;
    min-width: 160px;
    text-align: center;
}

.floating-call-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 211, 0, 0.6);
    opacity: 1;
    background: linear-gradient(135deg, #FFC000, #FF9900);
}

.floating-call-button i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.floating-call-button span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* Floating WhatsApp Button - Minimalist circle with just the logo */
.floating-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 0.95;
    z-index: 1001;
}

.floating-whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    opacity: 1;
    background: #128C7E;
}

.floating-whatsapp-button i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .modal-content {
        width: 95%;
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .modal-header,
    .modal-footer {
        padding: 1rem;
    }
    
    /* Responsive adjustments for testimonials */
    .testimonial-image-container {
        padding: 0.5rem;
    }
    
    .testimonial-image {
        max-height: 150px;
    }
    
    /* Responsive adjustments for videos */
    .video-item {
        max-height: 180px;
    }
    
    /* Responsive adjustments for floating buttons container */
    .floating-buttons-container {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    /* Responsive adjustments for floating button */
    .floating-call-button {
        padding: 10px 15px;
        font-size: 13px;
        min-width: 140px;
    }

    .floating-call-button i {
        width: 14px;
        height: 14px;
    }

    .floating-call-button span {
        font-size: 12px;
    }

    /* Responsive adjustments for WhatsApp floating button */
    .floating-whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp-button i {
        width: 20px;
        height: 20px;
    }
}

/* Image Modal Styles */
.modal-image {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-image.active {
    display: flex;
}

.modal-content-image {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.close-image {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 4px;
}

.close-image:hover,
.close-image:focus {
    color: #FFD300;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-image img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.image-info {
    margin-top: 15px;
    color: white;
    text-align: center;
}

.image-info h3 {
    margin: 0 0 5px 0;
    color: #FFD300;
    font-size: 1.2em;
}

.image-info p {
    margin: 0;
    font-size: 1em;
    opacity: 0.8;
}

/* Responsive adjustments for image modal */
@media (max-width: 768px) {
    .close-image {
        top: 15px;
        right: 15px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
}