
/* =========================================================
   1. GLOBAL RESET AND VARIABLES
========================================================= */

:root {
    --primary-green: #16a661;
    --medium-green: #0d7f4d;
    --dark-green: #073a31;
    --deep-green: #052b25;
    --light-green: #43e990;

    --white: #ffffff;
    --off-white: #f5f9f6;
    --light-bg: #edf6f1;

    --text-dark: #17372c;
    --text-grey: #5b6c64;

    --border-light: rgba(15, 142, 79, 0.16);

    --shadow-soft:
        0 12px 30px rgba(10, 70, 42, 0.10);

    --shadow-medium:
        0 20px 48px rgba(7, 58, 49, 0.18);

    --container-width: 1250px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    overflow-x: hidden;

    background: var(--off-white);
    color: var(--text-dark);

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    line-height: 1.6;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
}


button,
input,
select,
textarea {
    font: inherit;
}


.container {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   2. HEADER AND NAVIGATION
========================================================= */

.site-header,
header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #139b59 0%,
            #087948 50%,
            #075d3c 100%
        );

    border-bottom:
        1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.18);
}


.header-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.main-navigation {
    width: 100%;
}


.main-navigation ul,
nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    list-style: none;
}


.main-navigation ul li,
nav ul li {
    position: relative;
}


.main-navigation ul li a,
nav ul li a {
    position: relative;

    display: block;

    padding: 17px 18px;

    color: rgba(255, 255, 255, 0.94);

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;

    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}


.main-navigation ul li a::after,
nav ul li a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 9px;

    width: 0;
    height: 2px;

    background: #a7ffd0;

    border-radius: 20px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.main-navigation ul li a:hover,
.main-navigation ul li a.active,
nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;

    background-color:
        rgba(255, 255, 255, 0.10);

    border-radius: 7px;
}


.main-navigation ul li a:hover::after,
.main-navigation ul li a.active::after,
nav ul li a:hover::after,
nav ul li a.active::after {
    width: calc(100% - 35px);
}


/* =========================================================
   3. CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 20px 120px;

    background:
        linear-gradient(
            rgba(4, 50, 38, 0.68),
            rgba(4, 43, 34, 0.88)
        ),
        url(
            "https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1600&q=85"
        );

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;

    overflow: hidden;
}


.contact-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(64, 243, 150, 0.20),
            transparent 35%
        );

    pointer-events: none;
}


.contact-hero::after {
    content: "";

    position: absolute;

    left: -5%;
    bottom: -80px;

    width: 110%;
    height: 150px;

    background: var(--off-white);

    border-radius:
        50% 50% 0 0 /
        100% 100% 0 0;

    border-top:
        2px solid rgba(67, 233, 144, 0.72);

    box-shadow:
        0 -10px 30px
        rgba(47, 228, 136, 0.18);
}


.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(6, 75, 57, 0.16),
            rgba(3, 35, 28, 0.26)
        );
}


.contact-hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}


.hero-small-title {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 18px;

    color: #bdffd9;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(167, 255, 208, 0.32);

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


.contact-hero h1 {
    margin-bottom: 15px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(46px, 7vw, 76px);
    font-weight: 600;
    line-height: 1.12;

    text-shadow:
        0 6px 22px rgba(0, 0, 0, 0.35);
}


.hero-title-line {
    width: 90px;
    height: 4px;

    margin: 0 auto 25px;

    background:
        linear-gradient(
            to right,
            #23cb73,
            #75f2ad
        );

    border-radius: 20px;

    box-shadow:
        0 0 20px rgba(66, 238, 146, 0.48);
}


.contact-hero-content p {
    max-width: 850px;

    margin: 0 auto;

    color:
        rgba(239, 255, 247, 0.91);

    font-size: 17px;
    line-height: 1.9;
}


.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 32px;
    padding: 13px 25px;

    background:
        linear-gradient(
            135deg,
            #1fc46d,
            #0b7547
        );

    color: #ffffff;

    text-decoration: none;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.hero-scroll-btn:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #0b7547,
            #24d477
        );

    box-shadow:
        0 17px 32px rgba(0, 0, 0, 0.26);
}


/* =========================================================
   4. CONTACT INTRODUCTION
========================================================= */

