/*=====================================
  1. CSS VARIABLES & COLOR THEME
======================================*/
:root {
    /* Brand Color Palette */
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    
    --secondary-color: #0f172a;
    --secondary-hover: #1e293b;
    
    /* Vibrant Accent Colors */
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    --accent-sky: #0284c7;
    --accent-purple: #8b5cf6;
    --whatsapp-green: #25d366;
    
    /* Text & Neutral Tones */
    --text-color: #334155;
    --text-muted: #062146;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Layout Variables */
    --header-height: 90px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Elevating Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.12);
}

/*=====================================
  2. RESET & GLOBAL STYLES
======================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip; 
    background-color: var(--bg-light);
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/*=====================================
  3. COMMON COMPONENTS & BUTTONS
======================================*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Section Titles & Badges */
.section-title, .section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title h2 {
    font-size: 26px;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title p, .section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 8px auto 0;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #e0f2fe;
    color: var(--accent-sky);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/*=====================================
  4. HEADER & NAVIGATION
======================================*/
header {
    background: var(--bg-white);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo img {
    height: 45px;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    list-style: none;
    padding: 8px 0;
    z-index: 100;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-menu li a {
    padding: 10px 18px;
    display: block;
    color: var(--text-color);
    font-size: 13px;
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/*=====================================
  5. HERO SECTION & BREADCRUMBS
======================================*/
.hero {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    margin-top: var(--header-height);
}

.breadcrumb {
    background: var(--bg-white);
    padding: 12px 0;
    margin-top: var(--header-height);
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

.hero-page {
    margin-top: calc(var(--header-height) + 10px) !important;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.hero-policy-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid #bfdbfe;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 32px;
    color: var(--secondary-color);
    line-height: 1.25;
    margin-bottom: 12px;
    font-weight: 800;
}

.hero-content h2 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 560px;
    margin: 24px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 5px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.trust-badge i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.trust-content span {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/*=====================================
  6. FEATURE HIGHLIGHTS & PROCESS
======================================*/
.why-us {
    
    padding: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.feature-box i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-box h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.feature-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.process-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 18px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-emerald);
}

.step-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 20px;
}

.process-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/*=====================================
  7. SERVICES & TV TECH SLIDER
======================================*/
.services {
    padding: 50px 0;
    background: var(--bg-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-title {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.card-img-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 12px;
    border: 1px solid var(--border-color);
}

.card-img-png {
    max-height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.btn-readmore:hover {
    gap: 10px;
}

.display-tech-section {
    padding: 36px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 6px 0;
    position: relative;
}

.slider-wrapper::before,
.slider-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent);
}

.slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent);
}

.slider-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: autoSlideContinuous 20s linear infinite;
}

.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

.display-card {
    width: 160px;
    flex-shrink: 0;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.display-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    background-color: #ffffff;
}

.display-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    white-space: nowrap;
}

@keyframes autoSlideContinuous {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * (160px * 5 + 12px * 5))); }
}

