/*
 * ArmyChoice New Version - Styles
 * Color Scheme: Olive/Military Green + Dark Mustard Yellow
 */

/* === CSS Variables === */
:root {
    --color-olive: #4a5941;
    --color-olive-dark: rgb(80, 101, 62);
    --color-olive-light: #5a6b4f;
    --color-mustard: #f7ca00;
    --color-mustard-dark: #dab200;
    --color-cream: #d0ccb7;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-dark-green: #2d3528;
    --color-text-light: #f0f0e8;
    --color-text-muted: #9a9a8a;
    --color-danger: #c44040;
    --color-danger-bg: #3d2828;

    --font-main: 'Inter', sans-serif;
    --container-width: 1440px;
    --header-height: 70px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-olive);
    color: var(--color-text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll from full-width elements */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul,
ol {
    list-style: none;
}

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-mustard);
    color: var(--color-dark);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 0 #00000038;
    /* Darker mustard shadow for 3D effect */
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #ffe600;
    /* Slightly lighter on hover */
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #000000;
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #000000;
}

.btn-large {
    padding: 18px 40px;
    font-size: 20px;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease;
    /* backdrop-filter: blur(5px); Removed blur on transparent to be fully transparent initially */
}

.header.scrolled {
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    padding: 0 20px;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 750px) {
    .header-container {
        padding: 0 20px;;
    }
}

.logo img {
    height: 62px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-mustard);
}

.nav-phone {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
}

@media (max-width: 1320px) {
  .nav-phone {
    display: none;
  }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-cta {
    padding: 12px 24px;
    font-size: 13px;
    background-color: var(--color-mustard);
    color: var(--color-dark);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 4px 0 #00000060;
    /* Darker mustard shadow */
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: #ffe600;
    color: var(--color-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #000000;
}

.header-cta:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #b59400;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--color-text-light);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    inset: 0;                 /* top/left/right/bottom:0 в одному */
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-dark);
    padding: 80px 24px 32px;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;

    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    align-items: center;
    text-align: center;
}

.mobile-nav-link,
.mobile-nav-phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-light);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-phone:hover {
    color: var(--color-mustard);
}

.mobile-cta {
    margin-top: 32px;
    width: 100%;
    max-width: 300px;
}

