/* 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: 22px;
    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 40px;
    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;
}

.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;
}

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

.about {
    background: #181818;
    padding: 36px 0 60px 0;
    text-align: center;
}

.about h2 {
    color: #1d84c9;
    font-size: var(--font-size-4xl);
    letter-spacing: 2px;
    margin-bottom: 32px;
    font-weight: 500;
}

.about-card {
    background: #3d3d3d8c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    box-sizing: border-box;
    gap: 32px;
    width: 90%;
}

.about-text {
    text-align: justify;
    font-size: var(--font-size-lg);
    color: #fff;
    line-height: 1.9;
    letter-spacing: 0.05em;
    flex: 2;
}

.about-highlight {
    color: #fcfcfb;
    font-weight: 500;
    font-size: var(--font-size-3xl);
    letter-spacing: 0.05em;
}
.about-brand-logo {
    display: block;
    width: 500px;
    max-width: 90vw;
    height: auto;
    margin: 16px auto 20px auto;
    border-radius: 12px;
}

.about-img img {
    width: 400px;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #fff;
    background: #fff;
}

@media (max-width: 900px) {
    .about-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .about-img img {
        width: 100%;
        height: auto;
    }
    
    .iconic-works {
        padding: 40px 20px;
    }
    
    .iconic-works h2 {
        font-size: var(--font-size-6xl);
        margin-bottom: 30px;
    }
    
    .iconic-works-container {
        gap: 20px;
        padding: 10px 0;
    }
    
    .iconic-work-item {
        flex: 0 0 250px;
        padding: 15px;
    }
    
    .work-images {
        height: 150px;
        margin-bottom: 12px;
    }
    
    .work-info h3 {
        font-size: var(--font-size-lg);
    }
    
    .work-info p {
        font-size: var(--font-size-base);
    }
}

/* Iconic Works Section */
.iconic-works {
    background: #0a0a0a;
    padding: 56px 40px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.iconic-works h2 {
    color: #1d84c9;
    font-size: var(--font-size-4xl);
    letter-spacing: 2px;
    margin-bottom: 50px;
    margin-top: 10px;
    font-weight: 500;
}

.iconic-works-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #1d84c9 #444;
}

.iconic-works-container::-webkit-scrollbar {
    height: 8px;
}

.iconic-works-container::-webkit-scrollbar-track {
    background: #232323;
    border-radius: 4px;
}

.iconic-works-container::-webkit-scrollbar-thumb {
    background: #1d84c9;
    border-radius: 4px;
}

.iconic-work-item {
    flex: 0 0 300px;
    background: #041a2f;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.iconic-work-item:hover {
    transform: translateY(-8px);
    border-color: #1d84c9;
    background: #082b4b;
}

.work-images {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-image.active {
    opacity: 1;
}

.work-info h3 {
    color: #1d84c9;
    font-size: var(--font-size-2xl);
    margin: 0 0 8px 0;
    font-weight: 470;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.4;
}

.work-info p {
    color: #ccc;
    font-size: var(--font-size-lg);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.work-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}

.iconic-work-item:hover .work-details {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

.work-details p {
    font-size: 14.5px;
    color: #e9dede;
    margin: 3px 0;
}



/* View More Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #1d84c9, #2b93cf);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-more-btn:hover {
    background: linear-gradient(45deg, #156ca0, #1d84c9);
    transform: translateX(5px);
    border-color: #1d84c9;
}

.view-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(3px);
}

/* Image Modal for Enlarged View */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.enlarged-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.image-modal-close:hover {
    color: #1d84c9;
}

.image-modal-caption {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}

.image-modal-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 20px;
}

.caption-container {
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

.image-modal-caption {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.image-modal-counter {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.nav-arrow {
    background: rgba(47, 48, 49, 0.9);
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: light;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-arrow:hover {
    background: rgb(22, 24, 26);
    transform: scale(1.05);
}

.nav-prev {
    position: relative;
    left: 0;
}

.nav-next {
    position: relative;
    right: 0;
}

.image-modal-counter {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    opacity: 0.8;
}

.services {
    background: #03101c;
    padding: 56px 40px 56px 40px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.services h2 {
    color: #1d84c9;
    font-size: var(--font-size-4xl);
    letter-spacing: 2px;
    margin-bottom: 50px;
    margin-top: 10px;
    font-weight: 500;
}

.services-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 300px;
    height: 400px;
    border-radius: 13px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    text-decoration: none;
    position: relative;
    border: 2px solid #ffffff;
    transition: transform 0.18s, box-shadow 0.18s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 45px rgba(0,0,0,0.22);
    border-color: #ebb16b;
}

.service-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 90px;
    max-height: 110px;
    padding: 24px 18px 18px 18px;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.92) 60%,
        rgba(0,0,0,0.7) 75%,
        rgba(0,0,0,0.4) 88%,
        rgba(0,0,0,0.0) 100%
    );
    color: #fff;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: 470;
    line-height: 1.4;
    letter-spacing: 0.14em;
    z-index: 2;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    text-align: left;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), background 0.5s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .service-label {
    max-height: 220px;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.92) 60%,
        rgba(0,0,0,0.7) 75%,
        rgba(0,0,0,0.4) 88%,
        rgba(0,0,0,0.0) 100%
    );
}

