/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #1d4ed8;
    outline-offset: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo span {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-link {
    text-decoration: none;
}

.logo-with-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-with-mark img {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.menu-close-wrap {
    display: none;
}

.menu-close-btn {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -18px;
    right: -18px;
    height: 18px;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: #2c3e50;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
}

.nav-dropdown-toggle i {
    font-size: 0.75rem;
    color: #667eea;
    opacity: 0;
    transform: translateY(1px);
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    opacity: 1;
}

.nav-dropdown.open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg) translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 280px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(102, 126, 234, 0.16);
    box-shadow: 0 18px 50px rgba(44, 62, 80, 0.18);
    display: grid;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.12);
    color: #2c3e50;
    line-height: 1.35;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: 0;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-card p {
    font-weight: 500;
    color: #52656a;
}

/* Our Approach Section specific stat cards */
#about-2 .about-content {
    grid-template-columns: 1fr 2fr;
}

#about-2 .stat-card {
    min-height: 180px;
    padding: 30px;
}

#about-2 .stat-card i {
    display: block;
    font-size: 3rem;
    line-height: 1;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

#about-2 .stat-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #52656a;
    background: none;
    -webkit-text-fill-color: initial;
    margin: 0;
}

#about-2 .about-text {
    order: 2;
}

#about-2 .about-stats {
    order: 1;
}

/* Our Approach Section */
#approach .approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

#approach .approach-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: none;
    grid-column: 2;
}

#approach .approach-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 1;
}

#approach .approach-stat-card {
    padding: 22px 24px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#approach .approach-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

#approach .approach-stat-card h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin: 0 0 6px;
    font-weight: 700;
    color: #2c3e50;
    background: none;
    -webkit-text-fill-color: initial;
}

#approach .approach-stat-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #52656a;
}

#approach .stat-icon {
    width: 34px;
    height: 34px;
    color: #667eea;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#approach .stat-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    #approach .approach-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #approach .approach-stats,
    #approach .approach-text {
        grid-column: auto;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    color: #52656a;
    line-height: 1.6;
}

.service-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.service-card-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #667eea;
    font-weight: 700;
    font-size: 0.95rem;
}

.service-card-link span::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.82rem;
    transition: transform 0.3s ease;
}

.service-card-link:hover span::after {
    transform: translateX(4px);
}

/* Service Detail Pages */
.service-detail-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
    background:
        linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.82)),
        #667eea;
    color: white;
    overflow: hidden;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 54px;
    align-items: center;
}

.service-hero-copy h1 {
    font-size: 3.4rem;
    line-height: 1.12;
    margin-bottom: 22px;
    font-weight: 800;
}

.service-hero-copy p {
    max-width: 680px;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-link {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 22px;
}

.breadcrumb-link::before {
    content: '\f060';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
}

.service-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
    font-size: 2rem;
}

