/* Responsive Typography System */
:root {
    --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --font-size-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
    --font-size-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
    --font-size-5xl: clamp(2.5rem, 2.1rem + 2vw, 3.5rem);
    --font-size-6xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
}

body {
    margin: 0;
    font-family: 'Instrument Sans', Arial, sans-serif;
    background: #181818;
    color: #fff;
    overflow-x: hidden;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.header {
    background: #181818;
    padding: 24px 0 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
    

.header-title {
    color: #fff;
    font-size: var(--font-size-xl);
    letter-spacing: 0.2em;
    font-weight: 400;
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: clamp(420px, 50vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 50px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.hero-content h1 {
    padding-top: 60px;
    font-size: var(--font-size-5xl);
    font-weight: 440;
    margin-bottom: 31px;
    letter-spacing: 0.16em; /* Subtle letter spacing for modern look */
}

.subtitle {
    font-size: var(--font-size-lg);
    color: #e0e0e0;
    margin-bottom: 36px;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.contact-btn {
    display: inline-block;
    background: #1d84c9;
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.25);
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em; /* Button letter spacing */
}

.contact-btn:hover {
    background: #156ca0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tabs-container {
    max-width: 900px;
    margin: 48px auto 0 auto;
    background: #232323;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 32px 24px 24px 24px;
    margin-bottom: 50px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.tab {
    background: #2d2d2d;
    color: #fff;
    border: none;
    outline: none;
    padding: 14px 28px;
    border-radius: 8px 8px 0 0;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-bottom: 3px solid transparent;
}

.tab.active, .tab:hover {
    background: #1d84c9;
    color: #181818;
    border-bottom: 3px solid #fff;
}

.tab-content {
    display: none;
    background: #232323;
    border-radius: 0 0 12px 12px;
    padding: 36px 24px 24px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    animation: fadeIn 0.4s;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: #1d84c9;
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.07em;
}

.tab-content p {
    font-size: 17px;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.view-more-btn {
    display: inline-block;
    background: #1d84c9;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.25);
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em;
}

.view-more-btn:hover {
    background: #156ca0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
    .tabs-container {
        padding: 18px 4px 12px 4px;
    }
    .tab-content {
        padding: 18px 4px 12px 4px;
    }
    .tabs {
        gap: 6px;
    }
    .tab {
        padding: 10px 10px;
        font-size: 14px;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}


.contact-section {
    background: #111;
    padding: 56px 0 56px 0;
    text-align: center;
}

.contact-section h2 {
    color: #1d84c9;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 48px;
    font-weight: 500;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-card {
    background: #232323;
    border-radius: 16px;
    width: 230px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    padding: 32px 18px;
    color: #fff;
    font-size: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    transform: translateY(-6px) scale(1.03);
}

.contact-card i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 50px;
}

.contact-info {
    color: #fff;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 0.04em;
    word-break: break-all;
}

@media (max-width: 900px) {
    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .contact-card {
        width: 90vw;
        max-width: 340px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(24,24,24,0.95);
    justify-content: center;
    align-items: center;
    overflow: auto;
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #232323 100%);
    border-radius: 24px;
    padding: 0;
    max-width: 900px;
    width: 90vw;
    margin: 40px auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(29, 132, 201, 0.2);
    animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.modal-header {
    background: linear-gradient(135deg, #1d84c9 0%, #156ca0 100%);
    padding: 24px 32px;
    position: relative;
    text-align: center;
}

.modal-title {
    color: #181818;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0;
    text-transform: uppercase;
}

.modal-body {
    padding: 40px 32px;
    position: relative;
}

.modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    justify-items: center;
}

.modal-img {
    width: 100%;
    max-width: 350px;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.modal-img:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #1d84c9;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.modal-info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(29, 132, 201, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}



.modal-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(29, 132, 201, 0.3);
    transform: translateY(-4px);
}

.modal-info-card h3 {
    color: #1d84c9;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-info-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #1d84c9 0%, #156ca0 100%);
    border-radius: 2px;
}

.modal-info-card ul {
    color: #fff;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.modal-info-card li {
    font-size: 15px;
    letter-spacing: 0.03em;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.modal-info-card li::before {
    content: '▸';
    color: #1d84c9;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.modal-specs {
    background: rgba(29, 132, 201, 0.1);
    border: 1px solid rgba(29, 132, 201, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.modal-specs h4 {
    color: #1d84c9;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: 0.05em;
}

.modal-specs ul {
    margin: 0;
    padding-left: 20px;
}

.modal-specs li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #e0e0e0;
}
.modal-content .close {
    position: absolute;
    top: 18px; right: 22px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-content .close:hover {
    background: rgba(29, 132, 201, 0.3);
    transform: rotate(90deg) scale(1.1);
    color: #1d84c9;
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 4px 32px #000;
}
.lightbox-close {
    position: absolute;
    top: 40px; right: 60px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
}
@media (max-width: 700px) {
    .modal-content {
        padding: 0;
        max-width: 88vw;
        width: 88vw;
        margin: 20px auto;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 16px 20px;
        border-radius: 16px 16px 0 0;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px 16px;
    }
    
    .modal-images {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .modal-img {
        max-width: 100%;
        height: 200px;
        border-radius: 12px;
    }
    
    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    
    .modal-info-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .modal-info-card h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .modal-info-card li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .modal-specs {
        padding: 16px;
        border-radius: 8px;
    }
    
    .modal-content .close {
        top: 12px;
        right: 16px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .lightbox-close {
        top: 10px; right: 20px;
        font-size: 32px;
    }
}
/* Custom Solutions - ensure images look good in cards */
.product-card img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.18s, box-shadow 0.18s;
}
.product-card img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 45px rgba(0,0,0,0.22);
}


/*header*/
.beautiful-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    background: #181818;
    padding: 0 32px;
    height: 72px;
    position: fixed;      /* Changed from sticky to fixed */
    top: 0;
    left: 0;
    width: 100%;          /* Ensure full width */
    z-index: 1000;
    
}
.header-left {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.header-title {
    margin: 0 auto;
    color: #fff;
    font-size: 1.7em;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-align: center;
    flex: none;
}

.header-feature-link:hover {
    color: #fff;
}
.quick-links,
.contact-letter {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 36px auto 24px auto;
    max-width: 1000px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 20px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
    
}

.contact-letter-inner {
    text-align: left;
}

.contact-letter-inner h2 {
    color: #fcf9f4;
    margin-bottom: 12px;
    font-size: 1.3em;
    letter-spacing: 1px;
}

.quick-links-group {
    margin: 10px 0;
    font-size: 0.9em;
    
}

.quick-links-group strong {
    color: #f9f8f7;
    margin-right: 8px;
    letter-spacing: 0.06em;
}

.quick-links-group a,
.contact-details a {
    color: #1d84c9;
    text-decoration: none;
    margin: 0 3px;
    transition: color 0.2s;
    font-weight: 500;
}

.quick-links-group a:hover,
.contact-details a:hover {
    color: #156ca0;
    text-decoration: underline;
}

.contact-letter-inner p {
    color: #f8f6f6;
    margin: 8px 0;
    font-size: 1.07em;
}

.contact-details {
    margin: 18px 0 12px 0;
    font-size: 0.9em;
}

.contact-details div {
    margin-bottom: 6px;
}

.contact-details a {
    color: #1d84c9;
    text-decoration: none;
    margin: 0 3px;
    transition: color 0.2s;
    font-weight: 500;
}

.contact-details a:hover {
    color: #156ca0;
    text-decoration: underline;
}

.contact-letter-inner p:last-child {
    margin-top: 18px;
}

.contact-letter-inner span {
    color: #1d84c9;
    font-weight: bold;
}

.home-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    margin-left: 8px;
    height: 45px;
    width: 45px;
    text-decoration: none;
}
.home-icon-link i {
    color: #fff;
    font-size: 1.3em;
    transition: color 0.2s;
}
.home-icon-link:hover i {
    color: #1d84c9;
}

/* Enhanced Responsive Design for Services Pages */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: var(--font-size-6xl);
    }
    
    .subtitle {
        font-size: var(--font-size-xl);
    }
    
    .tab {
        font-size: var(--font-size-base);
    }
    
    .tab-content h2 {
        font-size: var(--font-size-4xl);
    }
    
    .contact-section h2 {
        font-size: var(--font-size-4xl);
    }
}

/* Medium screens (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .hero-content h1 {
        font-size: var(--font-size-4xl);
    }
    
    .subtitle {
        font-size: var(--font-size-lg);
    }
    
    .tab {
        font-size: var(--font-size-sm);
        padding: 12px 20px;
    }
    
    .tabs-container {
        margin: 32px 20px;
        padding: 24px 16px;
    }
}

/* Small screens (480px - 767px) */
@media (max-width: 767px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-3xl);
        padding-top: 40px;
    }
    
    .subtitle {
        font-size: var(--font-size-base);
        margin-bottom: 24px;
    }
    
    .contact-btn {
        font-size: var(--font-size-sm);
        padding: 12px 24px;
    }
    
    .beautiful-header {
        padding: 0 16px;
        height: 60px;
    }
    
    .header-left {
        left: 16px;
    }
    
    .header-title {
        font-size: var(--font-size-lg);
        letter-spacing: 0.2em;
    }
    
    .home-icon-link {
        height: 40px;
        width: 40px;
        margin-left: 4px;
    }
    
    .home-icon-link i {
        font-size: 1.2em;
    }
    
    .tabs-container {
        margin: 20px 10px;
        padding: 20px 12px;
    }
    
    .tabs {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .tab {
        font-size: var(--font-size-sm);
        padding: 10px 16px;
    }
    
    .tab-content {
        padding: 24px 12px;
    }
    
    .tab-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .tab-content p {
        font-size: var(--font-size-base);
        margin-bottom: 20px;
    }
    
    .view-more-btn {
        font-size: var(--font-size-sm);
        padding: 10px 20px;
    }
    
    .contact-row {
        gap: 20px;
    }
    
    .contact-card {
        width: 90vw;
        max-width: 280px;
        min-height: 150px;
        padding: 24px 15px;
    }
    
    .contact-info {
        font-size: var(--font-size-base);
    }
    
    .modal-content {
        padding: 24px 20px;
        width: 86vw;
        max-width: 86vw;
        margin: 40px auto;
    }
    
    .modal-content h3 {
        font-size: var(--font-size-xl);
    }
    
    .modal-content ul {
        font-size: var(--font-size-sm);
    }
    
    .modal-img {
        width: 100%;
        height: 220px;
        aspect-ratio: 4/3;
    }
}

/* Extra small screens (below 480px) */
@media (max-width: 479px) {
    .hero-content h1 {
        font-size: var(--font-size-2xl);
        padding-top: 30px;
    }
    
    .subtitle {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }
    
    .beautiful-header {
        padding: 0 12px;
        height: 56px;
    }
    
    .header-left {
        left: 12px;
    }
    
    .header-title {
        font-size: var(--font-size-base);
        letter-spacing: 0.1em;
    }
    
    .home-icon-link {
        height: 36px;
        width: 36px;
    }
    
    .home-icon-link i {
        font-size: 1.1em;
    }
    
    .tabs-container {
        margin: 15px 5px;
        padding: 16px 8px;
    }
    
    .tabs {
        gap: 4px;
        margin-bottom: 16px;
    }
    
    .tab {
        font-size: var(--font-size-xs);
        padding: 8px 12px;
    }
    
    .tab-content {
        padding: 16px 8px;
    }
    
    .tab-content h2 {
        font-size: var(--font-size-xl);
    }
    
    .tab-content p {
        font-size: var(--font-size-sm);
    }
    
    .view-more-btn {
        font-size: var(--font-size-xs);
        padding: 8px 16px;
    }
    
    .contact-card {
        width: 95vw;
        min-height: 130px;
        padding: 20px 12px;
    }
    
    .quick-links,
    .contact-letter {
        width: 95%;
        padding: 0 10px;
    }
    
    .modal-content {
        padding: 20px 16px;
        width: 84vw;
        max-width: 84vw;
        margin: 30px auto;
    }
    
    .modal-content h3 {
        font-size: var(--font-size-lg);
    }
    
    .modal-content ul {
        font-size: var(--font-size-xs);
        padding-left: 15px;
    }
}

/* Ultra-wide screens (1920px and up) */
@media (min-width: 1920px) {
    .hero-content {
        max-width: 1000px;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-6xl);
    }
    
    .subtitle {
        font-size: var(--font-size-xl);
    }
    
    .tabs-container {
        max-width: 1100px;
        margin: 60px auto;
    }
    
    .tab {
        font-size: var(--font-size-lg);
        padding: 16px 32px;
    }
    
    .tab-content h2 {
        font-size: var(--font-size-5xl);
    }
    
    .tab-content p {
        font-size: var(--font-size-lg);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .home-icon-link {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .tab {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .view-more-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Smooth transitions for responsive changes */
body, h1, h2, h3, h4, h5, h6, p, span, div, a, li {
    transition: font-size 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto 48px auto;
    padding: 0 20px;
}

.contact-form {
    background: linear-gradient(135deg, #19191a 0%, #19191a 50%, #19191a 100%);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(41, 34, 25, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(29, 132, 201, 0.4);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1d84c9;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(29, 132, 201, 0.3);
}

.submit-btn {
    background: linear-gradient(45deg, #1d84c9, #2b93cf);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(29, 132, 201, 0.5);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #156ca0, #1d84c9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 132, 201, 0.4);
}

.form-status {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-status.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-status.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.form-status.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-status.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Floating Get Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #1d84c9, #2b93cf);
    color: #000;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(27, 20, 10, 0.4);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 132, 201, 0.3);
}

.floating-quote-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    background: linear-gradient(45deg, #156ca0, #1d84c9);
}

.floating-quote-btn i {
    font-size: 36px;
}

.floating-quote-btn span {
    display: block;
}

/* Contact Form Responsive Styles */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form {
        padding: 24px;
        margin: 0 10px;
    }
    
    .contact-form-container {
        padding: 0 10px;
    }
    
    /* Mobile responsive floating button */
    .floating-quote-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .floating-quote-btn span {
        display: none;
    }
    
    .floating-quote-btn i {
        font-size: 40px;
    }
}