.service-desc {
    display: block;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.5s cubic-bezier(0.4,0,0.2,1);
    font-size: 14px;
    font-weight: 380;
    letter-spacing: 0.04em;
    margin-top: 8px;
    line-height: 1.5;
    padding-right: 30px; /* Add right padding */
    overflow: hidden;
}

.service-card:hover .service-desc {
    opacity: 1;
    max-height: 200px;
    padding-right: 30px;
}
   
@media (max-width: 900px) {
    .services-row {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    .service-card {
        width: 90vw;
        max-width: 340px;
        height: 220px;
    }
}

.contact-section {
    background: #111;
    padding: 56px 40px 56px 40px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-section h2 {
    color: #1d84c9;
    font-size: var(--font-size-3xl);
    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;
    }
}

/*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: var(--font-size-xl);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-align: center;
    flex: none;
}
.menu-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    margin-right: 18px;
    font-size: 1.7em;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.header-features {
    display: flex;
    gap: 32px;
}
.header-feature-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1d84c9;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: color 0.2s;
}
.header-feature-link i {
    font-size: 1.4em;
    margin-bottom: 2px;
}
.header-feature-link:hover {
    color: #fff;
}
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    background-color: #181818;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 80px;
    box-shadow: 2px 0 16px rgba(0,0,0,0.18);
}
.sidebar a {
    padding: 18px 32px;
    text-decoration: none;
    font-size: 1.2em;
    color: #1d84c9;
    display: block;
    transition: 0.2s;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.sidebar a:hover, .sidebar a:focus {
    color: #fff;
    background: #232323;
}
.sidebar .closebtn {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2em;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.sidebar-overlay {
    display: none;
    position: fixed;
    z-index: 1999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    transition: 0.3s;
}
/* Enhanced Responsive Navigation */
@media (max-width: 767px) {
    .beautiful-header {
        padding: 0 16px;
        height: 60px;
    }
    
    .header-left {
        left: 16px;
    }
    
    .sidebar {
        padding-top: 60px;
        width: 0;
    }
    
    .sidebar a {
        font-size: var(--font-size-base);
        padding: 16px 24px;
    }
    
    .sidebar .closebtn {
        top: 12px;
        right: 16px;
        font-size: 1.8em;
    }
    
    .menu-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4em;
        margin-right: 12px;
    }
}

@media (max-width: 479px) {
    .beautiful-header {
        padding: 0 12px;
        height: 56px;
    }
    
    .header-left {
        left: 12px;
    }
    
    .header-title {
        font-size: var(--font-size-base);
        letter-spacing: 0.1em;
    }
    
    .menu-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2em;
    }
    
    .sidebar {
        padding-top: 56px;
    }
    
    .sidebar a {
        font-size: var(--font-size-sm);
        padding: 14px 20px;
    }
    
    .sidebar .closebtn {
        top: 10px;
        right: 12px;
        font-size: 1.6em;
    }
}

/* Touch-friendly navigation for mobile */
@media (hover: none) and (pointer: coarse) {
    .menu-icon {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sidebar a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .contact-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
.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: 0 20px;
    padding-bottom: 20px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
    width: 90%;
    box-sizing: border-box;
}

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

.contact-letter-inner h2 {
    color: #fcf9f4;
    margin-bottom: 12px;
    font-size: var(--font-size-xl);
    letter-spacing: 1px;
}

.quick-links-group {
    margin: 10px 0;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.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;
}

/* 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 Button this */
.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);
}
/* Enhanced Responsive Design */