.contact-introduction {
    padding: 90px 0 55px;

    background: var(--off-white);
}


.section-heading {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.section-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary-green);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.section-heading h2,
.contact-info-panel h2,
.hours-heading h2 {
    color: #153c2e;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.25;
}


.section-title-line {
    width: 80px;
    height: 4px;

    margin: 18px auto 23px;

    background:
        linear-gradient(
            to right,
            #15a95f,
            #5ee69d
        );

    border-radius: 20px;
}


.left-line {
    margin-left: 0;
}


.section-heading p {
    color: var(--text-grey);

    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   5. CONTACT DETAIL CARDS
========================================================= */

.contact-details-section {
    position: relative;

    padding: 35px 0 95px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(33, 181, 105, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(33, 181, 105, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f5f9f6 0%,
            #edf6f1 100%
        );

    overflow: hidden;
}


.contact-details-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(11, 110, 65, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 110, 65, 0.018) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    pointer-events: none;
}


.contact-cards-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}


.contact-detail-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 340px;

    padding: 30px 24px 26px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fcf9
        );

    border:
        1px solid rgba(14, 140, 79, 0.14);

    border-radius: 18px;

    box-shadow:
        0 14px 35px rgba(7, 74, 44, 0.10);

    transition:
        transform 0.38s ease,
        box-shadow 0.38s ease,
        border-color 0.38s ease;
}


.contact-detail-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            to right,
            #0f9f59,
            #58e596
        );

    border-radius: 18px 18px 0 0;
}


.contact-detail-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(25, 171, 95, 0.40);

    box-shadow:
        0 24px 48px rgba(7, 74, 44, 0.19);
}


.contact-card-icon {
    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:
        linear-gradient(
            145deg,
            #18b464,
            #087344
        );

    color: #ffffff;

    border-radius: 18px;

    font-size: 28px;

    box-shadow:
        0 10px 24px rgba(8, 116, 68, 0.24);

    transition:
        transform 0.35s ease,
        border-radius 0.35s ease;
}


.contact-detail-card:hover .contact-card-icon {
    transform:
        translateY(-4px)
        rotate(-4deg);

    border-radius: 50%;
}


.contact-card-label {
    display: inline-block;

    margin-bottom: 7px;

    color: var(--primary-green);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.contact-detail-card h3 {
    margin-bottom: 12px;

    color: #153c2e;

    font-size: 20px;
    font-weight: 750;
    line-height: 1.4;
}


.contact-detail-card p {
    color: #5c6d64;

    font-size: 14px;
    line-height: 1.72;
}


.contact-card-links {
    display: grid;

    gap: 8px;

    margin-top: auto;
    padding-top: 18px;
}


.contact-card-links a,
.location-link {
    color: #087344;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-card-links a:hover,
.location-link:hover {
    color: #16a661;

    transform: translateX(3px);
}


.location-link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: auto;
    padding-top: 18px;
}


.address-text {
    margin-bottom: 18px;
}


/* =========================================================
   6. CONTACT FORM SECTION
========================================================= */

.contact-form-section {
    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #073b31 0%,
            #052a24 100%
        );

    color: #ffffff;

    overflow: hidden;
}


.contact-form-section::before {
    content: "";

    position: absolute;

    top: -200px;
    left: -180px;

    width: 470px;
    height: 470px;

    background:
        radial-gradient(
            circle,
            rgba(69, 237, 146, 0.15),
            transparent 68%
        );
}


.contact-form-section::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -200px;

    width: 470px;
    height: 470px;

    background:
        radial-gradient(
            circle,
            rgba(69, 237, 146, 0.11),
            transparent 68%
        );
}


