/* =========================
   RESET
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================
   VARIABLES
========================= */
:root {
    --primary: #c58a2b;
    --primary-dark: #a56e18;
    --primary-soft: #f2e3c8;

    --dark: #1f252b;
    --dark-2: #2c333a;
    --slate: #5f6b76;

    --white: #ffffff;
    --offwhite: #f7f5f1;
    --light: #f1f3f5;
    --light-2: #e7ebee;
    --card: #ffffff;

    --text: #26313a;
    --text-soft: #66717b;
    --border: rgba(31, 37, 43, 0.08);

    --shadow-sm: 0 8px 18px rgba(22, 28, 33, 0.06);
    --shadow-md: 0 16px 34px rgba(22, 28, 33, 0.10);
    --shadow-lg: 0 26px 60px rgba(22, 28, 33, 0.14);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;

    --container: 1240px;
    --header-height: 84px;

    --transition: 0.3s ease;
}

/* =========================
   BASE
========================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(197, 138, 43, 0.08), transparent 22%),
        linear-gradient(to bottom, #fbfaf8 0%, #f3f5f6 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

section {
    padding: 96px 0;
}

/* =========================
   TYPOGRAPHY
========================= */
.section-header {
    text-align: center;
    margin-bottom: 54px;
}

.section-header span {
    display: inline-block;
    color: var(--primary-dark);
    background: var(--primary-soft);
    border: 1px solid rgba(197, 138, 43, 0.18);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-header h2 {
    margin-top: 16px;
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 1.15;
    color: var(--dark);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtext {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text-soft);
    font-size: 1.02rem;
}


.services-listing-section {
    padding: 70px 0 100px;
}

.service-card .btn,
.project-card .btn {
    margin-top: 18px;
}

.site-nav a.active {
    color: var(--primary-dark);
}

.site-nav a.active::after {
    width: 100%;
}


/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(197, 138, 43, 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn-light {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: var(--offwhite);
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 245, 241, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(31, 37, 43, 0.06);
}

.nav-wrapper {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text strong {
    display: block;
    font-size: 1rem;
}

.logo-text small {
    font-size: 0.75rem;
    color: #666;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    position: relative;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.96rem;
    transition: color var(--transition);
}

.site-nav a:hover {
    color: var(--primary-dark);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: width var(--transition);
}

.site-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(31, 37, 43, 0.08);
    border-radius: 14px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 999px;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 90px 0 70px;
    background:
        linear-gradient(110deg, rgba(31, 37, 43, 0.76) 0%, rgba(31, 37, 43, 0.55) 35%, rgba(31, 37, 43, 0.22) 70%, rgba(31, 37, 43, 0.18) 100%),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(247, 245, 241, 0.08), transparent 20%),
        radial-gradient(circle at right center, rgba(197, 138, 43, 0.18), transparent 22%);
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f8ead0;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.02;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero p {
    max-width: 680px;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   SERVICES
========================= */
.services {
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 37, 43, 0.06);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 138, 43, 0.22);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff3de, #f6dfb4);
    font-size: 1.8rem;
    box-shadow: inset 0 0 0 1px rgba(197, 138, 43, 0.12);
}

.service-card h3 {
    font-size: 1.32rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-soft);
}


.page-template {
    padding-top: 0;
}

