@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --bg-color: #f8fafc;
    --primary-color: #0f2a44;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}
p {
    font-weight: 400;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border: none;
    outline: none;
}

/* ------------------------------------------------------------  Header  ----------------------------------------------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 42, 68, 0.05);
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Logo */
.header__logo-img {
    height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Navigation Links */
.header__nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.header__nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--primary-color);
}

/* Premium Hover Underline Effect */
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

/* Actions Area */
.header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Call Button - Circle */
.header__call-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.header__call-btn:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

/* Infinite Wobble Animation */
@keyframes ringWobble {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-15deg); }
    60% { transform: rotate(15deg); }
    75% { transform: rotate(0deg); }
}
.header__call-btn i {
    animation: ringWobble 2s infinite ease-in-out;
    transform-origin: center;
    display: inline-block;
    font-style: normal;
    font-size: 1.2rem;
}
.header__menu-btn {
    display: none;
    background: transparent;
    color: var(--primary-color);
    padding: 0;
}


/* ------------------------------------------------------ hero section ----------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    background-color: var(--primary-color);
}
.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}
.hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
    margin: 0 auto;
    max-width: 1440px;
}
.hero__heading {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 20px;
}
.hero__heading-static {
    text-align: left;
    color: #ffffff;
}
.hero__heading-dynamic-wrapper {
    position: relative;
    display: inline-block;
    width: 580px;
    text-align: left; 
}
.hero__heading-dynamic {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden; 
    width: 0; 
    opacity: 0;
    /* border-right: 4px solid transparent;  */
        animation: typeAndRotate 8s infinite linear; 
}

.hero__heading-dynamic:nth-child(1) { animation-delay: 0s; position: relative; }
.hero__heading-dynamic:nth-child(2) { animation-delay: 2s; }
.hero__heading-dynamic:nth-child(3) { animation-delay: 4s; }
.hero__heading-dynamic:nth-child(4) { animation-delay: 6s; }

@keyframes typeAndRotate {
    0%   { width: 0; opacity: 1; border-right-color: var(--accent-color); }
    10%  { width: 100%; opacity: 1; border-right-color: var(--accent-color); } 
    18%  { width: 100%; opacity: 1; border-right-color: var(--accent-color); }
    24%  { width: 0; opacity: 1; border-right-color: transparent; }
    25%  { opacity: 0; width: 0; border-right-color: transparent; } 
    100% { opacity: 0; width: 0; border-right-color: transparent; }
}
.hero__subheading {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}
.hero_btn{
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-size: 1.25rem;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.3s all ease;
    border-radius: 10px;
}
.hero_btn:hover{
    border: 2px solid var(--accent-color);
    background-color: transparent;
}



/* ----------------------------------------- about ------------------------------------------------------------------------- */
.about {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 5rem 0;
    background-color: var(--bg-color);
}
.about_space{
    /* background-color: rebeccapurple; */
    height: 50px;
}
.about__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.about__content {
    flex: 1.05;
}

.about__image-wrapper {
    flex: 0.95;
}

.about__heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.highlight {
    color: var(--accent-color);
}

.about__text {
    font-size: 1.05rem;
    color: var(--primary-color);
    opacity: 0.85;
    margin-bottom: 2rem;
}

.about__image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(15, 42, 68, 0.08);
}
.about_btn{
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-size: 1.25rem;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    transition: 0.3s all ease;
    border-radius: 10px;
}
.about_btn:hover{
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
}

/* --------------------------------------------------------values----------------------------------------------------------------------------- */
.values {
    min-height: 35vh; 
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    padding: 0rem 0rem 5rem 0rem;
}

.values__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.values__card {
    background-color: var(--primary-color); 
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 42, 68, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 42, 68, 0.2);
}

.values__icon-wrapper {
    width: 85px;
    height: 85px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}
.values__icon {
    font-size: 2.2rem;
    color: #ffffff;
    font-style: normal;
    display: inline-block; 
    animation: ringWobble 2s infinite ease-in-out;
    transform-origin: center;
}
.values__heading {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.values__highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.values__highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.values__text {
    font-size: 0.95rem;
    color: #ffffff; 
    opacity: 0.85;
    line-height: 1.6;
}

/* ---------------------------------------------services-slider----------------------------------------------------------------------- */
.services {
    background-color: var(--primary-color);
    min-height: 45vh;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

/* Header Text */
.services__header {
    margin-bottom: 3.5rem;
}

.services__subtitle {
    color: var(--accent-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.services__heading {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services__highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.services__highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.services__description {
    max-width: 800px;
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 5rem;
}

.services__slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 1rem; /* Prevent shadow clipping if you add them later */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.services__slider-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scrollLeft 60s linear infinite; 
}

.services__slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); } 
}

/* Card Styles */
.services__card {
    width: 320px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.services__icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-style: normal;
}

.services__card-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.services__card-text {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Button Styles (Exact match to your requested code) */
.services__btn-container {
    text-align: center;
    margin-top: 03rem;
}

.services__btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color); /* Matches the light background color variable */
    font-size: 1rem;
    padding: 8px 25px;
    transition: 0.3s all ease;
    border-radius: 50px;
    font-weight: 400;
    border: 2px solid transparent;
}

