:root {
    --teal: #0bb5a7;
    --teal-light: #e8f8f7;
    --teal-dark: #089489;
    --dark: #1a1a2e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --success: #198754;
    --danger: #dc3545;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #343a40;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
}

p, li, span, div {
    color: #343a40;
}

.text-teal {
    color: var(--teal) !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-dark {
    color: #1a1a2e !important;
}

.bg-teal {
    background-color: var(--teal) !important;
}

.bg-teal-light {
    background-color: var(--teal-light) !important;
}

.text-teal-light {
    color: #7dd3db !important;
}

.border-teal {
    border-color: var(--teal) !important;
}

.btn-teal {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-teal:hover,
.btn-teal:focus {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 181, 167, 0.4);
}

.btn-outline-teal {
    border-color: var(--teal);
    color: var(--teal);
    transition: all 0.3s ease;
}

.btn-outline-teal:hover,
.btn-outline-teal:focus {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.navbar {
    padding: 0.8rem 0;
}

.navbar-brand .brand-name {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.navbar-brand .tagline {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar .nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--teal) !important;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--teal);
}

#top-bar {
    font-size: 0.85rem;
}

.hero-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    position: relative;
    padding: 80px 0 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-circle.bg-teal {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.hero-circle.bg-teal-light {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(11, 181, 167, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--teal) !important;
}

.service-card:hover .service-icon i {
    color: var(--white) !important;
}

.service-detail-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-detail-card:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(11, 181, 167, 0.1);
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--teal-light);
    color: var(--teal);
}

.accordion-item {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--teal);
    transform: translateX(5px);
}

.call-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(11, 181, 167, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.call-btn:hover {
    background-color: var(--teal-dark);
    color: var(--white);
    transform: scale(1.1);
}

.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.wa-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.wa-btn:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 0.25rem rgba(11, 181, 167, 0.15);
}

footer {
    background-color: var(--dark);
}

footer p,
footer li,
footer span,
footer small,
footer h6 {
    color: #ced4da !important;
}

footer h6 {
    color: #ffffff !important;
}

footer a {
    color: #adb5bd !important;
}

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

.social-links a {
    transition: all 0.3s ease;
}

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

.bg-light p,
.bg-light li,
.bg-light span,
.bg-light small {
    color: #343a40 !important;
}

.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6 {
    color: #1a1a2e !important;
}

.bg-white p,
.bg-white li,
.bg-white span,
.bg-white small {
    color: #343a40 !important;
}

.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
    color: #1a1a2e !important;
}

@media (max-width: 991.98px) {
    .navbar .nav-link.active::after {
        display: none;
    }
    
    .hero-section {
        padding: 60px 0 100px;
    }
    
    .min-vh-75 {
        min-height: auto;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-6 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
    
    .hero-circle {
        display: none;
    }
    
    #top-bar {
        display: none !important;
    }
    
    .stat-card {
        padding: 1.5rem !important;
    }
    
    .contact-info-card {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand .brand-name {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 40px 0 80px;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1rem !important;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.transition-all {
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.card {
    border-radius: 1rem;
}

.badge.rounded-pill {
    padding: 0.5rem 1rem;
}

.btn.rounded-pill {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.ratio.ratio-16x9 {
    --bs-aspect-ratio: 50%;
}

@media (min-width: 768px) {
    .ratio.ratio-16x9 {
        --bs-aspect-ratio: 40%;
    }
}