:root {
    --primary-orange: #e20604;
    --dark-bg: #1f2329;
    --light-text: #ffffff;
    --dark-text: #333333;
    --navbar-height: 80px;
    --topbar-height: 40px;
}

/* --- About Section Styles --- */
/* --- Main Section Layout --- */
.about-section .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: auto;
}

/* --- Left Column: Images --- */
.image-column {
    flex: 1;
    min-width: 50%;
}

.image-wrapper {
    position: relative;
    /* This is key for positioning children */
    padding: 2rem;
    /* Give space for shapes */
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 50vh;
}

.foreground-image {
    position: absolute;
    width: 55%;
    left: -10px;
    bottom: -3px;
    border-radius: 12px;
    z-index: 2;
}

.experience-box {
    position: absolute;
    bottom: 0px;
    /* Position it relative to the wrapper */
    right: 0px;
    /* Position it relative to the wrapper */
    background-color: #1a1a1a;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: left;
    z-index: 3;
    /* On top of everything */
}

.experience-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-box p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Decorative Shapes --- */
.shape {
    position: absolute;
    z-index: -1;
    /* Behind everything */
}

.dots {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 20px;
    background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
    background-size: 15px 15px;
}

.star {
    top: 0;
    left: 0;
    font-size: 8rem;
    color: #ffe8ec;
    content: '\2606';
    /* Unicode for star outline */
}

.circle-swoosh {
    width: 250px;
    height: 250px;
    border: 30px solid #ffe8ec;
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    /* Make it a swoosh by hiding parts of the border */
    border-color: transparent #ffe8ec #ffe8ec transparent;
    transform: rotate(45deg);
}

/* --- Right Column: Text --- */
.text-column {
    flex: 1;
    /* min-width: 50%; */
}

.tagline {
    color: #d90429;
    /* Red color */
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.tagline::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #d90429;
    margin-right: 10px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #212529;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    gap: 1rem;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #343a40;
    font-weight: 600;
}

.features-list i {
    color: #d90429;
    /* Red checkmark */
    font-size: 1.2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #d90429;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #b20322;
    transform: translateY(-3px);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
        /* Stack columns vertically on tablets */
        text-align: center;
    }

    .tagline {
        justify-content: center;
    }

    .image-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        text-align: left;
        display: inline-block;
        /* To center the block in a centered parent */
    }

    .features-list li {
        margin-bottom: 0.75rem;
    }

    .image-wrapper {
        padding: 1rem;
    }

    /* Hide some decorative elements on small screens to reduce clutter */
    .star,
    .circle-swoosh {
        display: none;
    }
}


/* Services Section Start */

.services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    background-color: var(--brown);
    padding: 50px;
}

/* ===== Oru Oru Service kum Wrapper ===== */
.service-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* ===== Service Card Style ===== */
.service-card {
    width: 100%;
    max-width: 700px;
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    background-color: var(--light-text);
    padding: 10px;
}

.service-card.construction {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 165, 0, 0.3);
        background-image: url(../img/im);
}

.service-card.designs {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 206, 209, 0.3);
}

.service-card .card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.5s ease;
    border-radius: 20px;
}

/* ===== Default Title ===== */
.service-title-default {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.4s ease;
}

/* ===== Hover Effects ===== */
.service-wrapper:hover .service-title-default {
    color: #ffae00;
}

.service-wrapper.designs:hover .service-title-default {
    color: #00e5e9;
}

.service-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-card.construction:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 45px rgba(255, 165, 0, 0.6);
}

.service-card.designs:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7),
        0 0 45px rgba(0, 206, 209, 0.7);
}

.service-card:hover .card-image {
    transform: scale(1.15);
    filter: brightness(0.7);
}

/* ===== Hover la Ulla Vara Content ===== */
.card-content-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 30%, transparent);
}

.service-card:hover .card-content-hover {
    transform: translateY(0);
    opacity: 1;
}

.card-content-hover h2 {
    font-family: 'Teko', sans-serif;
    color: #fff;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.card-content-hover .btn {
    font-family: 'Poppins', sans-serif;
    padding: 8px 25px;
    background-color: #ffae00;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card.designs .btn {
    background-color: #00e5e9;
}

