/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    min-height: 100vh;
    position: relative;
}

.hero-section .container {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-features {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
}

.feature {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Services Section */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.card i {
    color: var(--primary-color);
}

/* Contact Section */
.contact-info {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Form Styles */
.form-control {
    padding: 0.8rem;
    border-radius: 5px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: var(--primary-color);
}

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

.card, .about-features, .contact-info {
    animation: fadeIn 1s ease-in;
}

/* Social Media Icons */
.social-icons a {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons .fa-facebook {
    color: #1877f2;
}

.social-icons .fa-instagram {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer Styles */
footer {
    position: relative;
    z-index: 100;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: var(--primary-color) !important;
}

footer .fa-heart {
    animation: heartbeat 1.5s infinite;
}

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