/* ==========================================
   GLOBAL
========================================== */

:root {

    --primary: #073b72;
    --primary-dark: #042b52;
    --secondary: #0b63b6;

    --gold: #d6a83d;
    --gold-light: #f2d17c;

    --white: #ffffff;
    --black: #101828;

    --text: #4b5563;
    --muted: #667085;

    --light: #f5f8fc;
    --border: #e4eaf1;

    --shadow:
        0 20px 50px rgba(0, 31, 63, 0.10);

    --radius: 18px;

}

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

}

img {

    max-width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

button,
input,
textarea,
select {

    font-family: inherit;

}


/* ==========================================
   CONTAINER
========================================== */

.container {

    width: min(1180px, 92%);

    margin: auto;

}


/* ==========================================
   HEADER
========================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 16px 0;

    transition: 0.3s;

}

.header.scrolled {

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(12px);

    box-shadow: 0 5px 25px rgba(0,0,0,.08);

}

.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}

.logo-icon {

    width: 46px;
    height: 46px;

    border-radius: 12px;

    background: var(--gold);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

}

.logo span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1.2;

}

.logo strong {

    font-size: 15px;

    color: var(--white);

    letter-spacing: .5px;

}

.logo small {

    font-size: 10px;

    color: rgba(255,255,255,.75);

}

.header.scrolled .logo strong {

    color: var(--primary);

}

.header.scrolled .logo small {

    color: var(--muted);

}

.navbar {

    display: flex;

    align-items: center;

    gap: 28px;

}

.nav-link {

    color: var(--white);

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

}

.header.scrolled .nav-link {

    color: var(--primary);

}

.nav-link:hover,
.nav-link.active {

    color: var(--gold) !important;

}

.nav-btn {

    background: var(--gold);

    color: var(--primary);

    padding: 11px 20px;

    border-radius: 8px;

    font-weight: 700;

    font-size: 13px;

}

.menu-toggle {

    display: none;

    background: none;

    border: 0;

    color: var(--white);

    font-size: 24px;

}

.header.scrolled .menu-toggle {

    color: var(--primary);

}


/* ==========================================
   HERO
========================================== */

.hero {

    min-height: 760px;

    position: relative;

    background:
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2000&q=90")
        center / cover;

    display: flex;

    align-items: center;

    overflow: hidden;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,30,58,.98) 0%,
            rgba(3,40,76,.90) 48%,
            rgba(3,40,76,.45) 100%
        );

}

.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 60px;

    align-items: center;

    padding-top: 90px;

}

.hero-content {

    max-width: 680px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: rgba(255,255,255,.1);

    border: 1px solid rgba(255,255,255,.2);

    color: var(--gold-light);

    padding: 8px 14px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .8px;

    margin-bottom: 20px;

}

.hero h1 {

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.05;

    margin-bottom: 24px;

}

.hero h1 span {

    color: var(--gold-light);

}

.hero p {

    color: rgba(255,255,255,.8);

    font-size: 17px;

    max-width: 620px;

    margin-bottom: 32px;

}

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 23px;

    border-radius: 8px;

    font-weight: 700;

    font-size: 14px;

    transition: .3s;

    border: 1px solid transparent;

}

.btn-primary {

    background: var(--gold);

    color: var(--primary);

}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(214,168,61,.25);

}

.btn-outline {

    border-color: rgba(255,255,255,.5);

    color: var(--white);

}

.btn-outline:hover {

    background: var(--white);

    color: var(--primary);

}

.btn-light {

    background: var(--white);

    color: var(--primary);

}

.hero-trust {

    display: flex;

    gap: 25px;

    margin-top: 32px;

    flex-wrap: wrap;

}

.hero-trust div {

    color: rgba(255,255,255,.75);

    font-size: 12px;

}

.hero-trust i {

    color: var(--gold);

    margin-right: 5px;

}

.hero-profile {

    position: relative;

    display: flex;

    justify-content: center;

}

.profile-image {

    width: 420px;
    height: 520px;

    object-fit: cover;

    border-radius: 220px 220px 30px 30px;

    border: 8px solid rgba(255,255,255,.12);

    position: relative;

    z-index: 2;

}

.profile-glow {

    position: absolute;

    width: 430px;
    height: 430px;

    background: var(--gold);

    opacity: .20;

    filter: blur(70px);

    border-radius: 50%;

}

.profile-card {

    position: absolute;

    z-index: 3;

    bottom: 25px;

    left: 10px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: rgba(255,255,255,.96);

    padding: 13px 18px;

    border-radius: 12px;

    box-shadow: var(--shadow);

}

.profile-card-icon {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

}

.profile-card div:last-child {

    display: flex;

    flex-direction: column;

}