.service-hero-media {
    min-height: 460px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(31, 38, 135, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.service-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: block;
    object-fit: cover;
}

.service-whatsapp-btn {
    width: auto;
}

.service-hero-copy .hero-buttons {
    justify-content: flex-start;
}

.service-detail-section {
    padding: 90px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.service-detail-panel,
.process-card,
.related-service-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-detail-panel {
    padding: 34px;
}

.service-detail-panel h2,
.service-process-band h2,
.related-services h2,
.service-cta h2 {
    text-align: left;
    margin-bottom: 26px;
    font-size: 2rem;
}

.service-detail-panel h2::after,
.service-process-band h2::after,
.related-services h2::after,
.service-cta h2::after {
    left: 0;
    transform: none;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #52656a;
    line-height: 1.65;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
}

.service-process-band {
    background: rgba(255, 255, 255, 0.34);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    padding: 26px;
    min-height: 190px;
}

.process-card span {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-weight: 800;
}

.process-card p {
    color: #52656a;
    line-height: 1.65;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.related-service-card {
    min-height: 132px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.related-service-card i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(45deg, #667eea, #764ba2);
    flex: 0 0 auto;
}

.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.service-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.service-cta h2 {
    color: white;
    margin-bottom: 14px;
}

.service-cta p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.service-home-float {
    bottom: 100px;
}

.merged-service-details {
    padding-top: 40px;
}

.merged-service-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.merged-service-heading p {
    color: #52656a;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-detail-block {
    scroll-margin-top: 90px;
    margin-bottom: 70px;
}

.service-detail-block:last-child {
    margin-bottom: 0;
}

.merged-service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.merged-service-copy {
    padding: 34px;
}

.merged-service-copy .service-hero-icon {
    color: white;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: 0;
}

.merged-service-copy h1,
.merged-service-copy h2,
.merged-service-copy h3 {
    margin-bottom: 16px;
    color: #2c3e50;
    font-size: 2rem;
    line-height: 1.2;
}

.merged-service-copy p {
    color: #52656a;
    font-size: 1.05rem;
    line-height: 1.75;
}

.merged-service-hero img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: block;
    object-fit: cover;
}

.service-mini-process,
.service-faq-list {
    margin-top: 24px;
}

.service-faq-list {
    max-width: none;
}

.erp-detail-grid {
    align-items: start;
    gap: 22px 30px;
    margin-bottom: 64px;
}

.erp-faq-list {
    margin-top: 0;
}

.erp-detail-grid .service-detail-panel {
    align-self: start;
    height: auto;
    min-height: 0;
}

.erp-faq-section {
    clear: both;
}

.erp-faq-section h2 {
    text-align: center;
    margin-bottom: 28px;
}

.crm-detail-grid {
    align-items: start;
    gap: 22px 30px;
    margin-bottom: 64px;
}

.crm-detail-grid .service-detail-panel {
    align-self: start;
    height: auto;
    min-height: 0;
}

.crm-faq-list {
    margin-top: 0;
}

.crm-faq-section {
    clear: both;
}

.crm-faq-section h2 {
    text-align: center;
    margin-bottom: 28px;
}

.hrm-faq-section {
    clear: both;
    margin-top: 64px;
}

.hrm-faq-list {
    margin-top: 0;
}

.hrm-faq-section h2 {
    text-align: center;
    margin-bottom: 28px;
}

.dashboard-detail-grid {
    align-items: start;
    gap: 22px 30px;
    margin-bottom: 64px;
}

.dashboard-detail-grid .service-detail-panel {
    align-self: start;
    height: auto;
    min-height: 0;
}

.dashboard-faq-section {
    clear: both;
}

.dashboard-faq-list {
    margin-top: 0;
}

.dashboard-faq-section h2 {
    text-align: center;
    margin-bottom: 28px;
}

.service-faq-section {
    clear: both;
    margin-top: 64px;
}

.service-faq-section h2 {
    text-align: center;
    margin-bottom: 28px;
}

.support-services-page .merged-service-heading {
    margin-bottom: 56px;
}

.support-services-page .service-detail-block {
    padding: 0 0 72px;
    margin-bottom: 72px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.12);
}

.support-services-page .service-detail-block:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.support-detail-grid {
    align-items: start;
    gap: 24px 30px;
}

.support-detail-grid .service-detail-panel {
    align-self: start;
    height: auto;
    min-height: 0;
}

.support-single-grid {
    grid-template-columns: minmax(0, 1fr);
}

.support-single-grid .service-detail-panel {
    width: 100%;
}

.support-services-page + .service-cta {
    padding: 44px 0;
}

.support-services-page + .service-cta .service-cta-content {
    align-items: center;
}

.support-services-page + .service-cta h2 {
    margin-bottom: 8px;
}

.support-services-page + .service-cta p {
    line-height: 1.55;
}

.single-service-page {
    padding-top: 120px;
}

.single-service-page .service-detail-block {
    margin-bottom: 0;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.industry-card i {
    font-size: 3rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.industry-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.industry-card p {
    color: #52656a;
    line-height: 1.6;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.project-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.project-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    font-size: 1.5rem;
}

.project-client {
    margin-bottom: 8px;
    color: #667eea;
    font-weight: 600;
}

.project-content h3 {
    margin-bottom: 16px;
    color: #2c3e50;
    font-size: 1.35rem;
    font-weight: 700;
}

.project-content ul {
    margin: 0;
    padding-left: 20px;
}

.project-content li {
    color: #52656a;
    line-height: 1.65;
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #667eea;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(102, 126, 234, 0.02);
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: #52656a;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-item p {
    color: #52656a;
    line-height: 1.5;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 28px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.share-float,
.home-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.page-up-float {
    position: fixed;
    right: 30px;
    bottom: 105px;
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

.page-up-float.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.share-float:hover,
.page-up-float:hover,

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    }
}

/* WhatsApp Message Modal */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: slideUp 0.3s ease;
}

.whatsapp-modal.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-modal-content {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    width: 100%;
    max-width: 540px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(31, 38, 135, 0.24);
    animation: slideUp 0.3s ease;
}

.whatsapp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px 16px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.12);
}

.whatsapp-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #2c3e50;
}

.whatsapp-modal-header p {
    margin: 4px 0 0;
    color: #52656a;
    font-size: 0.92rem;
    line-height: 1.5;
}

.close-btn {
    background: rgba(102, 126, 234, 0.08);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    color: #667eea;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.close-btn:hover {
    background: rgba(102, 126, 234, 0.16);
    color: #2c3e50;
}