.card-content-hover .btn:hover {
    background-color: #fff;
    transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .service-wrapper {
        width: 45% !important;
    }

    .service-card {
        height: 250px;
    }
}

@media (min-width: 1024px) {
    .service-wrapper {
        width: 45%;
    }

    .service-card {
        height: 300px;
    }

    .service-title-default {
        font-size: 3rem;
    }
}

/* Mobile ku default CSS work aagidum (100% width, onnu keela onnu) */
.service-wrapper {
    width: 100%;
}

@media (min-width: 768px) {
    .service-wrapper {
        width: calc(30% - 20px);
    }
}

@media (min-width: 1024px) {
    .service-wrapper {
        width: calc(50% - 140px);
    }
}

@media (max-width: 767px) {
    
    .service-title-default {
        font-size: 30px;
        margin-bottom: 20px;
    }
}


@media (max-width: 450px) {
    
    .service-title-default {
        font-size: 30px;
        /* margin-top: 20px; */
        margin-bottom: 20px;
    }
}

/* Count Number Section Start */

.stats-container {
    display: flex;
    width: 100%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.stats-section {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 30px;
}

.dark-section {
    background-color: #0d1b2a;
    color: var(--primary-orange);
}

.yellow-section {
    background-color: var(--primary-orange);
    color: #fff;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.stat-item i {
    font-size: 3rem;
}

.stat-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-text p {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
    }

    .stats-section {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        flex-direction: column;
        gap: 40px;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stat-text h2 {
        font-size: 3rem;
    }

    .stat-text p {
        font-size: 0.9rem;
    }
}


/* Our Skill Section Start */

.our-skill-section {
    padding: 60px 0;
    background-color: var(--section-bg);
    position: relative;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 15px,
            rgba(240, 106, 67, 0.02) 15px,
            rgba(240, 106, 67, 0.02) 30px);
}

.skill-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.skill-text-content .subtitle {
    display: flex;
    align-items: center;
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.skill-text-content .subtitle .line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
    margin-right: 10px;
}