.profile-card strong {

    color: var(--primary);

    font-size: 13px;

}

.profile-card span {

    color: var(--muted);

    font-size: 11px;

}


/* ==========================================
   STATS
========================================== */

.stats-section {

    background: var(--white);

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

    position: relative;

    z-index: 5;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

}

.stat-box {

    padding: 28px 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-right: 1px solid var(--border);

}

.stat-box:last-child {

    border: 0;

}

.stat-box > i {

    font-size: 25px;

    color: var(--gold);

}

.stat-box h3 {

    color: var(--primary);

    font-size: 28px;

    line-height: 1;

}

.stat-box span {

    color: var(--muted);

    font-size: 11px;

}


/* ==========================================
   SECTION
========================================== */

.section {

    padding: 100px 0;

}

.section-heading {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}

.section-label {

    display: inline-block;

    color: var(--secondary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;

}

.section-label.gold {

    color: var(--gold);

}

.section-label.light {

    color: var(--gold-light);

}

.section-heading h2,
.about-content h2,
.achievement-content h2,
.company-text h2,
.contact-info h2 {

    font-family: "Playfair Display", serif;

    color: var(--primary);

    font-size: clamp(32px,4vw,48px);

    line-height: 1.15;

    margin-bottom: 18px;

}

.section-heading h2 span,
.about-content h2 span,
.achievement-content h2 span,
.company-text h2 span,
.contact-info h2 span {

    color: var(--secondary);

}

.section-heading p {

    color: var(--muted);

}


/* ==========================================
   ABOUT
========================================== */

.about-section {

    background: var(--light);

}

.two-column {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.about-image {

    position: relative;

}

.about-image img {

    width: 100%;

    height: 570px;

    object-fit: cover;

    border-radius: 22px;

}

.experience-card {

    position: absolute;

    bottom: 30px;

    right: -25px;

    background: var(--primary);

    color: white;

    padding: 22px;

    border-radius: 14px;

    display: flex;

    gap: 12px;

    align-items: center;

    box-shadow: var(--shadow);

}

.experience-card strong {

    color: var(--gold-light);

    font-size: 35px;

}

.experience-card span {

    font-size: 12px;

    line-height: 1.4;

}

.about-content .lead {

    font-size: 18px;

    color: var(--primary);

    margin-bottom: 16px;

}

.about-content > p {

    margin-bottom: 15px;

}

.about-features {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin: 25px 0 30px;

}

.about-features div {

    font-size: 13px;

    font-weight: 600;

    color: var(--primary);

}

.about-features i {

    color: var(--gold);

    margin-right: 5px;

}


/* ==========================================
   PASSION
========================================== */

.passion-section {

    background: var(--primary);

    color: white;

    padding: 100px 0;

}

.passion-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.passion-content h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(35px,4vw,52px);

    line-height: 1.15;

    margin-bottom: 20px;

}

.passion-content h2 span {

    color: var(--gold-light);

}

.passion-content p {

    color: rgba(255,255,255,.72);

    margin-bottom: 18px;

}

.passion-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 25px;

}


/* ==========================================
   SERVICES
========================================== */

.service-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;

}

.service-card {

    padding: 30px 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: white;

    transition: .3s;

}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;

}

.service-icon {

    width: 58px;
    height: 58px;

    border-radius: 14px;

    background: #eef5fc;

    color: var(--secondary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;

    margin-bottom: 20px;

}

.service-card h3 {

    color: var(--primary);

    margin-bottom: 10px;

    font-size: 18px;

}

.service-card p {

    font-size: 13px;

    color: var(--muted);

    margin-bottom: 20px;

}

.service-card a {

    color: var(--secondary);

    font-size: 12px;

    font-weight: 700;

}

.service-card a i {

    margin-left: 5px;

}


/* ==========================================
   MDRT
========================================== */

.achievement-section {

    background:
        linear-gradient(
            110deg,
            #061e38,
            #073b72
        );

    color: white;

    padding: 100px 0;

}

.achievement-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

.achievement-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 25px;

}

.achievement-content h2 {

    color: white;

}

.achievement-content h2 span {

    color: var(--gold-light);

}

.achievement-content > p {

    color: rgba(255,255,255,.72);

    margin-bottom: 25px;

}

.mdrt-badge {

    display: flex;

    align-items: center;

    gap: 15px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.15);

    padding: 18px;

    border-radius: 14px;

    margin-bottom: 25px;

}

.mdrt-badge > i {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary);

    font-size: 23px;

}

.mdrt-badge div {

    display: flex;

    flex-direction: column;

}

.mdrt-badge strong {

    color: white;

}