.whatsapp-message-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px;
    max-height: min(68vh, 520px);
    overflow-y: auto;
}

.whatsapp-message-option {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 14px;
    border: 1px solid rgba(102, 126, 234, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.06);
}

.whatsapp-message-option:hover {
    background: white;
    border-color: rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(44, 62, 80, 0.1);
}

.whatsapp-message-option i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    font-size: 1.05rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-message-option span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.35;
}

/* Lead capture popup */
.lead-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1600;
}

.lead-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.lead-popup-modal {
    position: relative;
    width: 92%;
    max-width: 520px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
    padding: 26px 22px 20px;
    transform: scale(0.94);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    overscroll-behavior: contain;
}

.lead-popup-overlay.active .lead-popup-modal {
    transform: scale(1);
    opacity: 1;
}

.lead-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}

.lead-popup-modal h3 {
    margin: 0 0 8px;
}

.lead-popup-subtitle {
    margin-bottom: 18px;
    color: #4b5563;
    line-height: 1.55;
}

.lead-popup-body .contact-form {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 14px;
    padding: 16px;
}

.lead-popup-body .form-group {
    margin-bottom: 13px;
}

.lead-popup-body .form-group input,
.lead-popup-body .form-group select,
.lead-popup-body .form-group textarea {
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lead-popup-body .form-group input:focus,
.lead-popup-body .form-group select:focus,
.lead-popup-body .form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.14);
    transform: translateY(-1px);
}

.lead-popup-body .form-group textarea {
    max-height: 180px;
}

.lead-popup-body .btn.primary {
    width: 100%;
    margin-top: 6px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(102, 126, 234, 0.24);
}

.lead-popup-body .btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.3);
}

body:has(.lead-popup-overlay.active) {
    overflow: hidden;
}