.skill-text-content h1 {
    font-size: 2.6em;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.skill-text-content .description {
    font-size: 0.95em;
    color: var(--grey-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.skill-bar-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 600;
    font-size: 1em;
    color: var(--dark-text);
}

.skill-percentage {
    font-weight: 700;
    font-size: 1em;
    color: var(--dark-text);
}

.progress-track {
    height: 8px;
    background-color: var(--progress-track-bg);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-orange);
    border-radius: 4px;
    transition: width 0.8s ease-in-out;
}

.btn-more-about {
    background-color: var(--primary-orange);
    color: var(--light-text);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius-btn);
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-more-about:hover {
    background-color: #d85025;
}

.skill-image-content {
    position: relative;
}

.image-frame-top {
    position: relative;
    padding: 10px;
    border: solid var(--primary-orange);
    border-width: 8px 8px 4px 4px;
    border-radius: calc(var(--border-radius-img) + 6px);
    background-color: var(--primary-orange);
}

.image-frame-top img {
    display: block;
    width: 100%;
    border-radius: var(--border-radius-img);
    position: relative;
    z-index: 1;
}

.image-wrapper-bottom-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: -50px;
    left: -30px;
    border: 6px solid var(--section-bg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.image-wrapper-bottom-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .skill-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .skill-image-content {
        margin-top: 50px;
        padding: 0 20px;
    }

    .image-wrapper-bottom-circle {
        width: 180px;
        height: 180px;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .skill-text-content h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .our-skill-section {
        padding: 60px 0;
    }

    .skill-text-content h1 {
        font-size: 2em;
        text-align: center;
    }

    .skill-text-content .subtitle {
        justify-content: center;
    }

    .skill-text-content .description {
        text-align: center;
    }

    .skill-bar-item {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-more-about {
        display: block;
        text-align: center;
        max-width: 200px;
        margin: 20px auto 0 auto;
    }

    .image-wrapper-bottom-circle {
        width: 160px;
        height: 160px;
        bottom: -30px;
    }
}

@media (max-width: 480px) {
    .skill-text-content h1 {
        font-size: 1.8em;
    }

    .image-frame-top {
        padding: 8px;
        border-width: 6px 6px 3px 3px;
    }

    .image-wrapper-bottom-circle {
        width: 140px;
        height: 140px;
        bottom: -25px;
        border-width: 4px;
    }
}

/* Our Team Members Section Start */

.team-members-section {
    padding: 70px 0;
    background-color: var(--section-bg);
    text-align: center;
}

.section-title-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.section-title-centered .line {
    height: 2px;
    width: 40px;
    background-color: var(--primary-orange);
}

.section-title-centered .subtitle {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.95em;
    margin: 0 15px;
    text-transform: uppercase;
}

.team-members-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 0;
    margin-bottom: 50px;
    line-height: 1.3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member-card {
    background-color: #f0f0f0;
    /* Fallback bg for image area */
    border-radius: var(--border-radius-card);
    overflow: hidden;
    /* Important for image and info panel rounding */
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.member-image-wrapper {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 10px;
}

.member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transform: translateX(0);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.team-member-card:hover .member-image-wrapper img {
    filter: grayscale(0%);
    transform: translateX(10px) scale(1.03);
    /* Slight right move and zoom */
}

.member-info {
    position: absolute;
    bottom: 15px;
    /* Spacing from card bottom */
    left: 15px;
    right: 15px;
    background-color: #000;
    padding: 15px;
    border-radius: 8px;
    /* Slightly smaller radius than card */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}


.info-text h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--light-text);
    margin: 0 0 3px 0;
}

.info-text p {
    font-size: 0.85em;
    color: var(--light-text);
    margin: 0;
}

.info-text a {
    text-decoration: none;
    color: var(--dark-text);
}

.info-text a :hover {
    color: var(--primary-orange);
}

.share-icon {
    width: 40px;
    height: 40px;
    background-color: var(--icon-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.team-member-card:hover .share-icon {
    background-color: var(--primary-orange);
    transform: scale(1.1);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .team-members-section h2 {
        font-size: 2.2em;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }

    .member-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .team-members-section h2 {
        font-size: 2em;
    }

    .team-grid {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
    }

    .member-image-wrapper {
        height: 380px;
    }

    /* Revert or adjust as preferred for single column */
}

@media (max-width: 480px) {
    .team-members-section h2 {
        font-size: 1.8em;
    }

    .section-title-centered .subtitle {
        font-size: 0.9em;
    }

    .info-text h3 {
        font-size: 1em;
    }

    .info-text p {
        font-size: 0.8em;
    }

    .share-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }

    .member-image-wrapper {
        height: 320px;
    }
}



/* Contact Address and Contact From */

.top-info-bar-section {
    background-image: url(../img/banner-img/4.png);
    background-color: #000000b4;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.top-info-bar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--top-bar-overlay);
    z-index: 1;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.info-box {
    background-color: var(--light-text);
    padding: 35px 20px;
    border-radius: var(--border-radius-main);
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.info-icon {
    font-size: 26px;
    color: var(--primary-orange);
    margin-right: 18px;
    line-height: 1;
    width: 30px;
    text-align: center;
}

.info-text h4 {
    margin: 0 0 4px 0;
    font-size: 1.05em;
    color: var(--dark-text);
    font-weight: 600;
}

.info-text p {
    margin: 0;
    font-size: 0.85em;
    color: var(--grey-text);
    line-height: 1.4;
}

.bottom-contact-form-section {
    position: relative;
    background-color: var(--dark-bg-form-underlay);
}

.bottom-contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg-form-underlay);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 48% 100%, 0 100%);
    z-index: 0;
}


.content-form-grid-wrapper {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border-radius: var(--border-radius-main);
    overflow: hidden;
}

.content-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
}

.left-content-pane {
    background-color: var(--left-pane-bg);
    padding: 50px 40px;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 L60 20 L120 80 M30 80 L30 110 M90 80 L90 110 M50 110 L70 110 M50 80 L70 80' stroke='rgba(240,106,67,0.09)' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    background-repeat: repeat;
    border-right: 2px solid var(--primary-orange);
}

.left-content-pane .subtitle-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.left-content-pane .subtitle-wrapper .line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
    margin-right: 10px;
}