/* 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);
    }
    
    .about h2 {
        font-size: var(--font-size-5xl);
    }
    
    .services h2 {
        font-size: var(--font-size-5xl);
    }
    
    .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);
    }
    
    .about-card {
        width: 95%;
        padding: 24px;
    }
    
    .services-row {
        gap: 40px;
    }
    
    .service-card {
        width: 280px;
        height: 380px;
    }
}

/* 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;
    }
    
    .about-card {
        flex-direction: column;
        width: 95%;
        padding: 20px;
        gap: 20px;
    }
    
    .about-text {
        font-size: var(--font-size-base);
    }
    
    .about-highlight {
        font-size: var(--font-size-lg);
    }
    
    .services-row {
        gap: 25px;
    }
    
    .service-card {
        width: 90vw;
        max-width: 300px;
        height: 280px;
    }
    
    .service-label {
        font-size: 18px;
        min-height: 80px;
        padding: 18px 15px;
    }
    
    .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);
    }
    
    .header-title {
        font-size: var(--font-size-lg);
        letter-spacing: 0.2em;
    }
    
    .menu-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4em;
    }
}

/* 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;
    }
    
    .about h2 {
        font-size: var(--font-size-3xl);
    }
    
    .services h2 {
        font-size: var(--font-size-3xl);
    }
    .iconic-works h2 {
        font-size: var(--font-size-3xl);
    }
    
    .contact-section h2 {
        font-size: var(--font-size-2xl);
    }
    
    .about-card {
        width: 98%;
        padding: 15px;
    }
    
    .service-card {
        width: 95vw;
        height: 250px;
    }
    
    .service-label {
        font-size: 16px;
        min-height: 70px;
        padding: 15px 12px;
    }
    
    .contact-card {
        width: 95vw;
        min-height: 130px;
        padding: 20px 12px;
    }
    
    .header-title {
        font-size: var(--font-size-base);
        letter-spacing: 0.15em;
    }
    
    .menu-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
    
    .sidebar {
        width: 0;
    }
    
    .sidebar a {
        font-size: var(--font-size-base);
        padding: 15px 20px;
    }
}

/* 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);
    }
    
    .about-card {
        max-width: 1400px;
    }
    
    .about-text {
        font-size: var(--font-size-xl);
    }
    
    .service-card {
        width: 350px;
        height: 450px;
    }
    
    .service-label {
        font-size: 24px;
    }
}

/* Responsive utilities */
.responsive-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

section {
    scroll-margin-top: 80px;
}

/* Responsive text alignment */
@media (max-width: 767px) {
    .hero-content {
        text-align: center;
    }
    
    .about-text {
        text-align: justify;
    }
}

/* 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 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;
    }
    
    .iconic-works {
        padding: 30px 15px;
    }
    
    .iconic-works h2 {
        font-size: var(--font-size-3xl);
        margin-bottom: 25px;
    }
    
    .iconic-works-container {
        gap: 15px;
        padding: 5px 0;
    }
    
    .iconic-work-item {
        flex: 0 0 200px;
        padding: 12px;
    }
    
    .work-images {
        height: 120px;
        margin-bottom: 10px;
    }
    
    .work-info h3 {
        font-size: var(--font-size-base);
        font-weight: 470;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }
    
    .work-info p {
        font-size: var(--font-size-md);
    }
    
    .work-details p {
        font-size: var(--font-size-xs);
    }
}

/* Floating Get Quote Button this */
.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; /* Made 2 times bigger */
}

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

/* Mobile responsive floating button */
@media (max-width: 768px) {
    .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; /* Made 2 times bigger for mobile */
    }
}

/* Responsive styles for new iconic works features */
@media (max-width: 768px) {
    /* View More Button Mobile */
    .view-more-btn {
        padding: 8px 16px;
        font-size: 12px;
        margin-top: 10px;
    }
    
    .view-more-btn i {
        font-size: 10px;
    }
    
    /* Image Modal Mobile */
    .image-modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    /* Navigation Arrows Mobile */
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .nav-prev {
        position: relative;
        left: 0;
    }
    
    .nav-next {
        position: relative;
        right: 0;
    }
    
    .image-modal-navigation {
        padding: 0 10px;
        margin-top: 15px;
    }
    
    .image-modal-counter {
        font-size: 12px;
    }
    
    .image-modal-caption {
        font-size: 14px;
    }
    
    .caption-container {
        margin: 0 10px;
    }
    
    .enlarged-image {
        max-height: 70vh;
    }
    
    .image-modal-close {
        top: -35px;
        font-size: 30px;
    }
    
    .image-modal-caption {
        font-size: 14px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .view-more-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .image-expand-indicator {
        padding: 4px;
        font-size: 10px;
    }
}
