/* CustomSoftwareandai.css - Original Styles + New Contact Section + Full Responsiveness */

:root {
    --golden-gradient: linear-gradient(45deg, #A16C16, #E6B554);
    --text-primary: #181819;
    --text-secondary: #8D8D8D;
    --gold: #E6B554;
    --gold-mid: #A16C16;
    --white: #fff;
    --border: #E6E6E6;
    --gray-bg: #F8F8F8;
}

/* ===== WHAT WE DELIVER SECTION ===== */

.delivery-section {
    background: #ffffff;
    /* Cream/off-white matching the image background */
    padding: 70px 60px 80px;
    max-width: 1440px;
    margin: 0 auto;
}

.delivery-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* LEFT-ALIGNED heading, large bold black, no underline */
.delivery-heading {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #111111;
    margin-bottom: 50px;
    text-align: left;
    display: block;
    line-height: 1;
}

.delivery-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2.49px solid transparent;
    border-image-source: linear-gradient(90deg, #E6B554 0%, #A16C16 100%);
    border-image-slice: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    /* ensures the image stays inside the circle */
}

.delivery-icon-circle img {
    width: 50% !important;
    /* smaller size – adjust percentage as needed */
    height: 50% !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* forces image to white regardless of original color */
}

/* Remove the underline pseudo-element entirely */
.delivery-heading::after {
    display: none;
}

/* Row layout */
.delivery-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

/* 3-card row */
.delivery-row--3 {
    justify-content: flex-start;
}

.delivery-row--3 .delivery-card {
    flex: 1;
    max-width: calc((100% - 48px) / 3);
}

/* 2-card row — centered with offset matching image */
.delivery-row--2 {
    justify-content: center;
    padding: 0 0;
}

.delivery-row--2 .delivery-card {
    flex: 0 0 calc((100% - 48px) / 3);
    /* Same width as top row cards */
}

/* Card styling */
.delivery-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* CENTER icon and text horizontally */
    text-align: center;
}

.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* GOLD GRADIENT FILLED circle — centered in card */
.delivery-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #E6B554 0%, #C8922A 55%, #A16C16 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    /* auto left/right centers it */
    flex-shrink: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(161, 108, 22, 0.3);
}

.delivery-icon-circle svg {
    width: 36px;
    height: 36px;
    display: block;
}

/* Card heading: bold, uppercase, black, centered */
.delivery-card h3 {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
    line-height: 1.45;
    text-align: center;
}

/* Remove old paragraph styles inside card */
.delivery-card p {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .delivery-section {
        padding: 50px 30px 60px;
    }

    .delivery-row--3 .delivery-card,
    .delivery-row--2 .delivery-card {
        flex: 1;
        max-width: none;
    }

    .delivery-row--2 {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .delivery-section {
        padding: 40px 20px 50px;
    }

    .delivery-heading {
        font-size: 2.8rem;
        margin-bottom: 36px;
    }

    .delivery-row {
        flex-direction: column;
        gap: 16px;
    }

    .delivery-row--3 .delivery-card,
    .delivery-row--2 .delivery-card {
        max-width: 100%;
        flex: none;
    }

    .delivery-icon-circle {
        width: 60px;
        height: 60px;
    }

    .delivery-icon-circle svg {
        width: 30px;
        height: 30px;
    }

    .delivery-card {
        padding: 24px 22px 28px;
    }

    .delivery-card h3 {
        font-size: 0.85rem;
    }

}

@media (max-width: 420px) {
    .delivery-heading {
        font-size: 2.2rem;
    }

    .delivery-icon-circle {
        width: 52px;
        height: 52px;
    }

    .delivery-icon-circle svg {
        width: 26px;
        height: 26px;
    }
}

/**************
 * delivery section end
 **************/


/* ===== WHO IT'S FOR SECTION — Updated to match design image ===== */
.who-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #fff;
    overflow: hidden;
}