/*=====================================
  8. CUSTOM ASSEMBLED AMPLIFIERS
======================================*/
.custom-builds {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.build-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.build-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.build-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.build-card.digital { border-top: 4px solid var(--primary-color); }
.build-card.full-package { border-top: 4px solid var(--accent-emerald); }
.build-card.budget { border-top: 4px solid var(--accent-amber); }

.card-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.build-card.digital .card-badge { background: var(--primary-light); color: var(--primary-color); }
.build-card.full-package .card-badge { background: #ecfdf5; color: #059669; }
.build-card.budget .card-badge { background: #fffbeb; color: #d97706; }

.build-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.build-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 13.5px;
}

.build-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.build-card ul li {
    font-size: 13.5px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.build-card ul li i {
    color: var(--accent-emerald);
    font-size: 14px;
}

/* Call To Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3c72 100%);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.cta-banner h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.cta-banner p {
    font-size: 14px;
    margin-bottom: 24px;
    color: #cbd5e1;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-wa {
    background: var(--whatsapp-green);
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-cta-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-cta-call {
    background: var(--bg-white);
    color: var(--secondary-color) !important;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-cta-call:hover {
    background: var(--primary-light);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/*=====================================
  9. BRANDS, REVIEWS & ABOUT SLIDER
======================================*/
.brands { padding: 40px 0; }

.brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
}

.chip {
    background: var(--bg-white);
    color: var(--text-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.brand-note {
    text-align: center;
    font-size: 13.5px;
    color: var(--accent-rose);
    font-weight: 600;
}

.reviews {
    padding: 50px 0;
    background: var(--bg-white);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.review-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.stars {
    color: var(--accent-amber);
    font-size: 14px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 13px;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.5;
}

.review-card h4 {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-square {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-description {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.about-checklist li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-slider-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.about-slider {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: 600%;
    height: 100%;
    animation: autoSlide 15s infinite ease-in-out;
}

.slide {
    width: 16.666%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes autoSlide {
    0%, 13%     { transform: translateX(0%); }
    16%, 29%    { transform: translateX(-16.666%); }
    32%, 45%    { transform: translateX(-33.333%); }
    48%, 61%    { transform: translateX(-50%); }
    64%, 77%    { transform: translateX(-66.666%); }
    80%, 93%    { transform: translateX(-83.333%); }
    100%        { transform: translateX(0%); }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.faq-item h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.faq-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/*=====================================
  10. CONTACT & FOOTER
======================================*/
.contact-home {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.appointment-notice {
    background: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    color: #1e40af;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.address-line {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    font-size: 14px;
    margin-bottom: 28px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.contact-details-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.contact-link:hover {
    text-decoration: underline;
}

footer {
    background: var(--secondary-color);
    color: #94a3b8;
    padding: 48px 0 24px;
}
.footer-grid {
    display: grid;
    /* டெஸ்க்டாப்பில் 3 சமமான பத்திகளாகப் பிரிக்கிறது */
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px;
    margin-bottom: 32px;
    align-items: start;
}

.footer-grid h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-grid ul { list-style: none; }

.footer-grid a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.2s ease;
}

.footer-grid a:hover { color: #ffffff; }

footer hr {
    border: none;
    border-top: 1px solid #1e293b;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    font-size: 12px;
}
/*______form--_-----_______*/
.sq-enquiry-section {
      max-width: 550px;
      margin: 40px auto;
      padding: 30px;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      font-family: inherit;
      background-color: #ffffff;
      box-sizing: border-box;
    }

    .sq-header-title {
      text-align: center;
      margin-top: 0;
      margin-bottom: 24px;
    }

    .sq-header-title h2 {
      color: #1e293b;
      font-size: 24px;
      font-weight: 700;
      margin: 0 0 6px 0;
    }

    .sq-header-title p {
      color: #64748b;
      font-size: 14px;
      margin: 0;
    }

    .sq-form-group {
      margin-bottom: 16px;
    }

    .sq-form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 6px;
      color: #334155;
      font-size: 14px;
    }

    .sq-form-group input,
    .sq-form-group select,
    .sq-form-group textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #cbd5e1;
      border-radius: 6px;
      box-sizing: border-box;
      font-size: 14px;
      color: #0f172a;
      background-color: #ffffff;
      transition: border-color 0.2s ease;
    }

    .sq-form-group input:focus,
    .sq-form-group select:focus,
    .sq-form-group textarea:focus {
      outline: none;
      border-color: #25D366;
    }

    .sq-form-group textarea {
      resize: vertical;
    }

    .sq-submit-btn {
      width: 100%;
      background-color: #25D366;
      color: #ffffff;
      border: none;
      padding: 14px;
      font-size: 16px;
      font-weight: 700;
      border-radius: 6px;
      cursor: pointer;
      transition: background-color 0.2s ease;
      margin-top: 10px;
    }

    .sq-submit-btn:hover {
      background-color: #1eb855;
    }
/*=====================================
  11. UNIFIED MOBILE RESPONSIVE MEDIA QUERIES
======================================*/
@media (max-width: 768px) {
    :root {
        --header-height: 65px; /* Compact mobile header */
    }

    header {
        height: var(--header-height);
    }

    .logo img {
        height: 35px;
    }

    header .btn,
    .header-btn {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    /* Mobile Nav Container Flow */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        align-items: stretch;
        gap: 16px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile Dropdown Display Fix */
    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin-top: 8px;
        padding: 6px 12px;
        border-left: 3px solid var(--primary-color);
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .hero-grid, .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-buttons, 
    .action-buttons, 
    .cta-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        gap: 12px !important;
    }

    .hero-buttons .btn,
    .action-buttons .btn,
    .cta-buttons a,
    .cta-buttons button {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .hero-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .trust-badge {
        padding: 10px;
        gap: 8px;
    }

    .trust-badge i {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .trust-content strong { font-size: 0.85rem; }
    .trust-content span { font-size: 0.75rem; }

    .features-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-grid, .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-img-wrapper { height: 180px; }
    .display-card { width: 130px; padding: 8px 10px; }
    .display-title { font-size: 12px; }
    .slider-track { gap: 8px; }

    .about-slider { height: 250px; }
    .contact-card { padding: 20px 16px; }

    /* Fixed Quick Action Floating Buttons */
    .fixed-actions {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 9999;
    }

    .action-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: transform 0.25s ease;
    }

    .phone-btn { background-color: var(--primary-color); }
    .whatsapp-btn { background-color: var(--whatsapp-green); }

    .top-btn {
        background-color: var(--secondary-color);
        opacity: 0;
        visibility: hidden;
    }

    .top-btn.visible {
        opacity: 1;
        visibility: visible;
    }
}