.mdrt-badge span {

    color: rgba(255,255,255,.6);

    font-size: 12px;

}

.achievement-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

}

.achievement-list div {

    color: rgba(255,255,255,.8);

    font-size: 13px;

}

.achievement-list i {

    color: var(--gold);

    margin-right: 7px;

}


/* ==========================================
   PLANS
========================================== */

.plans-section {

    background: var(--light);

}

.plans-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;

}

.plan-card {

    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,.05);

    position: relative;

    transition: .3s;

}

.plan-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

}

.featured-plan {

    border: 2px solid var(--gold);

}

.popular {

    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 3;

    background: var(--gold);

    color: var(--primary);

    padding: 5px 9px;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;

}

.plan-image {

    height: 190px;

    position: relative;

}

.plan-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.plan-image:after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.55)
    );

}

.plan-image span {

    position: absolute;

    bottom: 15px;
    left: 15px;

    z-index: 2;

    color: white;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}

.plan-content {

    padding: 22px;

}

.plan-content h3 {

    color: var(--primary);

    font-size: 18px;

    margin-bottom: 8px;

}

.plan-content p {

    color: var(--muted);

    font-size: 12px;

    margin-bottom: 15px;

}

.plan-content ul {

    list-style: none;

    margin-bottom: 18px;

}

.plan-content li {

    font-size: 12px;

    margin: 6px 0;

    color: var(--text);

}

.plan-content li i {

    color: var(--gold);

    margin-right: 5px;

}

.plan-link {

    color: var(--secondary);

    font-size: 12px;

    font-weight: 800;

}


/* ==========================================
   COMPANY
========================================== */

.company-section {

    padding: 90px 0;

    background:
        linear-gradient(
            120deg,
            #073b72,
            #0a568e
        );

}

.company-container {

    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 80px;

    align-items: center;

}

.company-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}

.company-mark {

    width: 75px;
    height: 75px;

    border-radius: 20px;

    background: var(--gold);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 35px;

}

.company-logo div:last-child {

    display: flex;

    flex-direction: column;

}

.company-logo strong {

    color: white;

    font-size: 23px;

}

.company-logo span {

    color: var(--gold-light);

    font-size: 13px;

}

.company-text h2 {

    color: white;

}

.company-text h2 span {

    color: var(--gold-light);

}

.company-text p {

    color: rgba(255,255,255,.72);

    margin-bottom: 25px;

}


/* ==========================================
   WHY
========================================== */

.why-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;

}

.why-card {

    padding: 35px 25px;

    border: 1px solid var(--border);

    border-radius: 18px;

    position: relative;

}

.why-number {

    position: absolute;

    right: 20px;
    top: 15px;

    color: #e8edf3;

    font-size: 35px;

    font-weight: 800;

}

.why-card > i {

    font-size: 25px;

    color: var(--gold);

    margin-bottom: 20px;

}

.why-card h3 {

    color: var(--primary);

    font-size: 18px;

    margin-bottom: 10px;

}

.why-card p {

    color: var(--muted);

    font-size: 13px;

}


/* ==========================================
   CTA
========================================== */

.cta-section {

    background: var(--gold);

    padding: 60px 0;

}

.cta-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

.cta-container span {

    color: var(--primary);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}

.cta-container h2 {

    color: var(--primary);

    font-family: "Playfair Display", serif;

    font-size: 32px;

    margin-top: 5px;

}


/* ==========================================
   CONTACT
========================================== */

.contact-section {

    background: var(--light);

}

.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;

}

.contact-info > p {

    max-width: 520px;

    color: var(--muted);

    margin-bottom: 30px;

}

.contact-list {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.contact-item {

    display: flex;

    align-items: center;

    gap: 14px;

}

.contact-icon {

    width: 50px;
    height: 50px;

    border-radius: 12px;

    background: white;

    color: var(--secondary);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 5px 15px rgba(0,0,0,.04);

}

.contact-icon.whatsapp {

    color: #20b954;

}

.contact-item div:last-child {

    display: flex;

    flex-direction: column;

}

.contact-item span {

    color: var(--muted);

    font-size: 11px;

}

.contact-item strong {

    color: var(--primary);

    font-size: 14px;

}

.social-links {

    display: flex;

    gap: 10px;

    margin-top: 30px;

}

.social-links a {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}

.social-links a:hover {

    background: var(--gold);

    color: var(--primary);

    transform: translateY(-3px);

}

.contact-form-wrapper {

    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: var(--shadow);

}

.contact-form-wrapper h3 {

    color: var(--primary);

    font-size: 24px;

    margin-bottom: 5px;

}

.contact-form-wrapper > form > p {

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 25px;

}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}

