* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --blue: #1A3C6E; --orange: #F26522; --light: #F5F7FA; --gray: #6b7280; --text: #1e293b; --border: #e2e8f0; }

/* ===== TYPOGRAPHY & BASE ===== */
body {
    font-family: 'Nunito Sans', sans-serif;
    background: #fff;
    color: var(--text);
    font-size: 15px; 
    line-height: 1.6;
    overflow-x: hidden; /* Prevents horizontal scrolling on mobile */
}
h1, h2, h3, h4, .sec-title, .hero h1 {
    font-family: 'Nunito Sans', sans-serif;
}

/* ===== NAVIGATION & LOGO ===== */
nav { background: #fff; border-bottom: 1px solid var(--border); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 70px; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 6px rgba(0,0,0,0.07); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-radius: 10px 0 10px 0; 
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1.2rem; font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3);
}
.logo-text strong {
    display: block; font-size: 1.2rem; font-weight: 800;
    background: linear-gradient(to right, var(--blue), #2c5294);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1.1; font-family: 'Inter', sans-serif;
}
.logo-text span { font-size: 0.7rem; color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; font-family: 'Inter', sans-serif;}

.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.95rem; font-weight: 700; padding: 0.5rem 0.85rem; border-radius: 4px; transition: all 0.2s; }
.nav-links a:hover { background: var(--light); color: var(--blue); }
.nav-cta {
    background: linear-gradient(135deg, var(--orange), #ff7e42);
    color: #fff !important; padding: 0.55rem 1.4rem; border-radius: 25px;
    font-size: 0.95rem; font-weight: 800; text-decoration: none; margin-left: 0.5rem;
    box-shadow: 0 4px 10px rgba(242, 101, 34, 0.3); transition: all 0.3s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(242, 101, 34, 0.5); background: linear-gradient(135deg, #ff7e42, var(--orange)); }

/* ===== HERO SECTION & GRAPHICS ===== */
.hero { background: var(--blue); padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(242, 101, 34, 0.15); filter: blur(100px); border-radius: 50%; top: -150px; left: -100px; z-index: 0; }
.hero > * { position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(242, 101, 34, 0.2); color: #f9b98a; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 20px; border: 1px solid rgba(242, 101, 34, 0.35); margin-bottom: 1.25rem; font-weight: 700; }
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: #fff; }
.hero h1 span { color: var(--orange); }
.hero p { color: #a8c4e0; font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; }
.btn-primary { background: var(--orange); color: #fff; padding: 0.8rem 1.8rem; border-radius: 4px; font-weight: 800; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.2s; }
.btn-outline { background: transparent; color: #fff; padding: 0.8rem 1.8rem; border-radius: 4px; font-weight: 800; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.35); cursor: pointer; transition: all 0.2s; }
.btn-primary:hover { background: #ff7e42; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 1.25rem; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hero-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.12); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.hero-card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.hero-card h4 { color: #fff; font-size: 1rem; font-weight: 800; line-height: 1.3; }

/* ===== PAGE HEADERS ===== */
.page-header { background: var(--blue); padding: 4rem 2rem; text-align: center; color: #fff; }
.page-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.page-header span { color: var(--orange); }
.page-header p { color: #a8c4e0; font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.page-header.extended { padding-bottom: 6rem; }

/* ===== INFINITE SCROLLING MARQUEE ===== */
.marquee-section { background: var(--light); padding: 1rem 0; border-bottom: 1px solid var(--border); overflow: hidden; display: flex; align-items: center; }
.marquee-content { display: flex; gap: 3rem; animation: scrollMarquee 25s linear infinite; white-space: nowrap; padding-left: 3rem; }
.marquee-item { font-size: 0.95rem; font-weight: 800; color: var(--gray); display: flex; align-items: center; gap: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.marquee-item span { color: var(--orange); font-size: 1.1rem; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== STATS STRIP ===== */
.strip { background: var(--orange); padding: 1rem 2rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.strip-item { color: #fff; font-size: 0.95rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.strip-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.6); }

/* ===== MAIN SECTIONS ===== */
.sec-label { display: inline-block; background: #EEF4FF; color: var(--blue); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 20px; font-weight: 800; margin-bottom: 0.75rem; }
.sec-title { font-size: 2.2rem; font-weight: 800; color: var(--blue); margin-bottom: 0.6rem; line-height: 1.25; }
.sec-title span { color: var(--orange); }
.sec-sub { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 550px; }
.sec-divider { width: 50px; height: 4px; background: var(--orange); border-radius: 2px; margin: 1rem 0 1.5rem; }

/* ===== WHY US SECTION ===== */
.why-section { background: var(--light); padding: 4.5rem 2rem; position: relative; overflow: hidden; z-index: 1; }
.deco-dots { position: absolute; width: 200px; height: 200px; background-image: radial-gradient(var(--blue) 2px, transparent 2px); background-size: 20px 20px; opacity: 0.08; z-index: -1; }
.deco-dots.top-left { top: -50px; left: -50px; }
.deco-dots.bottom-right { bottom: -50px; right: -50px; }
.why-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.why-left { display: flex; flex-direction: column; gap: 1.25rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; flex: 1; }
.why-card { background: #fff; border: 1.5px solid var(--border); border-radius: 8px; padding: 1.25rem; border-top: 3px solid var(--orange); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); border-color: var(--orange); }
.why-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--blue); margin-bottom: 0.3rem; }
.why-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }
.why-right { display: flex; flex-direction: column; gap: 1rem; }
.promise-strip { background: var(--blue); border-radius: 8px; padding: 1.25rem 1.5rem; flex-shrink: 0; }
.promise-strip-title { color: #a8c4e0; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.8rem; }
.promise-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.promise-item { display: flex; align-items: center; gap: 0.6rem; }
.promise-icon { width: 30px; height: 30px; background: rgba(242, 101, 34, 0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.promise-item span { color: #fff; font-size: 0.9rem; font-weight: 700; line-height: 1.3; }

/* ===== SERVICES & INDUSTRIES (STRICT GRID ALIGNMENT) ===== */
.service-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    margin-top: 3rem; 
}
.service-card { 
    background: var(--light); 
    border: 1px solid var(--border); 
    border-left: 5px solid var(--orange); 
    border-radius: 8px; 
    padding: 2.5rem; 
    display: flex; 
    flex-direction: column; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); border-color: var(--orange); }
.service-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--blue); margin-bottom: 0.8rem; }
.service-card p { color: var(--gray); line-height: 1.7; font-size: 0.95rem; margin-bottom: 2rem; }
.stags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.stag { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 0.35rem 0.85rem; font-size: 0.8rem; color: var(--blue); font-weight: 700; }
.content-box { background: var(--light); padding: 3rem; border-radius: 8px; border-top: 4px solid var(--orange); margin-bottom: 2rem; }

.industries-section { background: var(--blue); padding: 4.5rem 2rem; }
.industries-inner { max-width: 1100px; margin: 0 auto; }
.industries-section .sec-label { background: rgba(255,255,255,0.12); color: #a8c4e0; }
.industries-section .sec-title { color: #fff; }
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.ind-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 1.25rem; display: flex; align-items: center; gap: 1rem; transition: all 0.2s; }
.ind-card:hover { transform: translateY(-5px); background: rgba(242,101,34,0.15); border-color: rgba(242,101,34,0.4); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.ind-icon { width: 42px; height: 42px; background: rgba(242,101,34,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ind-text strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 700; line-height: 1.3; margin-bottom: 2px;}
.ind-text span { color: #a8c4e0; font-size: 0.85rem; }

/* ===== CONTACT & FORMS ===== */
.contact-section { padding: 4.5rem 2rem; background: #fff; }
.contact-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.cinfo-card { background: var(--light); border-radius: 6px; padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 1rem; border-left: 4px solid var(--orange); }
.cinfo-icon { width: 36px; height: 36px; background: var(--blue); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; }
.cinfo-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--blue); font-weight: 700; margin-bottom: 2px; }
.cinfo-text span { font-size: 0.9rem; color: var(--gray); }

.contact-form { background: var(--blue); border-radius: 10px; padding: 2.5rem; }
.contact-form h3 { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; }
.fgroup { margin-bottom: 1.25rem; }
.fgroup label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #a8c4e0; margin-bottom: 0.4rem; font-weight: 700; }
.fgroup input, .fgroup textarea, .fgroup select { width: 100%; background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 0.75rem 1rem; font-size: 0.95rem; font-family: 'Nunito Sans', sans-serif; color: #fff; outline: none; }
.fgroup input::placeholder, .fgroup textarea::placeholder { color: rgba(255,255,255,0.5); }
.fgroup select option { color: #1e293b; }
.fgroup textarea { height: 100px; resize: vertical; }
.submit-btn { background: var(--orange); color: #fff; border: none; border-radius: 4px; padding: 0.8rem 1.5rem; font-size: 0.95rem; font-weight: 800; cursor: pointer; width: 100%; font-family: 'Nunito Sans', sans-serif; margin-top: 0.5rem; transition: background 0.2s; }
.submit-btn:hover { background: #ff7e42; }

/* ===== NEW CLEAN FEEDBACK PAGE STYLES ===== */
.feedback-wrapper { max-width: 700px; margin: -4rem auto 4rem; position: relative; z-index: 10; }
.clean-feedback-container { background: #fff; border-radius: 12px; padding: 3rem; box-shadow: 0 15px 40px rgba(26, 60, 110, 0.08); border: 1px solid var(--border); border-top: 5px solid var(--orange); }
.clean-feedback-container h3 { color: var(--blue); font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
.clean-feedback-container p.form-sub { color: var(--gray); font-size: 0.95rem; margin-bottom: 2rem; }
.clean-fgroup { margin-bottom: 1.5rem; text-align: left; }
.clean-fgroup label { display: block; font-size: 0.85rem; font-weight: 800; color: var(--blue); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.clean-fgroup input, .clean-fgroup textarea, .clean-fgroup select { width: 100%; background: var(--light); border: 1.5px solid var(--border); border-radius: 6px; padding: 0.85rem 1.2rem; font-size: 1rem; font-family: 'Nunito Sans', sans-serif; color: var(--text); outline: none; transition: all 0.2s; }
.clean-fgroup input:focus, .clean-fgroup textarea:focus, .clean-fgroup select:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.1); }
.clean-fgroup input::placeholder, .clean-fgroup textarea::placeholder { color: #a0aec0; }
.clean-fgroup textarea { height: 120px; resize: vertical; }
.file-drop-area { border: 2px dashed #cbd5e1; border-radius: 8px; padding: 1.5rem; text-align: center; background: var(--light); transition: all 0.2s; cursor: pointer; }
.file-drop-area:hover { border-color: var(--orange); background: #fff; }
.file-drop-area input[type="file"] { width: 100%; padding: 0; background: transparent; border: none; cursor: pointer; font-size: 0.9rem; color: var(--gray); }
.file-drop-area input[type="file"]::file-selector-button { background: var(--blue); color: #fff; border: none; padding: 0.5rem 1rem; border-radius: 4px; font-weight: 700; cursor: pointer; margin-right: 1rem; transition: background 0.2s; font-family: 'Nunito Sans', sans-serif;}
.file-drop-area input[type="file"]::file-selector-button:hover { background: #2c5294; }

/* ===== QUOTE PAGE EXTRAS ===== */
.quote-wrapper { max-width: 800px; margin: 0 auto; }
.quote-form-container { background: var(--blue); border-radius: 10px; padding: 3rem; box-shadow: 0 10px 30px rgba(26, 60, 110, 0.15); }
.arow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ===== FOOTER ===== */
.footer-main { background: #0d0d0d; padding: 4rem 2rem 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { color: #888; font-size: 0.9rem; line-height: 1.7; margin-top: 0.75rem; max-width: 250px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--orange); border-radius: 10px 0 10px 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.2rem; font-family: 'Inter', sans-serif;}
.footer-logo-text strong { display: block; font-size: 1.2rem; font-weight: 800; color: #fff; font-family: 'Inter', sans-serif;}
.footer-logo-text span { font-size: 0.7rem; color: #aaa; letter-spacing: 1.5px; text-transform: uppercase; font-family: 'Inter', sans-serif;}
.footer-tagline { display: inline-block; margin-top: 0.75rem; color: var(--orange); font-size: 0.8rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; border-left: 3px solid var(--orange); padding-left: 0.6rem; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid #2a2a2a; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: #888; text-decoration: none; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 1.2rem; line-height: 1; }
.footer-divider { max-width: 1100px; margin: 2rem auto 0; border: none; border-top: 1px solid #222; }
.footer-bottom { background: #0d0d0d; padding: 1.25rem 2rem; }
.footer-bottom-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer-bottom-links a { color: #555; text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-copy { color: #555; font-size: 0.85rem; font-weight: 600; }
.footer-copy span { color: var(--orange); }

/* ===== PERMANENT WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 25px; left: 25px; background-color: #25D366; color: #FFF;
  border-radius: 50px; width: 55px; height: 55px; display: flex; align-items: center;
  justify-content: center; font-size: 30px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }
.whatsapp-float svg { fill: #FFF; width: 32px; height: 32px; }

/* ===== 10-SECOND LEAD POP-UP & SUCCESS MODALS ===== */
.popup-overlay, .success-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(13, 13, 13, 0.7); z-index: 10000; align-items: center; justify-content: center; }
.popup-content { background: #fff; padding: 2.5rem 2rem; border-radius: 8px; width: 90%; max-width: 420px; position: relative; border-top: 5px solid var(--orange); text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.25); animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.popup-content h3 { color: var(--blue); font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.popup-content p { color: var(--gray); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.5; }
.popup-content input { width: 100%; padding: 0.75rem 1rem; margin-bottom: 1rem; border: 1.5px solid var(--border); border-radius: 4px; font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; outline: none; }
.popup-content input:focus { border-color: var(--orange); }
.close-popup-btn { position: absolute; top: 12px; right: 15px; background: none; border: none; font-size: 1.2rem; color: #aaa; cursor: pointer; transition: color 0.2s; }
.close-popup-btn:hover { color: var(--text); }

.success-content { background: #fff; padding: 3rem 2rem; border-radius: 8px; width: 90%; max-width: 400px; text-align: center; border-top: 5px solid #2ecc71; animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.success-icon { width: 60px; height: 60px; background: #e6f9f0; color: #0d7a4e; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem; }
.success-content h3 { color: var(--blue); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.success-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.return-btn { background: var(--orange); color: #fff; border: none; border-radius: 25px; padding: 0.6rem 1.5rem; font-size: 0.85rem; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.return-btn:hover { background: #ff7e42; }


/* ========================================================= */
/* ===== MOBILE & TABLET RESPONSIVENESS (MEDIA QUERIES) ==== */
/* ========================================================= */

/* TABLETS & SMALL LAPTOPS */
@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding: 4rem 2rem; }
    .hero::before { display: none; } /* Hides background blur to prevent clipping */
    .hero-btns { justify-content: center; }
    .hero-right { max-width: 500px; margin: 0 auto; }
    
    .why-inner { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    
    .footer-inner { grid-template-columns: 1fr 1fr; }
    
    .ind-grid, .service-grid { grid-template-columns: repeat(2, 1fr); } 
}

/* SMARTPHONES & SMALL SCREENS */
@media (max-width: 768px) {
    /* Navigation */
    nav { flex-direction: column; height: auto; padding: 1.25rem 1rem; gap: 1rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    .nav-cta { margin-left: 0; margin-top: 0.5rem; }
    
    /* Typography Adjustments */
    .hero h1 { font-size: 2.2rem; }
    .page-header h1 { font-size: 2rem; }
    .sec-title { font-size: 1.8rem; }
    
    /* Layout Adjustments */
    .hero-right { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .ind-grid, .service-grid { grid-template-columns: 1fr; margin-top: 1.5rem; }
    .promise-items { grid-template-columns: 1fr; }
    
    /* Padding Adjustments */
    .hero, .page-header, .contact-section, .why-section, .industries-section, .footer-main { padding: 3rem 1.5rem; }
    .content-box { padding: 2rem 1.5rem; }
    .service-card { padding: 1.5rem; }
    
    /* Forms */
    .arow { grid-template-columns: 1fr; gap: 0; }
    .clean-feedback-container, .quote-form-container, .contact-form { padding: 1.5rem; }
    .feedback-wrapper { margin: -2rem 1rem 3rem; }
    
    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-brand p { margin: 0.75rem auto 0; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}