.contact-form-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: start;

    gap: 55px;
}


.contact-info-panel .section-subtitle {
    color: #79efad;
}


.contact-info-panel h2 {
    color: #ffffff;
}


.contact-panel-intro {
    color:
        rgba(230, 247, 238, 0.82);

    font-size: 16px;
    line-height: 1.85;
}


.support-list {
    display: grid;

    gap: 17px;

    margin-top: 30px;
}


.support-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    padding: 18px 16px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.support-item:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.10);

    border-color:
        rgba(87, 237, 155, 0.32);
}


.support-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #26c976,
            #0a7546
        );

    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(19, 190, 103, 0.23);
}


.support-item h3 {
    margin-bottom: 5px;

    color: #ffffff;

    font-size: 16px;
}


.support-item p {
    color:
        rgba(224, 241, 232, 0.74);

    font-size: 13px;
    line-height: 1.65;
}


.quick-contact-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 27px;
}


.whatsapp-btn,
.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 19px;

    color: #ffffff;

    text-decoration: none;

    border-radius: 28px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.whatsapp-btn {
    background:
        linear-gradient(
            135deg,
            #25d366,
            #128c4a
        );

    box-shadow:
        0 10px 24px rgba(18, 140, 74, 0.24);
}


.call-btn {
    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.24);

    backdrop-filter: blur(8px);
}


.whatsapp-btn:hover,
.call-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.22);
}


.call-btn:hover {
    background:
        rgba(255, 255, 255, 0.14);
}


/* =========================================================
   7. CONTACT FORM CARD
========================================================= */

.contact-form-card {
    padding: 32px 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(246, 252, 248, 0.98)
        );

    border:
        1px solid rgba(255, 255, 255, 0.35);

    border-radius: 22px;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.24);
}


.form-card-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 27px;
}


.form-heading-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #18b464,
            #087344
        );

    color: #ffffff;

    border-radius: 17px;

    font-size: 25px;

    box-shadow:
        0 10px 24px rgba(8, 116, 68, 0.24);
}


.form-card-heading span {
    display: block;

    margin-bottom: 3px;

    color: #16a661;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.form-card-heading h2 {
    color: #153c2e;

    font-size: 26px;
    line-height: 1.3;
}


.contact-form {
    display: grid;

    gap: 20px;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


.form-group {
    display: grid;

    gap: 8px;
}


.form-group label {
    color: #264c3b;

    font-size: 13px;
    font-weight: 700;
}


.form-group label span {
    color: #d73939;
}


.input-wrapper {
    position: relative;
}


.input-wrapper > i {
    position: absolute;

    top: 50%;
    left: 15px;

    color: #13a35c;

    font-size: 16px;

    transform: translateY(-50%);

    pointer-events: none;
}


.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;

    padding:
        13px
        14px
        13px
        43px;

    background: #f8fbf9;
    color: #1e4333;

    border:
        1px solid rgba(15, 142, 79, 0.17);

    border-radius: 11px;

    outline: none;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #95a29c;
}


.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    background: #ffffff;

    border-color:
        rgba(22, 166, 97, 0.62);

    box-shadow:
        0 0 0 4px rgba(22, 166, 97, 0.09);
}


.input-wrapper select {
    cursor: pointer;

    appearance: none;
}


.select-wrapper::after {
    content: "\F282";

    position: absolute;

    top: 50%;
    right: 15px;

    color: #5f746a;

    font-family: "bootstrap-icons";

    transform: translateY(-50%);

    pointer-events: none;
}


.textarea-wrapper > i {
    top: 18px;

    transform: none;
}


.input-wrapper textarea {
    min-height: 135px;

    resize: vertical;
}


.form-consent {
    display: flex;
    align-items: flex-start;

    gap: 9px;
}


.form-consent input {
    width: 16px;
    height: 16px;

    margin-top: 3px;

    accent-color: var(--primary-green);

    cursor: pointer;
}