.form-group {

    margin-bottom: 17px;

}

.form-group label {

    display: block;

    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 6px;

}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 8px;

    padding: 12px 14px;

    outline: none;

    font-size: 13px;

    color: var(--primary);

    background: #fbfcfe;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--secondary);

    background: white;

}

.form-group textarea {

    resize: vertical;

}

.submit-btn {

    width: 100%;

    border: 0;

    cursor: pointer;

}

.form-note {

    display: block;

    text-align: center;

    color: var(--muted);

    font-size: 10px;

    margin-top: 12px;

}


/* ==========================================
   FOOTER
========================================== */

.footer {

    background: #031d36;

    color: white;

    padding-top: 70px;

}

.footer-container {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

}

.footer-logo strong {

    color: white;

}

.footer-brand p {

    color: rgba(255,255,255,.55);

    font-size: 12px;

    max-width: 300px;

    margin-top: 18px;

}

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.footer-links h4 {

    color: var(--gold-light);

    font-size: 13px;

    margin-bottom: 8px;

}

.footer-links a {

    color: rgba(255,255,255,.55);

    font-size: 12px;

    transition: .2s;

}

.footer-links a:hover {

    color: white;

}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.08);

    padding: 18px 0;

}

.footer-bottom .container {

    display: flex;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    color: rgba(255,255,255,.4);

    font-size: 10px;

}


/* ==========================================
   FLOATING BUTTONS
========================================== */

.floating-buttons {

    position: fixed;

    right: 20px;

    bottom: 25px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 999;

}

.floating-buttons a {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 21px;

    box-shadow: 0 8px 20px rgba(0,0,0,.2);

    transition: .3s;

}

.floating-buttons a:hover {

    transform: scale(1.1);

}

.floating-call {

    background: var(--primary);

}

.floating-whatsapp {

    background: #20b954;

}


/* ==========================================
   BACK TOP
========================================== */

.back-top {

    position: fixed;

    bottom: 25px;

    left: 20px;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: var(--gold);

    color: var(--primary);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 998;

}

.back-top.show {

    opacity: 1;

    visibility: visible;

}


/* ==========================================
   REVEAL ANIMATION
========================================== */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.reveal.show {

    opacity: 1;

    transform: translateY(0);

}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width: 1050px) {

    .navbar {

        gap: 15px;

    }

    .service-grid,
    .plans-grid,
    .why-grid {

        grid-template-columns: repeat(2,1fr);

    }

    .hero-container {

        grid-template-columns: 1fr 1fr;

    }

    .profile-image {

        width: 350px;
        height: 450px;

    }

}


@media(max-width: 850px) {

    .menu-toggle {

        display: block;

    }

    .navbar {

        position: absolute;

        top: 75px;

        left: 4%;

        width: 92%;

        background: white;

        padding: 25px;

        border-radius: 15px;

        box-shadow: var(--shadow);

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 15px;

    }

    .navbar.show {

        display: flex;

    }

    .nav-link {

        color: var(--primary) !important;

        padding: 5px 0;

    }

    .hero {

        min-height: auto;

        padding: 130px 0 80px;

    }

    .hero-container {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .hero-content {

        margin: auto;

    }

    .hero-buttons,
    .hero-trust {

        justify-content: center;

    }

    .hero-profile {

        margin-top: 30px;

    }

    .stats-grid {

        grid-template-columns: repeat(2,1fr);

    }

    .stat-box:nth-child(2) {

        border-right: 0;

    }

    .two-column,
    .passion-container,
    .achievement-container,
    .company-container,
    .contact-container {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .company-logo {

        justify-content: flex-start;

    }

    .footer-container {

        grid-template-columns: 1fr 1fr;

    }

    .cta-container {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media(max-width: 600px) {

    .section {

        padding: 70px 0;

    }

    .hero h1 {

        font-size: 43px;

    }

    .hero p {

        font-size: 14px;

    }

    .profile-image {

        width: 290px;
        height: 380px;

    }

    .profile-card {

        left: 0;

    }

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .stat-box {

        border-right: 0;

        border-bottom: 1px solid var(--border);

    }

    .service-grid,
    .plans-grid,
    .why-grid,
    .about-features,
    .achievement-list {

        grid-template-columns: 1fr;

    }

    .about-image img,
    .passion-image img,
    .achievement-image img {

        height: 400px;

    }

    .experience-card {

        right: 10px;

    }

    .form-row {

        grid-template-columns: 1fr;

    }

    .contact-form-wrapper {

        padding: 25px 20px;

    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 30px;

    }

    .footer-bottom .container {

        flex-direction: column;

    }

    .cta-container h2 {

        font-size: 27px;

    }

}