@media (max-width: 1200px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* === Mobile Hero + Badges === */
@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-container {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title-main {
        font-size: 50px;
    }

    .hero-highlight {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .btn-large {
        padding: 16px 36px;
        font-size: 15px;
    }

    .badges-banner {
        padding: 20px 0;
        position: relative;
        bottom: auto;
    }

    .badges-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .badges-row img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 36px;
    }

    .hero-highlight {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .badges-row {
        gap: 12px;
    }

    .badges-row img {
        height: 40px;
    }
}

/* === Hero Section === */

.hero {
    min-height: 92vh;
    background-size:contain;
    background-position: right;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #2f2f25;
}

@media (max-width: 1050px) {
    .hero {
        background-size:cover;
        background-position: right;
    }
}

/* загальне легке затемнення (щоб фото не було “кислотним”) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  
  z-index: 0;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.76) 38%,
    rgba(0,0,0,.55) 52%,
    rgba(0,0,0,.25) 66%,
    rgba(0,0,0,.10) 78%,
    rgba(0,0,0,0)   100%
  );
}

/* щоб контент був над оверлеями */
.hero-container,
.badges-banner{
  position: relative;
  z-index: 2;
}

.hero-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 150px;
    padding-bottom: 80px;
    padding-left: 20px;
    width: 100%;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .hero-container {
        padding-right: 100px;
    }
}

@media (max-width: 750px) {
    .hero-container {
        padding: 100px 20px 50px 20px;
    }
}

@media (max-width: 1000px) {
    .hero-container {
        padding-top: 100px;
    }
}

.hero-content {
    max-width: 1100px;
}

@media (max-width: 1450px) {
    .hero-content {
        max-width: 800px;
    }
}

@media (max-width: 1050px) {
    .hero-content {
        max-width: 600px;
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    font-weight: 900;
    margin-bottom: 32px;
    text-transform: uppercase;
    max-width: 90%;
}

@media (max-width: 800px) {
    .hero-title {
        max-width: 100%;
    }
}

.hero-title-main {
    font-size: clamp(36px, 5vw, 90px);
    letter-spacing: -0.03em;
    line-height: 1.6;
    color: var(--color-white);
    display: block;
    
}

.hero-highlight {
    font-size: clamp(26px, 4.2vw, 60px);
    letter-spacing: -0.03em;
    color: #fe7600;
    line-height: 1.2;
    display: block;
    margin-top: 20px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.6;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 80%;
}

/* === Features Section === */
.features {
    background-color: #E8E4D2;
    padding: 40px 0;
    /* Reduced height from 80px */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: left;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
}

.feature-title {
    font-size: 24px;
    font-weight: 800;
    /* Inter Extra Bold */
    color: #50653E;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feature-text {
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* === About Section === */
.about {
    background-color: #fff;
    /* min-height removed to allow content to dictate height */
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 600px 1fr;
    /* Fixed narrower width for image column */
    background-color: #fff;
}

.about-image {
    width: 100%;
    height: 100%;
    display: flex;
}

.about-image img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    background-color: #fff;
    padding: 80px 120px 80px 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 80%;
}

@media (max-width: 1600px) {
    .about-content {
        max-width: 100%;
    }
}

@media (max-width: 1300px) {
    .about-content {
        padding: 60px 80px;
    }
}

.about-icon {
    margin-bottom: 24px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    /* Extra bold */
    color: #000;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.about-text {
    font-size: 24px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.about-text-link {
    font-size: 24px;
    color: rgb(0, 88, 230);
    line-height: 1.6;
    text-decoration: underline;
}

.download-icon {
    width: 32px;
    height: 32px;
}

@media (max-width: 1200px) {
    .about-title {
        font-size: 24px;
    }
    .about-text {
    font-size: 18px;
    }
    .about-content {
        padding: 30px 60px;
    }
    .about-container {
    grid-template-columns: 50% 1fr;
    }
    .about-text-link {
        font-size: 18px;
    }
}

.about-text strong {
    color: #000;
}

@media (max-width: 992px) {
    .about-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: auto;
    }

    .about-content {
        padding: 40px 24px;
    }
}

/* === Steps Section === */
.steps {
    background-color: #1a1a1a;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    background-size: cover; 
}

.steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Lightened from 0.65 */
}

.steps .container {
    position: relative;
    z-index: 1;
}

.steps-header {
    text-align: center;
    margin-bottom: 60px;
}

.steps-title {
    font-size: clamp(2rem, 3.5vw, 5rem);
    /* Specific request */
    font-weight: 900;
    /* Inter Black */
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    padding: 40px 30px;
    background-color: #232012d9;
    border-radius: 8px;
    backdrop-filter: blur(0px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-card:hover {
    background-color: rgba(26, 26, 26, 0.85);
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #FF7700;
    /* Bright orange */
    margin-bottom: 20px;
    line-height: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #FF7700;
    /* Bright orange */
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    text-transform: none;
    /* Removed uppercase per screenshot check, but actually screenshot has mixed case/sentence case */
    line-height: 1.3;
}

.step-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
}

.steps-cta .btn-large {
    font-size: 28px;
    font-weight: 700;
    /* Inter Bold */
    letter-spacing: -0.02em;
    padding: 16px 48px;
    /* Adjusted padding for larger text */
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* === Schools Section === */

.schools {
    background-color: rgba(232, 228, 210, 1);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    background-size: cover; 
}

.schools .container {
    position: relative;
    z-index: 1;
}

.schools-header {
    text-align: center;
    margin-bottom: 60px;
}

.schools-title {
    font-size: clamp(2rem, 3.5vw, 5rem);
    /* Specific request */
    font-weight: 900;
    /* Inter Black */
    color: rgba(80, 101, 62, 1);
    margin-bottom: 24px;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

.schools-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 4px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin: 0 auto;

    max-width: 720px;
    min-height: 285px;
    height: 100%;
    padding: 40px 30px;
    background-color: rgba(255, 251, 237, 1);
    
    transition: transform .7s ease, box-shadow .5s ease, background-color .5s ease;
    will-change: transform;
}

.schools-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3); 
}

.schools-logo{
  transition: transform .5s ease, filter .5s ease;
}

.schools-card:hover .schools-logo{
  transform: scale(1.2);
}

/* доступність */
.schools-card:focus-within{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
}

.schools-text {
    font-size: 18px;
    color: rgba(0, 0, 0, 1);
    line-height: 1.6;
    text-align: center;
    transition: transform .7s ease, box-shadow .5s ease, background-color .5s ease;
}

.schools-card:hover .schools-text{
    color: #ff7700;
}

.schools-cta {
    text-align: center;
}

.schools-cta .btn-large {
    font-size: 28px;
    font-weight: 700;
    /* Inter Bold */
    letter-spacing: -0.02em;
    padding: 16px 48px;
    /* Adjusted padding for larger text */
}

@media (max-width: 1024px) {
    .schools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .schools-grid {
        grid-template-columns: 1fr;
    }
}


/* === Edu Section === */
.edu-section{
  padding: 20px 16px 100px 16px;
  background: #333021; 
}

.edu-card-link{
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.edu-card-link:hover{
    cursor: pointer;
}

.edu-card{
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 4px;          
  overflow: hidden;
  background-image: url("../new_static/bg-header.jpg");
  background-size: 65%;
  background-position: 100% center; 
  background-repeat: no-repeat;
}

/* загальне легке затемнення поверх фото */
.edu-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.10);
  z-index: 1;
}