.form-consent label {
    color: #5d6d65;

    font-size: 12.5px;
    line-height: 1.55;
}


.submit-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    background:
        linear-gradient(
            135deg,
            #1fbd69,
            #087344
        );

    color: #ffffff;

    border: none;
    border-radius: 30px;

    cursor: pointer;

    font-size: 14px;
    font-weight: 750;

    box-shadow:
        0 12px 26px rgba(8, 116, 68, 0.24);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.submit-btn:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #087344,
            #28d077
        );

    box-shadow:
        0 17px 32px rgba(8, 116, 68, 0.31);
}


.form-note {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #718078;

    text-align: center;

    font-size: 11.5px;
    line-height: 1.5;
}


.form-note i {
    color: #16a661;
}


/* =========================================================
   8. BUSINESS HOURS
========================================================= */

.business-hours-section {
    padding: 70px 0;

    background:
        linear-gradient(
            180deg,
            #f7fbf8,
            #edf5f0
        );
}


.business-hours-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 45px;

    padding: 35px;

    background: #ffffff;

    border:
        1px solid rgba(15, 142, 79, 0.13);

    border-radius: 20px;

    box-shadow:
        0 16px 40px rgba(8, 84, 49, 0.10);
}


.hours-heading {
    display: flex;
    align-items: center;

    gap: 18px;
}


.hours-main-icon {
    flex: 0 0 68px;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #18b464,
            #087344
        );

    color: #ffffff;

    border-radius: 20px;

    font-size: 29px;

    box-shadow:
        0 11px 25px rgba(8, 116, 68, 0.24);
}


.hours-heading h2 {
    font-size: 29px;
}


.hours-grid {
    display: grid;

    gap: 12px;
}


.hours-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 14px 16px;

    background:
        linear-gradient(
            135deg,
            #f2faf5,
            #f8fcf9
        );

    border:
        1px solid rgba(15, 142, 79, 0.12);

    border-radius: 11px;
}


.hours-item span {
    color: #607067;

    font-size: 13px;
}


.hours-item strong {
    color: #184532;

    font-size: 13px;
}


/* =========================================================
   9. CONTACT HIGHLIGHTS
========================================================= */

.contact-highlights {
    padding: 55px 0;

    background:
        linear-gradient(
            135deg,
            #073b31 0%,
            #052a24 100%
        );

    border-top:
        1px solid rgba(81, 232, 151, 0.17);

    border-bottom:
        1px solid rgba(81, 232, 151, 0.17);
}


.highlights-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.highlight-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 18px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 14px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.highlight-item:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.10);

    border-color:
        rgba(79, 237, 151, 0.33);
}


.highlight-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #26c976,
            #0a7546
        );

    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(19, 190, 103, 0.23);
}


.highlight-item strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 15px;
}


.highlight-item span {
    display: block;

    color:
        rgba(226, 244, 235, 0.68);

    font-size: 12.5px;
    line-height: 1.5;
}


/* =========================================================
   10. FOOTER
========================================================= */

.site-footer,
footer {
    position: relative;

    padding: 34px 20px;

    background:
        linear-gradient(
            135deg,
            #142d23 0%,
            #0b231b 100%
        );

    color: #ffffff;

    text-align: center;

    border-top:
        1px solid rgba(67, 233, 144, 0.22);
}


.footer-content {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


.footer-content > p:first-child {
    color:
        rgba(255, 255, 255, 0.88);

    font-size: 14px;
    letter-spacing: 0.2px;
}


.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin: 18px 0;
}


.social-icons a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 50%;

    text-decoration: none;

    font-size: 18px;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.social-icons a:hover {
    color: #ffffff;

    background: #18a85f;

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(24, 168, 95, 0.30);
}


.social-icons a[aria-label*="Facebook"]:hover {
    background-color: #1877f2;
}


