@import url('./hero/hero.css');
@import url('./services/services.css');
@import url('./why/why.css');
@import url('./how/how.css');
@import url('./gallery/gallery.css');
@import url('./faq/faq.css');
@import url('./contacts/contacts.css');
@import url('./footer/footer.css');
@import url('./navbar/nav-styles.css');
@import url('./city-selector/city-selector-script.css');
@import url('./pinned-buttons/whatsapp.css');
@import url('./pinned-buttons/phone.css');

:root {
    --color-primary: #0d2451;
    --color-primary-dark: #081a3a;
    --color-primary-light: #2c4d85;
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #1ebe5d;
    --color-text-main: #1c2331;
    --color-text-muted: #55617a;
    --color-bg-light: #f7f8fb;
    --color-bg-white: #ffffff;
    --color-border: #e3e7ef;
    --color-hero-bg-start: #0d2451;
    --color-hero-bg-end: #050f24;
    --color-hero-text: #ffffff;
    --color-hero-muted: #9fb4dd;
    --color-footer-bg: #050f24;
    --color-footer-text: #92a4c9;
    --color-gallery-bg: #eef1f7;
    --color-gallery-border: #d3dae8;
    --color-gallery-text: #7684a0;
    --color-discount-badge-bg: rgba(37, 211, 102, 0.2);
    --color-discount-badge-text: #25d366;
    --color-discount-badge-border: rgba(37, 211, 102, 0.5);
    --color-phone: #050f24;
    --color-phone-dark: #020713;

    
    --font-family-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-family-display: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    --spacing-container: 1200px;
    --spacing-container-padding: 20px;
    --spacing-section: 60px;
    --spacing-section-mobile: 40px;

    --radius-main: 12px;
    --radius-small: 8px;
    --radius-badge: 20px;
    --transition-main: all 0.3s ease;
    --shadow-header: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-service: 0 2px 4px rgba(0,0,0,0.02);
    --shadow-service-hover: 0 10px 24px rgba(13,36,81,0.08);
    --shadow-hero-btn: 0 4px 14px rgba(37, 211, 102, 0.4);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-main);
    font-size: var(--font-size-base);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: var(--line-height-base);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 var(--spacing-container-padding);
}

section {
    padding: var(--spacing-section) 0;
}

.section-alt {
    background: var(--color-bg-white);
}

.section-title {
    text-align: center;
    font-family: var(--font-family-display);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-title .peak-icon {
    width: 26px;
    height: 22px;
    flex-shrink: 0;
}