/* ЛІВИЙ “ЩИТ” (чорний) + м’який перехід */
.edu-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 2;

  /* чорна зона зліва і плавне затухання вправо */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.92) 44%,
    rgba(0,0,0,.72) 52%,
    rgba(0,0,0,.35) 62%,
    rgba(0,0,0,.10) 74%,
    rgba(0,0,0,0)   100%
  );
}

/* контент поверх всього */
.edu-content{
    position: relative;
    z-index: 3;
    height: 100%;
    width: 70%;
    padding: 70px 90px;
}

.edu-title{
    margin: 0 0 18px;
    color:#fff;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-size: clamp(2.5rem, 4.5vw, 4.125rem);
    text-transform: uppercase;
}

.edu-subtitle{
  margin: 0 0 30px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 3.8vw, 3.125rem);
}

.edu-accent {
    color:#ff7700;
}

/* ----- Адаптив ----- */
@media (max-width: 1100px){

    .edu-content{padding-left: 56px; width: 100%;} 
}

@media (max-width: 900px){
  .edu-card{ height: auto;}
  .edu-content{ width: 100%; padding: 34px 22px; }
  .edu-card{ background-size: 80%; }

}

@media (max-width: 600px){
    .edu-card{
        background-size:cover;
    }    
}

/* === Contact Section === */
.contact {
    background-color: #333021;
    /* Dark background as requested */
    padding: 80px 0;
}

.contact-badges {
    text-align: center;
    margin-bottom: 40px;
}

.contact-badges-title {
    font-size: clamp(2rem, 3.5vw, 5rem);
    /* Base size for top line */
    font-weight: 900;
    color: var(--color-white);
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.2;
}

.contact-badges-title .highlight {
    color: #FF7700;
    /* Orange */
    font-size: clamp(2rem, 3.5vw, 5rem);
    /* Larger size for second line */
    display: block;
    /* Ensure it takes its own line */
    margin-top: 10px;
}

.contact-phones {
    display: flex;
    justify-content: center;
    gap: 400px;
    /* Reduced gap to bring them closer like in screenshot often implies */
    margin-top: 60px;
    flex-wrap: wrap;
    /* Allow wrapping */
}

@media (max-width: 1084px) {
    .contact-phones {
        gap: 120px;
    }
}

.contact .badges-row {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 40px;
    box-sizing: border-box;
    justify-content: space-between;
}
.badges-row {
    position: relative;
    height: 150px;
}

.phone-block {
    text-align: center;
}

.phone-label {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #FF7700;
    /* Orange to match title */
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.phone-number {
    font-size: clamp(1.75rem, 2.8vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-white);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-cream);
    padding: 60px 90px;
    border-radius: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 18px;
    font-weight: 500;
    color: rgb(23, 23, 23);
}

.form-group input,
.form-group textarea {
    background-color: white;
    border: 2px solid white;
    border-radius: 4px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--color-dark);
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:hover,
.form-group textarea:hover {
    outline: none;
    border-color: rgba(181, 176, 150, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF7700;
}

.form-consent {
    margin-top: 10px;
}

/* ховаємо стандартний checkbox */
.checkbox-label {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

/* сам квадратик */
.checkmark {
    min-width: 24px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #e6e6e6;
    display: inline-block;
    position: relative;
    transition: 0.2s ease;
}

/* hover */
.custom-checkbox:hover .checkmark {
    box-shadow: 0 0 0 2px rgba(181, 176, 150, 1);
}

/* коли обрано */
.custom-checkbox input:checked + .checkmark {
    background: #FF7700;
}

/* галочка */
.checkmark::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    display: none;
}

/* показуємо галочку коли checked */
.custom-checkbox input:checked + .checkmark::after {
    display: block;
}

.checkbox-label-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 3px;
}

.consent-note {
    font-size: 12px;
    color: #777;
    margin-top: 12px;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 868px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-badges {
        margin-bottom: 0px;
    }

    .contact-phones {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
    }
}

/* === Footer === */
.footer-map {
    height: 400px;
}

.footer-map iframe {
    filter: grayscale(50%);
}

.footer-content {
    background-color: #E8E4D2;
    /* Changed to requested color */
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
    /* Increased from 60px */
    margin: 0 auto;
}

.footer-title {
    font-size: 32px;
    /* Increased from 18px */
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.footer-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 24px;
    line-height: 1.6;
    /* Increased from 14px */
    color: #555;
    margin-bottom: 15px;
}

.footer-address img {
    width: 18px;
    height: 18px;
}

.footer-phones {
    font-size: 32px;
    /* Increased from 16px */
     line-height: 1.6;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-style: underline;
    /* Increased from 14px */
    color: rgb(0, 88, 230);
    margin-bottom: 30px;
}

.footer-email img {
    width: 32px;
    height: 32px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-olive-dark);
    text-transform: uppercase;
}

.social-link img {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        gap: 20px;
    }
}