.social-icons a[aria-label*="X"]:hover {
    background-color: #111111;
}


.social-icons a[aria-label*="LinkedIn"]:hover {
    background-color: #0a66c2;
}


.footer-credit {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 12px;
}


/* =========================================================
   11. TABLET RESPONSIVE
========================================================= */

@media screen and (max-width: 1050px) {

    .contact-cards-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .contact-form-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .business-hours-wrapper {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .highlights-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media screen and (max-width: 768px) {

    .header-container {
        padding: 5px 15px;
    }


    .main-navigation ul,
    nav ul {
        gap: 3px;
    }


    .main-navigation ul li a,
    nav ul li a {
        padding: 11px 12px;

        font-size: 14px;
    }


    .contact-hero {
        min-height: 480px;

        padding: 75px 18px 105px;
    }


    .contact-hero-content p {
        font-size: 15px;
    }


    .contact-introduction {
        padding: 75px 0 40px;
    }


    .contact-details-section {
        padding-bottom: 75px;
    }


    .contact-form-section {
        padding: 75px 0;
    }


    .business-hours-section {
        padding: 60px 0;
    }
}


/* =========================================================
   12. MOBILE RESPONSIVE
========================================================= */

@media screen and (max-width: 600px) {

    .container {
        padding: 0 16px;
    }


    .header-container {
        padding: 8px 10px;
    }


    .main-navigation ul,
    nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        width: 100%;

        gap: 5px;
    }


    .main-navigation ul li a,
    nav ul li a {
        padding: 10px 7px;

        text-align: center;

        font-size: 13px;
    }


    .main-navigation ul li a::after,
    nav ul li a::after {
        bottom: 5px;
    }


    .contact-hero {
        min-height: 450px;

        padding: 65px 15px 95px;
    }


    .hero-small-title {
        font-size: 11px;
        letter-spacing: 1px;
    }


    .contact-hero h1 {
        font-size: 42px;
    }


    .contact-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    .hero-scroll-btn {
        padding: 11px 20px;

        font-size: 13px;
    }


    .contact-introduction {
        padding: 65px 0 35px;
    }


    .section-heading h2,
    .contact-info-panel h2,
    .hours-heading h2 {
        font-size: 31px;
    }


    .section-heading p,
    .contact-panel-intro {
        font-size: 14.5px;
    }


    .contact-details-section {
        padding: 30px 0 65px;
    }


    .contact-cards-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .contact-detail-card {
        min-height: auto;
    }


    .contact-form-section {
        padding: 65px 0;
    }


    .quick-contact-buttons {
        flex-direction: column;
    }


    .whatsapp-btn,
    .call-btn {
        width: 100%;
    }


    .contact-form-card {
        padding: 25px 20px;

        border-radius: 18px;
    }


    .form-card-heading h2 {
        font-size: 23px;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .business-hours-wrapper {
        padding: 25px 20px;
    }


    .hours-heading {
        align-items: flex-start;
    }


    .hours-main-icon {
        width: 58px;
        height: 58px;

        flex-basis: 58px;

        font-size: 25px;
    }


    .hours-item {
        align-items: flex-start;
        flex-direction: column;

        gap: 4px;
    }


    .contact-highlights {
        padding: 45px 0;
    }


    .highlights-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .site-footer,
    footer {
        padding: 30px 15px;
    }
}


/* =========================================================
   13. SMALL MOBILE
========================================================= */

@media screen and (max-width: 390px) {

    .main-navigation ul,
    nav ul {
        grid-template-columns: 1fr 1fr;
    }


    .main-navigation ul li a,
    nav ul li a {
        font-size: 12px;
    }


    .contact-hero h1 {
        font-size: 36px;
    }


    .contact-detail-card {
        padding-left: 19px;
        padding-right: 19px;
    }


    .form-card-heading {
        align-items: flex-start;
    }


    .form-heading-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        font-size: 22px;
    }
}


/* =========================================================
   14. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}