/* global.css — Variables, reset, typography, buttons (every page) */

/* =========================
   Font Import
========================= */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
/* =========================
   Variables & Colors
========================= */
:root {
    --primary-color: #e26b45;
    --secondary-color: #222733;
    --dark-color: #222733;
    --light-color: #f8f9fa;
    --card-surface: #ffffff;
    /* Breakpoints: tablet 768–1023, mobile L ≤767, mobile M ≤575, mobile S ≤479 */
    --touch-min: 44px;
}
/* =========================
   RESET / GLOBAL STYLES
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 100%;
}
body {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}
.primary-color {
    color: var(--primary-color);
}
.secondary-color {
    color: var(--secondary-color);
}
.menu-opened {
    overflow: hidden;
}
ul:not(.nav-menu):not(.cta-content-list):not(.dropdown-menu ul) {
    list-style: disc !important;
    padding-left: 2rem !important;
    margin: 0 0 0.6rem !important;
}
/* =========================
   TYPOGRAPHY
========================= */
.manrope {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 0.625rem;
    line-height: 1.3;
}
h1,
.h1 {
    font-size: 5rem;
}
.service-hero-flex h1,
.service-hero-flex .h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .service-hero-flex h1,
    .service-hero-flex .h1 {
        font-size: clamp(1.875rem, 3.2vw, 2.75rem);
    }
}

@media (min-width: 1024px) {
    .service-hero-flex h1,
    .service-hero-flex .h1 {
        font-size: clamp(2.25rem, 2.5vw, 3.75rem);
    }
}
p {
    margin-bottom: 0.9375rem;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
a:hover {
    color: var(--primary-color);
}
/* =========================
   IMAGES
========================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* =========================
   LISTS
========================= */
ul,
ol {
    list-style: none;
}
/* =========================
   BUTTONS
========================= */
button {
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
}
/* =========================
   FORM ELEMENTS
========================= */
input,
textarea,
select {
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
}
/* =========================
   CONTAINER
========================= */
.container {
    width: 100%;
    max-width: 75rem;
    margin: auto;
    padding: 0 0.9375rem;
}
/* =========================
   UTILITIES
========================= */
.text-center {
    text-align: center;
}
.flex {
    display: flex;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hidden {
    display: none;
}
/* =========================
   SCROLLBAR (OPTIONAL)
========================= */
::-webkit-scrollbar {
    width: 0.575rem;
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 0.625rem;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
/* ======================
TOP HEADER
====================== */
.top-header {
    padding: 0.9375rem 0;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* ======================
LOGO
====================== */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
}
.logo-area img {
    max-width: 30%;
}
.logo-text h3 {
    margin: 0;
    font-size: 1.25rem;
}
.logo-text span {
    font-size: 0.75rem;
    color: #555;
}
@media (max-width: 767px) {
    .logo-area img{
        max-width: 60%;
    }
}
/* ======================
CONTACT AREA
====================== */
.contact-area {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.icon-box {
    background: var(--primary-color);
    color: var(--light-color);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-size: 1.125rem;
}
.contact-item span {
    font-size: 0.75rem;
    display: block;
}
.contact-item strong {
    font-size: 0.875rem;
}
/* ======================
BUTTONS
====================== */
.primary-btn {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
}
.primary-btn:hover {
    background: var(--secondary-color);
    color: var(--light-color);
}
.secondary-btn {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
}
.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--light-color);
}
.white-btn {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
}
.white-btn:hover {
    background: var(--primary-color);
    color: var(--light-color);
}
.btn-banner {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.btn-banner.phone {
    background: var(--light-color);
    color: var(--primary-color);
}
.btn-banner.primary {
    background: var(--secondary-color);
    color: var(--light-color);
}
.btn-banner.phone:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}
.btn-banner.primary:hover {
    background: var(--light-color);
    color: var(--primary-color);
}