.page-hero {
    padding: 110px 0 60px;
    background: linear-gradient(135deg, #f7f5f1 0%, #e9eef1 100%);
    border-bottom: 1px solid rgba(31, 37, 43, 0.06);
}

.page-hero-content {
    max-width: 860px;
}

.page-category {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(197, 138, 43, 0.12);
    color: #9b6716;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    margin-bottom: 18px;
    color: var(--dark);
}

.page-hero p {
    font-size: 1.08rem;
    color: var(--text-soft);
    max-width: 720px;
}

.page-content-section {
    padding: 60px 0 100px;
}

.page-featured-image {
    margin-bottom: 34px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.page-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.page-content {
    max-width: 900px;
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.85;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.page-content p {
    margin-bottom: 18px;
}

.page-content ul,
.page-content ol {
    margin: 0 0 20px 22px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content img {
    border-radius: 18px;
    margin: 24px 0;
}

.page-not-found {
    padding: 120px 0;
    text-align: center;
}

.page-not-found h1 {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.page-not-found p {
    color: var(--text-soft);
    margin-bottom: 20px;
}

/* =========================
   PROJECTS / CARDS / SLIDER
========================= */
.project-showcase {
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(231,235,238,0.42));
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.project-card {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(31, 37, 43, 0.06);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-slider {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: #dfe5e9;
}

.project-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.project-slides img.active {
    opacity: 1;
    transform: scale(1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--dark);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 10px 18px rgba(22, 28, 33, 0.16);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-btn.prev {
    left: 14px;
}

.slider-btn.next {
    right: 14px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(31, 37, 43, 0.18);
    backdrop-filter: blur(8px);
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition);
}

.slider-dots button.active {
    background: var(--primary);
    transform: scale(1.15);
}

.project-card-body {
    padding: 24px 24px 28px;
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.project-card-body h3 {
    font-size: 1.34rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 12px;
}

.project-card-body p {
    color: var(--text-soft);
}

/* =========================
   ABOUT
========================= */
.about-preview {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text span {
    display: inline-block;
    color: var(--primary-dark);
    background: var(--primary-soft);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.12;
    margin: 18px 0 18px;
    color: var(--dark);
}

.about-text p {
    color: var(--text-soft);
    margin-bottom: 26px;
    font-size: 1.02rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    inset: auto -18px -18px auto;
    width: 68%;
    height: 68%;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(197, 138, 43, 0.18), rgba(197, 138, 43, 0.04));
    z-index: 0;
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
}

/* =========================
   CTA
========================= */
.cta-band {
    background:
        linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    font-size: 1.04rem;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #eef2f4;
    border-top: 1px solid rgba(31, 37, 43, 0.06);
    color: var(--text);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 34px;
    padding-bottom: 42px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: var(--text-soft);
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(31, 37, 43, 0.08);
    text-align: center;
    padding: 20px 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin: 4px 0;
}

/* =========================
   Contact
========================= */
.contact-page-v2 {
    background:
        radial-gradient(circle at top left, rgba(197, 138, 43, 0.08), transparent 18%),
        linear-gradient(to bottom, #fbfaf8 0%, #f3f5f6 100%);
    color: #26313a;
}

.contact-v2-hero {
    padding: 88px 0 44px;
}

.contact-v2-hero__wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.contact-v2-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(197, 138, 43, 0.12);
    color: #a56e18;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.contact-v2-hero__content h1 {
    font-size: clamp(2.3rem, 4vw, 4.5rem);
    line-height: 1.02;
    margin: 0 0 16px;
    color: #1f252b;
    letter-spacing: -0.03em;
}

.contact-v2-hero__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #66717b;
    max-width: 720px;
    margin: 0 0 24px;
}

.contact-v2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
}

.contact-v2-btn:hover {
    transform: translateY(-2px);
}

.contact-v2-btn--primary {
    background: #c58a2b;
    color: #fff;
    box-shadow: 0 12px 24px rgba(197, 138, 43, 0.22);
}

.contact-v2-btn--primary:hover {
    background: #a56e18;
}

.contact-v2-btn--light {
    background: #fff;
    color: #1f252b;
    box-shadow: 0 8px 18px rgba(22, 28, 33, 0.06);
}

.contact-v2-btn--light:hover {
    background: #f7f5f1;
}

.contact-v2-btn--whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-v2-btn--whatsapp:hover {
    background: #1faf57;
}

.contact-v2-btn--whatsapp-outline {
    background: transparent;
    color: #18984a;
    border-color: rgba(37, 211, 102, 0.35);
}

.contact-v2-btn--whatsapp-outline:hover {
    background: rgba(37, 211, 102, 0.08);
}

.contact-v2-summary__card,
.contact-v2-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 37, 43, 0.06);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(22, 28, 33, 0.10);
}

.contact-v2-summary__card h2 {
    margin: 0 0 18px;
    font-size: 1.45rem;
    color: #1f252b;
}

.contact-v2-summary__list {
    display: grid;
    gap: 16px;
}

.contact-v2-summary__item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(31, 37, 43, 0.08);
}

.contact-v2-summary__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-v2-summary__item span {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #66717b;
    margin-bottom: 5px;
}

.contact-v2-summary__item a,
.contact-v2-summary__item p {
    margin: 0;
    color: #1f252b;
    line-height: 1.6;
    word-break: break-word;
}

.contact-v2-main {
    padding: 18px 0 100px;
}

.contact-v2-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.contact-v2-left,
.contact-v2-right {
    display: grid;
    gap: 28px;
    min-width: 0;
}

.contact-v2-card__head {
    margin-bottom: 22px;
}

.contact-v2-card__head > span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2e3c8;
    color: #a56e18;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.contact-v2-card__head h2 {
    margin: 0 0 8px;
    font-size: 1.8rem;
    line-height: 1.15;
    color: #1f252b;
}

.contact-v2-card__head p {
    margin: 0;
    color: #66717b;
    line-height: 1.7;
}

.contact-v2-info {
    display: grid;
    gap: 18px;
}

.contact-v2-info__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(31, 37, 43, 0.08);
}