@media (max-width: 600px) {
    .lead-popup-overlay {
        padding: 10px;
        align-items: center;
        justify-content: center;
    }

    .lead-popup-modal {
        width: 92vw;
        max-width: 92vw;
        max-height: 88vh;
        padding: 14px 12px 16px;
        border-radius: 14px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .lead-popup-close {
        top: 6px;
        right: 6px;
        width: 40px;
        height: 40px;
        font-size: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .lead-popup-modal h3 {
        font-size: 1.1rem;
        line-height: 1.35;
        margin: 2px 34px 6px 0;
    }

    .lead-popup-subtitle {
        font-size: 0.88rem;
        line-height: 1.42;
        margin-bottom: 10px;
        padding-right: 4px;
    }

    .lead-popup-body .contact-form {
        padding: 10px;
    }

    .lead-popup-body .form-group {
        margin-bottom: 9px;
    }

    .lead-popup-body .form-group input,
    .lead-popup-body .form-group select {
        min-height: 42px;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    .lead-popup-body .form-group textarea {
        min-height: 96px;
        max-height: 140px;
        padding: 10px 12px;
        font-size: 0.92rem;
    }

    .lead-popup-body form {
        padding-bottom: 14px;
    }

    .lead-popup-body .btn.primary {
        width: 100%;
        max-width: none;
        min-width: 0;
        display: block;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
        padding: 11px 14px;
        font-size: 0.95rem;
        line-height: 1.2;
        margin-top: 4px;
        margin-bottom: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(17, 24, 39, 0.45);
        z-index: 900;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: min(86vw, 360px);
        height: 100vh;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 88px 18px 22px;
        transform: translateX(108%);
        transition: transform 0.3s ease;
        z-index: 1100;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        border-left: 1px solid rgba(102, 126, 234, 0.14);
        box-shadow: -18px 0 40px rgba(15, 23, 42, 0.16);
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        margin: 0;
        text-align: left;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .menu-close-wrap {
        display: block;
        border-bottom: 0;
        margin-bottom: 6px;
    }

    .menu-close-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(102, 126, 234, 0.25);
        border-radius: 999px;
        background: #f8fafc;
        color: #334155;
        font-size: 1rem;
        cursor: pointer;
    }

    .nav-dropdown {
        width: 100%;
        text-align: left;
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 12px 8px 12px 4px;
        font-size: 1.02rem;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin: 8px 0 0;
        left: auto;
        max-height: 0;
        padding: 0 10px;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border-radius: 14px;
        transition: max-height 0.25s ease, padding 0.25s ease;
    }

    .nav-links a {
        display: block;
        padding: 12px 8px 12px 4px;
        font-size: 1rem;
        font-weight: 600;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 65vh;
        padding: 10px;
        transform: none;
        overflow-y: auto;
    }

    .nav-dropdown-menu a {
        border-radius: 10px;
        background: #f8fafc;
        margin-bottom: 8px;
        padding: 10px 12px;
        font-size: 0.96rem;
        font-weight: 600;
    }

    .nav-dropdown-menu a:last-child {
        margin-bottom: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    section {
        padding: 80px 0;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        text-align: center;
    }

    #about-2 .about-content {
        grid-template-columns: 1fr;
    }

    #about-2 .about-text {
        order: -1;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-hero {
        min-height: auto;
        padding: 104px 0 64px;
    }

    .service-hero-grid,
    .service-detail-grid,
    .related-services-grid,
    .merged-service-hero {
        grid-template-columns: 1fr;
    }

    .service-hero-grid {
        gap: 36px;
    }

    .service-hero-copy {
        text-align: center;
    }

    .service-hero-copy h1 {
        font-size: 2.45rem;
    }

    .service-hero-copy p {
        font-size: 1.05rem;
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-copy .hero-buttons {
        justify-content: center;
    }

    .breadcrumb-link,
    .service-hero-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .service-hero-media,
    .service-hero-media img {
        min-height: 280px;
        max-height: 360px;
    }

    .merged-service-details {
        padding-top: 20px;
    }

    .merged-service-heading {
        margin-bottom: 36px;
    }

    .service-detail-block {
        scroll-margin-top: 84px;
        margin-bottom: 52px;
    }

    .merged-service-copy {
        text-align: center;
        padding: 30px 24px;
    }

    .merged-service-copy .service-hero-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .merged-service-copy h1,
    .merged-service-copy h2,
    .merged-service-copy h3 {
        font-size: 1.75rem;
    }

    .merged-service-hero img {
        min-height: 260px;
        max-height: 340px;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-cta-content {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .service-cta .btn {
        margin-top: 24px;
    }

    .service-detail-panel h2,
    .service-process-band h2,
    .related-services h2,
    .service-cta h2 {
        text-align: center;
    }

    .service-detail-panel h2::after,
    .service-process-band h2::after,
    .related-services h2::after,
    .service-cta h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .project-card {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item i {
        margin-top: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 12px 16px;
        width: min(520px, 100%);
        margin: 0 auto 14px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .share-float,
    .home-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .service-home-float {
        bottom: 90px;
    }

    .page-up-float {
        right: 20px;
        bottom: 90px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .whatsapp-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .whatsapp-modal-content {
        border-radius: 18px 18px 0 0;
    }

    .whatsapp-message-list {
        grid-template-columns: 1fr;
        max-height: 70vh;
    }
}

body.nav-open .whatsapp-float,
body.nav-open .share-float,
body.nav-open .home-float,
body.nav-open .page-up-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.05rem;
    }

    .logo-with-mark {
        gap: 8px;
    }

    .logo-with-mark img {
        width: 30px;
        height: 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .service-hero-copy h1 {
        font-size: 2rem;
        line-height: 1.18;
    }

    .service-hero-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .service-hero-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        font-size: 1.55rem;
    }

    .service-hero-media,
    .service-hero-media img {
        min-height: 220px;
        max-height: 260px;
        border-radius: 16px;
    }

    .merged-service-copy {
        padding: 26px 20px;
    }

    .merged-service-copy h1,
    .merged-service-copy h2,
    .merged-service-copy h3 {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .merged-service-copy p {
        font-size: 1rem;
    }

    .merged-service-hero {
        border-radius: 16px;
    }

    .merged-service-hero img {
        min-height: 210px;
        max-height: 240px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        text-align: center;
    }

    .service-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .service-card i {
        font-size: 2.75rem;
        margin-bottom: 18px;
    }

    .service-card h3 {
        font-size: 1.08rem;
        line-height: 1.35;
    }

    .service-detail-panel,
    .process-card {
        padding: 24px 20px;
    }

    .service-detail-section {
        padding: 70px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-panel h2,
    .service-process-band h2,
    .related-services h2,
    .service-cta h2 {
        font-size: 1.7rem;
    }

    .related-service-card {
        min-height: 110px;
        padding: 20px;
        align-items: center;
    }

    .faq-question {
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        font-size: 1rem;
        line-height: 1.45;
    }

    .faq-question i {
        margin-top: 4px;
        flex: 0 0 auto;
    }

    .faq-answer p {
        padding: 0 20px 22px;
    }

    .check-list li {
        padding-left: 28px;
        line-height: 1.6;
    }

    .whatsapp-float,
    .share-float,
    .home-float,
    .page-up-float {
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
    }

    .service-home-float {
        bottom: 82px;
    }

    .single-service-page {
        padding-top: 92px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