.who-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ── LEFT: image area ── */
.who-images {
    flex: 0 0 50%;
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Large gold circular watermark logo behind the photo */
.who-bg-image {
    position: absolute;
    top: -40%;
    bottom:2%;
    left: -145px;
    
    /* bleeds slightly left */
    
    transform: rotate(30deg);
    margin-bottom: 500px;
    width: 520px;
    height: 620px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
   
    /* fully visible – gold circle logo */
}

/* Front photo on top of the watermark */
.who-front-image {
    position: relative;
    z-index: 2;
    width: 80%;
    height: 80%;
    border: 5px solid #FFFFFF;
    border-radius: 24px;
    box-shadow: 0px 0px 40px 0px #00000029;
    display: block;
    margin-left: 8%;
    /* shift photo right so watermark peeks out on the left */
}

/* ── RIGHT: text + button ── */
.who-content {
    font-family: 'Bebas Neue';
    flex: 1;
    min-width: 280px;
}

.who-heading {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 3px;
    color: #111;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1;
}

.who-text {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.7;
     color: #8D8D8D;
    margin-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.who-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #E6B554, #A16C16);
    padding: 14px 36px;
    border-radius: 12.61px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
   
}

.who-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.who-btn:hover {
    background: linear-gradient(90deg, #E6B554, #A16C16);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Arrow icon circle inside button - White circle with gradient arrow */
.who-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-left: 12px;
    transition: transform 0.2s ease;
}

.who-btn:hover .who-btn-icon {
    transform: translateX(4px);
}

/* SVG arrow styling */
.who-btn-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.who-btn-icon svg path {
    stroke: url(#arrowGradient);
    stroke-width: 2.52;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}



/* ── Responsive ── */
@media (max-width: 960px) {
    .who-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .who-images {
        flex: none;
        width: 100%;
        min-height: 300px;
    }

    .who-bg-image {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 670px;
        height: 681.48px;
        display: none;
    }

    .who-front-image {
        width: 755px;
        height: 220px;
        margin-left: auto;
        margin-right: auto;
    }

    .who-heading,
    .who-text {
        text-align: center;
    }

    .who-btn {
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .who-section {
        padding: 50px 20px;
    }

    .who-heading {
        font-size: 2.6rem;
    }

    .who-text {
        font-size: 0.78rem;
    }

    .who-bg-image {
        width: 260px;
        height: 260px;
    }

    .who-front-image {
        width: 75%;
    }

    .who-btn {
        font-size: 0.65rem;
        padding: 10px 16px 10px 22px;
    }
}

/**************
 Who its section end
 **************/

body {
    background-color: #F8F8F8;
    font-family: var(--primary-font);
    margin: 0;
    padding: 0;
}

/**************
 * Contact Hero
 **************/
.contact-hero {
    padding-top: 70px;
}

.contact-hero-bg {
    background-image: url('../images/custom-software-and-ai.webp');
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    height: 400px;
    overflow: hidden;
}

/* ===== Constrain main sections to 1440px max-width and center ===== */
.contact-hero,
.contact-section {
    max-width: 1440px;
    margin: auto;
}

/* ===== Hero: ensure inner background has 10px side spacing ===== */
.contact-hero .contact-hero-bg {
    margin-left: 10px;
    margin-right: 10px;
}

/* ===== Contact form section: replace existing side padding with 10px ===== */
.contact-section {
    padding: 60px 10px;
    /* Overrides original padding: 60px 50px */
}

.contact-hero-overlay {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
}


.contact-hero-content h1 {
    padding-top: 70px;
    color: #ffffff;
    font-family: 'Bebas Neue';
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-hero-content h2 {
    color: #ffffff;
    font-family: 'Bebas Neue';
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1;
}

.contact-hero-content p {
    color: #f0f0f0;
    font-family: 'Helvetica Neue';
    font-size: 14px;
    letter-spacing: 1px;
    margin: 3px 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-content p {
        font-size: 12px;
    }

    .contact-hero-overlay {
        min-height: 220px;
    }
}

/**************
 * New Contact Form Section (No Script)
 **************/
.contact-form-section {
    max-width: 1280px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 42px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

.contact-info {
    background: white;
    padding: 48px 40px;
    border-right: 1px solid #F0E5D2;
}

.section-subhead {
    font-family: var(--primary-font);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8860B;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(184, 134, 11, 0.1);
    padding: 4px 14px;
    border-radius: 40px;
}

.contact-info h2 {
    font-family: var(--secondary-font);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    color: #1E1E1E;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.get-in-touch {
    font-family: var(--primary-font);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 32px 0 24px 0;
    color: #2C2C2C;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.get-in-touch:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E6B554, #A16C16);
    border-radius: 4px;
}

.contact-details-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 52px;
    height: 52px;
    background: #FFFFFF;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0E5D2;
    flex-shrink: 0;
}

.detail-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.detail-text h4 {
    font-family: var(--primary-font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8B8B8B;
    margin: 0 0 6px 0;
}

.detail-text p {
    font-family: var(--primary-font);
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E1E1E;
    margin: 0;
    line-height: 1.4;
}

.detail-text .small-note {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6B6B6B;
    margin-top: 4px;
}

.contact-form-wrapper {
    padding: 48px 40px;
    background: #FFFFFF;
}

.form-title {
    font-family: var(--secondary-font);
    font-size: 1.8rem;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--primary-font);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5A5A5A;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--primary-font);
    font-size: 0.95rem;
    border: 1.5px solid #E6E6E6;
    border-radius: 30px;
    background: #FCFCFC;
    transition: all 0.25s ease;
    outline: none;
    color: #1E1E1E;
}

.form-group textarea {
    border-radius: 28px;
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #E6B554;
    box-shadow: 0 0 0 3px rgba(230, 181, 84, 0.15);
    background: #FFFFFF;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B8B8B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #A16C16, #E6B554);
    border: none;
    color: #fff;
    padding: 12px 36px 12px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 55px;
    transition: all 0.25s;
    cursor: pointer;
    font-family: var(--primary-font);
    margin-top: 12px;
    box-shadow: 0 6px 14px rgba(161, 108, 22, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(45deg, #8A5C12, #D6A544);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(161, 108, 22, 0.25);
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        border-right: none;
        border-bottom: 1px solid #F0E5D2;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 40px 28px;
    }
}

@media (max-width: 560px) {
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .detail-icon {
        width: 44px;
        height: 44px;
    }

    .detail-text p {
        font-size: 1rem;
    }
}

/**************
 * Portfolio Section
 **************/
.proven-section {
    padding: 80px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.portfolio-item .proj-img {
    overflow: hidden;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    position: relative;
    border-radius: 12px;
    border: 3px solid #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    transform: translateX(-10px);
    margin-bottom: 16px;
}

.portfolio-item h3 {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: clamp(1.5rem, 5vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-item p {
    font-size: clamp(0.8rem, 5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.65;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 20px;
    border: 1px solid #BCBCBC;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #BCBCBC;
}

.view-portfolio {
    text-align: right;
    padding: 50px 0 20px;
}

.view-portfolio a {
    font-family: var(--secondary-font);
    font-size: clamp(1rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-image: var(--golden-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.view-portfolio a:hover {
    color: var(--gold);
}

/**************
 * Clients Bar
 **************/
.clients-bar {
    padding: 40px 60px;
}

.clients-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
}

.client-logo {
    width: 165px;
    height: auto;
    background: var(--gray-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter .2s;
}

.client-logo:hover {
    filter: brightness(0.6);
}

@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .cta-dark p {
        max-width: 80%;
    }
}

/* ===== NEW RESPONSIVE BREAKPOINTS ===== */
/* Tablet Landscape (max-width: 1024px) */
@media (max-width: 1024px) {

    .contact-hero-overlay {
        min-height: 260px;
        padding: 30px 20px;
    }

    .contact-hero-content h1 {
        font-size: 40px;
    }

    .contact-hero-content p {
        font-size: 12px;
    }

    .contact-section {
        gap: 40px;
        padding: 50px 40px;
    }

    .contact-info h1 {
        font-size: 52px;
    }

    .info-item {
        gap: 14px;
        margin-bottom: 24px;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 2.49px solid transparent;
        border-image-source: linear-gradient(90deg, #E6B554 0%, #A16C16 100%);
        border-image-slice: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--gold);
    }

    .form-field {
        padding: 14px 0;
    }

    .submit-btn {
        padding: 12px 32px;
        font-size: 12px;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {

    .contact-hero {
        padding-top: 60px;
    }

    .contact-hero-overlay {
        min-height: 220px;
        padding: 20px;
    }

    .contact-hero-content h1 {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .contact-hero-content p {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 24px;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    .info-item {
        justify-content: center;
    }

    .contact-info h1 {
        font-size: 44px;
        margin-bottom: 30px;
    }

    .label-tag {
        font-size: 12px;
    }

    .info-text strong {
        font-size: 13px;
    }

    .info-text span {
        font-size: 11px;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .submit-btn {
        align-self: center;
        margin-top: 28px;
    }
}

/* Small Mobile (max-width: 410px) */
@media (max-width: 410px) {

    .contact-hero-overlay {
        min-height: 180px;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-hero-content p {
        font-size: 9px;
    }

    .contact-section {
        padding: 30px 16px;
        gap: 32px;
    }

    .contact-info h1 {
        font-size: 36px;
    }

    .info-item {
        gap: 12px;
        margin-bottom: 20px;
    }

    .icon-circle {
        width: 38px;
        height: 38px;
    }

    .icon-circle svg {
        width: 16px;
        height: 16px;
    }

    .info-text strong {
        font-size: 12px;
    }

    .info-text span {
        font-size: 10px;
    }

    .form-field {
        padding: 12px 0;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .submit-btn {
        padding: 10px 28px;
        font-size: 11px;
    }

    .cta-dark {
        padding: 40px 16px 20px;
    }

    .cta-dark p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .cta-btns .btn-primary,
    .cta-btns .btn-outline {
        padding: 6px 20px 6px 24px;
        font-size: 0.7rem;
    }

    .cta-btns .btn-icon {
        width: 32px;
        height: 32px;
    }
}

/* Extra Small Mobile (max-width: 390px) */
@media (max-width: 390px) {
    .contact-info h1 {
        font-size: 32px;
    }

    .info-item {
        gap: 10px;
    }

    .icon-circle {
        width: 34px;
        height: 34px;
    }

    .form-field {
        padding: 10px 0;
    }

    .submit-btn {
        padding: 8px 24px;
        font-size: 10px;
    }
}

/* Ultra Small Mobile (max-width: 370px) */
@media (max-width: 370px) {
    .contact-info h1 {
        font-size: 28px;
    }

    .info-text strong {
        font-size: 11px;
    }

    .info-text span {
        font-size: 9px;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
        font-size: 9px;
    }

    .submit-btn {
        padding: 7px 20px;
        font-size: 9px;
    }

    .cta-dark p {
        font-size: 0.7rem;
    }
}

