:root {
    --primary-blue: #6B8DD6;
    --pastel-mint: #98D8C8;
    --pastel-lavender: #B19CD9;
    --pastel-coral: #FFB6B9;
    --pastel-gray: #E8E9F3;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --accent-blue: #4A90E2;
    --shadow-soft: rgba(107, 141, 214, 0.15);
    --shadow-medium: rgba(107, 141, 214, 0.25);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow-soft);
}

.navbar-brand {
    color: var(--primary-blue) !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: none;
}

.nav-link {
    color: var(--text-primary) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    margin-top: 76px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(107, 141, 214, 0.1), rgba(152, 216, 200, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--text-primary);
}

.btn-hero {
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px var(--shadow-soft);
    font-weight: 600;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
    color: var(--white);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 50px;
    text-shadow: none;
    font-weight: 700;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--pastel-gray);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--pastel-mint), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(107, 141, 214, 0.3), rgba(152, 216, 200, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-text {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: pulse 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Social Media Bubbles */
.social-bubbles {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.social-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: float 3s ease-in-out infinite;
}

.social-bubble:nth-child(1) {
    background: linear-gradient(45deg, #25d366, #128c7e);
    animation-delay: 0s;
}

.social-bubble:nth-child(2) {
    background: linear-gradient(45deg, var(--pastel-lavender), var(--primary-blue));
    animation-delay: 0.5s;
}

.social-bubble:nth-child(3) {
    background: linear-gradient(45deg, var(--pastel-coral), var(--pastel-mint));
    animation-delay: 1s;
}

.social-bubble:hover {
    transform: scale(1.2);
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-subtitle {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.contact-info {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

.info-content {
    flex: 1;
}

.info-content strong {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.4;
}

.map-link, .phone-link, .email-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover, .phone-link:hover, .email-link:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--pastel-gray);
    box-shadow: 0 10px 30px var(--shadow-soft);
}

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

.form-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.form-control {
    background: var(--bg-secondary);
    border: 2px solid var(--pastel-gray);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px var(--shadow-soft);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: 600;
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

/* Footer */
footer {
    background: var(--bg-primary);
    padding: 50px 0 30px;
    border-top: 2px solid var(--pastel-gray);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: none;
}

.footer-info {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    color: var(--text-secondary);
    border-top: 1px solid var(--pastel-gray);
    padding-top: 20px;
    margin-top: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-bubbles {
        left: 15px;
    }
    
    .social-bubble {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}