.services__btn:hover {
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
}

/* ------------------------------------------------------------choose us ------------------------------------------------- */
.choose-us {
    background-color: var(--bg-color);
    padding: 6rem 0;
    color: var(--primary-color);
}

.choose-us__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.choose-us__heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.choose-us__highlight {
    color: var(--accent-color);
}

.choose-us__text {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* Stats Grid Layout */
.choose-us__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.choose-us__stat-card {
    padding: 1.5rem;
}

/* Numbers in Accent Color */
.choose-us__stat-number {
    font-size: 3.5rem;
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.choose-us__stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: capitalize;
}


/* --------------------------------------------- Footer ------------------------------------------- */
.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding-top: 5rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr; /* 4 columns, last one slightly wider */
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer__logo {
    max-width: 180px;
    height: auto;
}

/* Headings with the orange underline */
.footer__heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Link Lists */
.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    margin-bottom: 1rem;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: var(--accent-color);
}

/* Contact Information Lines */
.footer__contact-info {
    display: flex;
    flex-direction: column;
}

.footer__contact-text {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Thin divider lines */
}

.footer__contact-text:first-child {
    padding-top: 0; /* Aligns the first text properly under the heading */
}

/* Bottom Bar */
.footer__bottom {
    background-color: rgba(0, 0, 0, 0.15); /* Slightly darker stripe at the very bottom */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

.footer__bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Allows absolute positioning of the scroll button */
}

.footer__copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Scroll To Top Button */
.footer__scroll-top {
    position: absolute;
    right: 5%; /* Aligns it to the right edge */
    background-color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer__scroll-top:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}



/* ----------------------------------------------------------- Services Page ------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------  main page ----------------------------------------------------------- */
.text-center { text-align: center; }

.services-pg-header {
    padding: 10rem 0 4rem 0; 
    background-color: var(--bg-color);
}

.services-pg-header__title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-pg-header__line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.services-pg-header__text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.services-pg-grid {
    background-color: var(--bg-color);
    padding-bottom: 6rem;
}

.services-pg-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 2.5rem;
}

/* Inverted Colors Card */
.services-pg__card {
    background-color: var(--primary-color); /* Dark background */
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(15, 42, 68, 0.08);
    transition: transform 0.3s ease;
}

.services-pg__card:hover {
    transform: translateY(-8px);
}

.services-pg__icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.services-pg__title {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.services-pg__text {
    color: var(--bg-color); /* Light text */
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; /* Pushes button to bottom evenly */
}

.services-pg__btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
}
/* -------------------------------------------------------- form pop up ----------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Hidden by default, GSAP will show it */
    opacity: 0;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 42, 68, 0.8); /* Dark blur */
    backdrop-filter: blur(5px);
}

.modal__content {
    background-color: var(--bg-color);
    width: 100%;
    max-width: 600px;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    z-index: 2001;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: var(--accent-color);
}

.modal__title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal__subtitle {
    font-size: 0.95rem;
    color: var(--primary-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.modal__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group--full {
    grid-column: span 2;
}

.modal__form input,
.modal__form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(15, 42, 68, 0.15);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.modal__form input:focus,
.modal__form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.modal__submit {
    width: 100%;
    padding: 1.2rem;
}

/* --------------------------------------------- Privacy Policy ---------------------------------------------------- */

.legal-header {
    padding: 10rem 0 4rem 0; 
    background-color: var(--bg-color);
}

.legal-header__title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.legal-header__line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.legal-header__text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Content Container */
.legal-content {
    background-color: var(--bg-color);
    padding-bottom: 6rem;
}

.legal-content__container {
    max-width: 900px; /* Kept narrow for optimal reading length */
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(15, 42, 68, 0.05);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1rem;
    color: var(--primary-color);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    font-size: 1rem;
    color: var(--primary-color);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--accent-color);
    font-weight: 600;
}
.legal-section--highlight {
    background-color: rgba(15, 42, 68, 0.03);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
}


/* ------------------------------------------------------------ Contact Form ------------------------------------------------- */
.contact-pg-header {
    padding: 10rem 0 4rem 0; 
    background-color: var(--bg-color);
}

.contact-pg-header__title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-pg-header__line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.contact-pg-header__text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Form Section */
.contact-pg-form-section {
    background-color: var(--bg-color);
    padding-bottom: 6rem;
}

.contact-pg-form__wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(15, 42, 68, 0.05);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form__group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.contact-form__label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.contact-form__label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.required {
    color: #dc2626; 
    font-weight: bold;
}

.contact-form__char-count {
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 0.9rem;
    background-color: #f1f5f9;
    border: 1px solid rgba(15, 42, 68, 0.2);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-color);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff;
}

/* Consent Checkbox Area */
.contact-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.contact-form__checkbox {
    margin-top: 5px; 
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.contact-form__consent-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    line-height: 1.6;
    opacity: 0.9;
}

.contact-form__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Submit Button */
.contact-form__submit-wrapper {
    text-align: center; 
}

.contact-form__submit-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1rem 3.5rem;
    border-radius: 4px;
}

.contact-form__submit-btn:hover {
    background-color: #0b1f33;
    transform: translateY(-2px);
}