html, body {
    height: 100%;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    color: #29445f;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --surface: #eef5fb;
    --text: #29445f;
    --primary: #7fa9cc;
    --secondary: #b8d1e5;
}

.font-display {
    font-family: 'Unbounded', sans-serif;
}

.app-shell {
    min-height: 100%;
    width: 100%;
    overflow: auto;
    background: radial-gradient(circle at top left, rgba(184, 209, 229, 0.35), transparent 30%),
    radial-gradient(circle at top right, rgba(127, 169, 204, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(127, 169, 204, 0.18);
    box-shadow: 0 20px 50px rgba(69, 112, 147, 0.08);
}

.soft-card {
    background: #eef5fb;
    border: 1px solid rgba(127, 169, 204, 0.22);
    box-shadow: 0 16px 40px rgba(69, 112, 147, 0.08);
}

.section-title {
    letter-spacing: -0.03em;
}

.fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.7s ease forwards;
}

.fade-up-delay-1 {
    animation-delay: 0.08s;
}

.fade-up-delay-2 {
    animation-delay: 0.16s;
}

.fade-up-delay-3 {
    animation-delay: 0.24s;
}

.fade-up-delay-4 {
    animation-delay: 0.32s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

.map-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 9999px;
    background: var(--primary);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 8px rgba(127, 169, 204, 0.18);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-dot:hover,
.map-dot.active {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 0 10px rgba(127, 169, 204, 0.24);
}

.custom-select-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.custom-select-list.open {
    max-height: 220px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform 0.2s ease;
}

.hero-image-overlay {
    background: linear-gradient(180deg, rgba(36, 69, 99, 0.05), rgba(36, 69, 99, 0.18)),
    linear-gradient(135deg, rgba(184, 209, 229, 0.10), rgba(127, 169, 204, 0.18));
}

input, textarea, select {
    outline: none;
}

input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(127, 169, 204, 0.26);
}

input.error-field {
    box-shadow: 0 0 0 3px rgba(181,60,51, 0.26);
}

.ol-layer {
    border-radius: 22px;
    overflow: hidden;
}

.ol-layer canvas {
    filter: hue-rotate(180deg) brightness(1.1);
}

.hero-section {
    min-height: 450px;
    background: linear-gradient(135deg, rgba(127, 169, 204, 0.25) 0%, rgba(184, 209, 229, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-icon {
    font-size: 180px;
    opacity: 0.15;
    position: absolute;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #eef5fb 0%, #d4e5f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(127, 169, 204, 0.22);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(69, 112, 147, 0.12);
}

.gallery-item i {
    font-size: 64px;
    opacity: 0.3;
}

.pricing-card {
    border-left: 4px solid #7fa9cc;
    padding: 16px;
    background: #f7fbff;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.contact-btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-btn-primary {
    background: #7fa9cc;
    color: white;
    border-color: #7fa9cc;
}

.contact-btn-primary:hover {
    opacity: 0.9;
}

.contact-btn-secondary {
    background: transparent;
    color: #7fa9cc;
    border-color: #7fa9cc;
}

.contact-btn-secondary:hover {
    background: rgba(127, 169, 204, 0.1);
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#serviceDescription p {
    margin: 1rem 0;
}

#serviceDescription *:last-child {
    margin-bottom: 0px;
}

.iti {
    width: 100%;
}

/*input:focus, textarea:focus, select:focus, button:focus, a:focus {*/
/*    box-shadow: 0 0 0 3px rgba(127, 169, 204, 0.26);*/
/*}*/