.contact-v2-info__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-v2-info__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff3de, #f6dfb4);
    box-shadow: inset 0 0 0 1px rgba(197, 138, 43, 0.14);
    font-size: 1.2rem;
}

.contact-v2-info__item h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #1f252b;
}

.contact-v2-info__item p,
.contact-v2-info__item a {
    margin: 0;
    color: #66717b;
    line-height: 1.75;
    word-break: break-word;
}

.contact-v2-info__item a {
    text-decoration: none;
}

.contact-v2-info__item a:hover {
    color: #a56e18;
}

.contact-v2-map {
    width: 100%;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background: #e8edf0;
}

.contact-v2-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.contact-v2-map--placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, #eef2f4 0%, #e2e8eb 100%);
    color: #66717b;
}

.contact-v2-map--placeholder p {
    margin: 0;
    max-width: 360px;
    line-height: 1.7;
}

.contact-v2-form {
    display: grid;
    gap: 18px;
}

.contact-v2-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-v2-field {
    display: grid;
    gap: 8px;
}

.contact-v2-field label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f252b;
}

.contact-v2-field input,
.contact-v2-field textarea,
.contact-v2-field select {
    width: 100%;
    min-height: 52px;
    padding: 14px 15px;
    border: 1px solid rgba(31, 37, 43, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #26313a;
    font-size: 0.98rem;
    line-height: 1.4;
    outline: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.contact-v2-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-v2-field input:focus,
.contact-v2-field textarea:focus,
.contact-v2-field select:focus {
    border-color: #c58a2b;
    box-shadow: 0 0 0 3px rgba(197, 138, 43, 0.12);
}

.contact-v2-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .contact-v2-hero__wrap,
    .contact-v2-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-v2-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-v2-info__item {
        grid-template-columns: 1fr;
    }

    .contact-v2-info__icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .contact-v2-actions,
    .contact-v2-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-v2-actions .contact-v2-btn,
    .contact-v2-form__actions .contact-v2-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-v2-hero {
        padding: 72px 0 34px;
    }

    .contact-v2-summary__card,
    .contact-v2-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .contact-v2-card__head h2 {
        font-size: 1.45rem;
    }

    .contact-v2-map {
        min-height: 280px;
    }

    .contact-v2-map iframe {
        height: 280px;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 78px;
    }

    section {
        padding: 82px 0;
    }

    .nav-wrapper {
        min-height: var(--header-height);
    }

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: calc(var(--header-height) + 1px);
        left: 0;
        width: 100%;
        display: none;
        padding: 18px;
        background: rgba(247, 245, 241, 0.98);
        border-top: 1px solid rgba(31, 37, 43, 0.06);
        box-shadow: 0 18px 34px rgba(22, 28, 33, 0.08);
    }

    .site-nav.active {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .site-nav li {
        width: 100%;
    }

    .site-nav a {
        display: block;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.82);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 88px 0 78px;
    }

    .hero p {
        font-size: 1.04rem;
    }

    .project-slider {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 340px;
    }

    .btn {
        width: 100%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .project-card-body {
        padding: 22px 20px 24px;
    }

    .service-card {
        padding: 28px 22px;
    }
}

@media (max-width: 576px) {
    :root {
        --radius: 16px;
        --radius-lg: 22px;
    }

    body {
        font-size: 15.5px;
    }

    section {
        padding: 72px 0;
    }

    .container {
        width: min(94%, var(--container));
    }

    .logo-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 0.95rem;
    }

    .logo-text strong {
        font-size: 0.92rem;
    }

    .logo-text small {
        font-size: 0.72rem;
    }

    .hero-tag {
        font-size: 0.8rem;
        padding: 9px 13px;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .project-slider {
        height: 220px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .about-image img {
        min-height: 300px;
    }

    .footer-grid {
        gap: 24px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        line-height: 1.05;
    }

    .hero-buttons {
        max-width: 100%;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
    }

    .project-card,
    .service-card {
        border-radius: 20px;
    }

    .project-card-body h3,
    .service-card h3 {
        font-size: 1.18rem;
    }
}