.left-content-pane .subtitle-wrapper span {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.9em;
}

.left-content-pane h2 {
    font-size: 50px;
    color: var(--dark-text);
    margin: 0 0 18px 0;
    line-height: 1.35;
    font-weight: 700;
}

.left-content-pane .description {
    color: var(--grey-text);
    font-size: 0.9em;
    margin-bottom: 35px;
    line-height: 1.7;
}

.support-person {
    display: flex;
    align-items: center;
}

.support-person img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--light-text);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.support-info h4 {
    margin: 0 0 2px 0;
    font-size: 1em;
    color: var(--dark-text);
    font-weight: 600;
}

.support-info p {
    margin: 0;
    font-size: 0.8em;
    color: var(--grey-text);
}

.right-form-pane {
    background-color: var(--form-bg);
    padding: 50px 40px;
}

.right-form-pane h3 {
    font-size: 1.7em;
    color: var(--dark-text);
    margin: 0 0 30px 0;
    font-weight: 700;
}

.right-form-pane form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.right-form-pane form .form-group {
    position: relative;
}

.right-form-pane form input[type="text"],
.right-form-pane form input[type="email"],
.right-form-pane form textarea {
    width: 100%;
    padding: 13px 18px 13px 45px;
    border: 1px solid #5f5b5b83;
    border-radius: 6px;
    font-size: 0.9em;
    color: var(--dark-text);
    box-sizing: border-box;
    background-color: #F9FAFB;
    transition: border-color 0.3s ease;
}

.right-form-pane form input:focus,
.right-form-pane form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(240, 106, 67, 0.2);
}

.right-form-pane form input[type="text"]::placeholder,
.right-form-pane form input[type="email"]::placeholder,
.right-form-pane form textarea::placeholder {
    color: #313030;
}

.right-form-pane form textarea {
    min-height: 110px;
    resize: vertical;
    margin-bottom: 25px;
    padding: 15px 18px 15px 45px;
}

.right-form-pane form .form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey-text);
    font-size: 0.9em;
    pointer-events: none;
}

.right-form-pane form .form-group-textarea .form-icon {
    top: 18px;
    transform: translateY(0);
}

.right-form-pane form .btn-submit {
    background-color: var(--primary-orange);
    color: var(--light-text);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.right-form-pane form .btn-submit:hover {
    background-color: #d85025;
}

@media (max-width: 992px) {
    .info-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .content-form-grid {
        grid-template-columns: 1fr;
    }

    .left-content-pane {
        text-align: center;
    }

    .left-content-pane .subtitle-wrapper {
        justify-content: center;
    }

    .support-person {
        flex-direction: column;
        text-align: center;
    }

    .support-person img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .bottom-contact-form-section::before {
        clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    }

}

@media (max-width: 768px) {
    .top-info-bar-section {
        padding: 40px 0;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }

    .left-content-pane {
        padding: 40px 25px;
    }

    .left-content-pane h2 {
        font-size: 1.9em;
    }

    .right-form-pane {
        padding: 40px 25px;
    }

    .right-form-pane h3 {
        font-size: 1.5em;
        text-align: center;
    }

    .right-form-pane form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .right-form-pane form .form-row .form-group {
        margin-bottom: 20px;
    }

    .bottom-contact-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .info-boxes-grid {
        grid-template-columns: 1fr;
    }

    .info-text h4 {
        font-size: 1em;
    }

    .left-content-pane h2 {
        font-size: 1.7em;
    }

    .description {
        font-size: 0.85em;
    }

    .right-form-pane form input,
    .right-form-pane form textarea {
        padding-left: 40px;
        font-size: 0.85em;
    }

    .right-form-pane form .form-icon {
        left: 15px;
    }
}