@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

body {
    font-feature-settings: "liga" 1;
    margin: 0;
    padding: 0;
}

.hero-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-overlay {
    background: linear-gradient(75deg, rgba(26, 42, 58, 0.85) 0%, rgba(26, 42, 58, 0.75) 100%);
}

.hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-text {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#main-header {
    background-color: transparent;
}

#main-header.bg-dark\/90 {
    background-color: rgba(26, 42, 58, 0.95);
}

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

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

.btn-primary {
    background: linear-gradient(90deg, #6C757D, #495057);
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.2);
    color: white;
    font-weight: 500;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 8px 16px rgba(73, 80, 87, 0.3);
    background: linear-gradient(90deg, #7D868F, #5A6268);
    color: white;
}

.btn-secondary {
    background: linear-gradient(90deg, #6C757D, #495057);
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.2);
    color: white;
    font-weight: 500;
    border: none;
}

.btn-secondary:hover {
    box-shadow: 0 8px 16px rgba(73, 80, 87, 0.3);
    background: linear-gradient(90deg, #7D868F, #5A6268);
    color: white;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-item {
    transition: transform 0.3s ease;
}

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

.stat-card {
    position: relative;
    transition: transform 0.3s ease;
}

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

.stat-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6C757D, #495057);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

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

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

button[type="submit"], 
#contact-form button, 
#contact-form-page button {
    color: white;
    font-weight: 500;
    background: linear-gradient(90deg, #6C757D, #495057);
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.2);
}

button[type="submit"]:hover, 
#contact-form button:hover, 
#contact-form-page button:hover {
    box-shadow: 0 8px 16px rgba(73, 80, 87, 0.3);
    background: linear-gradient(90deg, #7D868F, #5A6268);
    color: white;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #6C757D;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.15);
}

#contact-bubble {
    background: linear-gradient(90deg, #6C757D, #495057);
    box-shadow: 0 4px 12px rgba(73, 80, 87, 0.2);
}

#contact-bubble:hover {
    box-shadow: 0 8px 16px rgba(73, 80, 87, 0.3);
    transform: scale(1.1);
}

.text-secondary-500 {
    color: #6C757D;
}

.bg-secondary-500\/90 {
    background-color: rgba(108, 117, 125, 0.9);
}

.bg-secondary-500\/10 {
    background-color: rgba(108, 117, 125, 0.1);
}

.text-secondary-400 {
    color: #ADB5BD;
}

.text-secondary-700 {
    color: #343A40;
}

.bg-primary-700 {
    background-color: #343A40;
}

.bg-primary-600 {
    background-color: #495057;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

@media (max-height: 800px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        height: auto;
        min-height: 120vh;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero-section {
        height: -webkit-fill-available;
    }
}