/* ===================================
   ROOT VARIABLES & RESET
   =================================== */
:root {
    --primary-color: #1F5E8C;
    --primary-dark: #174A6E;
    --primary-light: #3FA4C6;
    --secondary-color: #0C2236;
    --secondary-light: #133450;
    --accent-color: #E37425;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-light-grey: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --font-primary: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --container-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #F9FAFB;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: #fff;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 30px;
}

.logo {
    display: inline-block;
    line-height: 0;
    flex-shrink: 0;
    z-index: 1001;
}

.logo-img {
    width: 200px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.btn-call:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: var(--transition-normal);
    box-shadow: 0 4px 12px rgba(227, 116, 37, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 116, 37, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: url('../images/banner/Quick TV Repair b1.jpg.jpeg') center center / cover no-repeat;
    color: #fff;
    margin-top: 87px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 750px;
    animation: fadeInUp 0.8s ease;
}

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

.hero-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    min-width: 220px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition-normal);
    text-align: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(227, 116, 37, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(227, 116, 37, 0.45);
}

.btn-hero-secondary {
    background: #fff;
    color: var(--secondary-color);
    border-color: #fff;
}

.btn-hero-secondary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* ===================================
   COMMON SECTION STYLES
   =================================== */
.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-tag.light {
    color: var(--accent-color);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 16px;
}

.section-title.left {
    text-align: left;
}

.section-title.white {
    color: #fff;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #fff 0%, #F9FAFB 100%);
    position: relative;
    overflow: hidden;
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 72px;
}

/* --- About Image Area --- */
.about-image-wrap {
    position: relative;
}

.about-image-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(145deg, rgba(31, 94, 140, 0.08), rgba(227, 116, 37, 0.05));
    border-radius: 24px;
    border: 2px solid rgba(31, 94, 140, 0.1);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(31, 94, 140, 0.3);
    z-index: 2;
    letter-spacing: 0.3px;
}

.about-badge i {
    font-size: 16px;
}

.about-exp-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 2px solid rgba(31, 94, 140, 0.12);
}

.about-exp-num {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.about-exp-text {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-align: center;
    line-height: 1.2;
}

/* --- About Content Area --- */
.about-content {
    position: relative;
}

.about-desc {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 32px;
    font-size: 17px;
}

/* Feature Cards Grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(31, 94, 140, 0.2);
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;

    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
     background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
}

.about-feature-card:hover .about-feature-icon {
    background: linear-gradient(145deg, rgba(31, 94, 140, 0.1), rgba(227, 116, 37, 0.08));
    box-shadow: 0 6px 16px rgba(31, 94, 140, 0.25);
}

.about-feature-icon i {
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.about-feature-card:hover .about-feature-icon i {
    color: var(--primary-color);
}

.about-feature-text h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.about-feature-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #F0F6FA 0%, #FFFFFF 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-inner {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(31, 94, 140, 0.08);
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-inner {
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(31, 94, 140, 0.15), 0 0 0 1px rgba(63, 164, 198, 0.1);
    transform: translateY(-10px);
}

/* Floating number badge */
.service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(31, 94, 140, 0.3);
    transition: var(--transition-normal);
}

.service-card:hover .service-number {
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    box-shadow: 0 4px 14px rgba(227, 116, 37, 0.4);
    transform: rotate(6deg) scale(1.08);
}

/* Image area */
.service-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F2F8 0%, #F5F9FC 100%);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

/* Bottom color strip under image */
.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* Text body */
.service-body {
    padding: 24px 22px 0;
    flex: 1;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.35s ease;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Footer with button */
.service-footer {
    padding: 18px 22px 22px;
    margin-top: auto;
}

.btn-service {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: all 0.35s ease;
    box-shadow: 0 4px 14px rgba(227, 116, 37, 0.2);
}

.btn-service:hover {
    box-shadow: 0 8px 24px rgba(227, 116, 37, 0.4);
    transform: translateY(-2px);
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: rotate(12deg) scale(1.1);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-section {
    padding: 40px 0;
    background: linear-gradient(160deg, #06111E 0%, #0C2236 30%, #133450 60%, #0F2E48 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background decorations */
.why-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-circle {
    position: absolute;
    border-radius: 50%;
}

.why-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(31, 94, 140, 0.07) 0%, transparent 70%);
}

.why-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(227, 116, 37, 0.05) 0%, transparent 70%);
}

.why-line {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.why-line-1 {
    width: 1px;
    height: 100%;
    left: 25%;
    top: 0;
}

.why-line-2 {
    width: 1px;
    height: 100%;
    right: 25%;
    top: 0;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px 28px 36px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-card-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 0 0 4px 4px;
    transition: width 0.4s ease;
}

.why-card:hover .why-card-accent {
    width: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(31, 94, 140, 0.2);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(31, 94, 140, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: linear-gradient(145deg, var(--accent-color), #C8611E);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(31, 94, 140, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.why-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(31, 94, 140, 0.3), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 12px 32px rgba(31, 94, 140, 0.35);
}

.why-card:hover .why-icon::after {
    opacity: 1;
}

.why-icon i {
    font-size: 28px;
    color: #fff;
}

.why-card h3 {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.why-card p {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.75;
    margin-bottom: 20px;
}

.why-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
}

.why-card-arrow i {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.why-card:hover .why-card-arrow {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
}

.why-card:hover .why-card-arrow i {
    color: #fff;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(12, 34, 54, 0.9), transparent);
    padding: 30px 20px 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
}

/* ===================================
   TESTIMONIAL SECTION
   =================================== */
.testimonial-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #fff 0%, #F9FAFB 100%);
    position: relative;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 30px 26px 24px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #E5E7EB;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Top row: quote icon + brand badge */
.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.quote-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    color: #fff;
    font-size: 16px;
}

/* Brand badges */
.brand-badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-lg {
    background: #FDE8EE;
    color: #A50034;
}

.brand-sony {
    background: #E3F0FF;
    color: #004E92;
}

.brand-mi {
    background: #FFF0E0;
    color: #FF6900;
}

.brand-samsung {
    background: #E6F0FC;
    color: #034EA2;
}

.stars {
    margin-bottom: 14px;
}

.stars i {
    color: #FFB400;
    font-size: 15px;
    margin-right: 1px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 22px;
    flex: 1;
    font-style: normal;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #E5E7EB;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-user h4 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.service-type {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    letter-spacing: 0.3px;
}

.verified-badge i {
    font-size: 12px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 40px 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(31, 94, 140, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--bg-light-grey);
    color: var(--text-secondary);
    font-size: 14px;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
    padding: 0 28px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-bottom: 22px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

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

    .faq-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 12px;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 40px 0;
    background: linear-gradient(160deg, #06111E 0%, #0C2236 30%, #133450 60%, #0F2E48 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-circle {
    position: absolute;
    border-radius: 50%;
}

.contact-circle-1 {
    width: 600px;
    height: 600px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(31, 94, 140, 0.08) 0%, transparent 70%);
}

.contact-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(227, 116, 37, 0.06) 0%, transparent 70%);
}

.contact-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(31, 94, 140, 0.04) 0%, transparent 70%);
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-top: 8px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: -18px;
}

/* --- Contact Info Cards --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(31, 94, 140, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(31, 94, 140, 0.05);
}

.contact-card-icon {
    width: 45px;
    height: 55px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(31, 94, 140, 0.25);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 28px rgba(31, 94, 140, 0.35);
}

.contact-card-icon i {
    font-size: 22px;
    color: #fff;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.contact-card-label {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
}

.contact-card-value {
   
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    transition: color 0.3s ease;
    word-break: break-word;
}

a.contact-card-value:hover {
    color: var(--accent-color);
}

.contact-card-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-top: 2px;
}

/* --- Contact Social --- */
.contact-social {
    margin-top: 12px;
    padding-top: 8px;
}

.contact-social-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.contact-social-icons {
    display: flex;
    gap: 12px;
}

.contact-social-icons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-social-icons a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.contact-social-icons a:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(31, 94, 140, 0.3);
}

.contact-social-icons a i {
    position: relative;
    z-index: 1;
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 44px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.contact-form-header {
    margin-bottom: 32px;
    margin-top: -25px;
}

.contact-form-header h3 {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Floating Label Input Groups */
.form-group-modern {
    position: relative;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 18px 20px 18px 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.form-group-modern.textarea-group textarea {
    padding: 18px 20px;
    resize: vertical;
    min-height: 120px;
}

.form-group-modern input:hover,
.form-group-modern textarea:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(31, 94, 140, 0.1), 0 0 20px rgba(31, 94, 140, 0.06);
}

.form-group-modern label {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
    padding: 0 6px;
}

.form-group-modern.textarea-group label {
    left: 20px;
    top: 18px;
    transform: none;
}

.form-group-modern input:focus ~ label,
.form-group-modern input:not(:placeholder-shown) ~ label {
    top: 0;
    left: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-color);
    background: #133450;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.form-group-modern.textarea-group textarea:focus ~ label,
.form-group-modern.textarea-group textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-color);
    background: #133450;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transform: none;
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 15px;
    transition: color 0.3s ease;
}

.form-group-modern input:focus ~ .form-icon {
    color: var(--primary-color);
}

/* Submit Button */
.btn-submit-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(227, 116, 37, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

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

.btn-submit-modern:hover::before {
    left: 100%;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(227, 116, 37, 0.4);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(4px);
}

/* Keep .btn-submit for the booking modal */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-color), #C8611E);
    color: #fff;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-normal);
    width: 100%;
    cursor: pointer;
    border: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 116, 37, 0.35);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(180deg, #06111E 0%, #0C2236 40%, #133450 100%);
    color: #fff;
    padding: 0 0 24px;
    position: relative;
}

.footer-glow-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 20%, var(--accent-color) 50%, var(--primary-color) 80%, transparent 100%);
    opacity: 0.8;
    margin-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 4px;
}

/* Footer Links */
.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(6px);
}

.footer-links a:hover i {
    opacity: 1;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(31, 94, 140, 0.1);
    border: 1px solid rgba(31, 94, 140, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-icon i {
    font-size: 14px;
    color: var(--primary-color);
}

.footer-contact li:hover .footer-contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
}

.footer-contact li:hover .footer-contact-icon i {
    color: #fff;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-size: 17px;
    white-space: nowrap;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact li span {
    padding-top: 7px;
}

.footer-contact li a {
    padding-top: 7px;
}

/* Footer Social */
.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.footer-social a:hover {
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(31, 94, 140, 0.25);
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    letter-spacing: 0.3px;
}

/* ===================================
   MOBILE ACTION BAR
   =================================== */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 999;
}

.mobile-action-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.whatsapp-btn {
    background: #25d366;
}

.call-action-btn {
    background: var(--accent-color);
}

/* ===================================
   MODAL
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    color: var(--text-primary);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light-grey);
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--text-secondary);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-form .form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-fast);
    background: #fff;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(31, 94, 140, 0.3);
    transition: var(--transition-normal);
    z-index: 999;
    font-size: 18px;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(31, 94, 140, 0.4);
}

/* ===================================
   RESPONSIVE - TABLET (1024px)
   =================================== */
@media (max-width: 1024px) {
    .logo-img {
        width: 180px;
        height: 65px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-section {
        padding: 80px 0;
    }

    .about-row {
        gap: 48px;
    }

    .about-features {
        gap: 12px;
    }

    .about-feature-card {
        padding: 16px;
    }

    .about-feature-text h4 {
        font-size: 13px;
    }

    .why-section {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-card {
        padding: 34px 24px 30px;
    }

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

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

    /* Contact */
    .contact-section {
        padding: 80px 0;
    }

    .contact-wrapper {
        gap: 36px;
    }

    .contact-form-wrap {
        padding: 36px 30px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 36px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

/* ===================================
   RESPONSIVE - TABLET (768px)
   =================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        width: 160px;
        height: 55px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        gap: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 18px;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .header-actions {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 110px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    /* About */
    .about-section {
        padding: 60px 0;
    }

    .about-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-shape {
        top: -14px;
        left: -14px;
        right: 14px;
        bottom: 14px;
    }

    .about-exp-badge {
        right: -8px;
        width: 80px;
        height: 80px;
    }

    .about-exp-num {
        font-size: 24px;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .about-feature-card {
        padding: 16px;
    }

    /* Services */
    .services-section {
        padding: 60px 0;
    }

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

    .section-title {
        font-size: 28px;
    }

    /* Why */
    .why-section {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 30px 20px 26px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .why-icon i {
        font-size: 24px;
    }

    .why-card-arrow {
        display: none;
    }

    .why-circle-1,
    .why-circle-2 {
        display: none;
    }

    /* Gallery */
    .gallery-section {
        padding: 60px 0;
    }

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

    /* Testimonial */
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact */
    .contact-section {
        padding: 70px 0;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }

    .contact-card-icon i {
        font-size: 18px;
    }

    .contact-card-value {
        font-size: 15px;
    }

    .contact-social-icons a {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .contact-circle-1,
    .contact-circle-2,
    .contact-circle-3 {
        display: none;
    }

    /* Footer */
    .footer-glow-line {
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    /* Modal */
    .modal-content {
        padding: 30px 20px;
    }

    /* Mobile Action Bar */
    .mobile-action-bar {
        display: flex;
    }

    .scroll-to-top {
        bottom: 75px;
        right: 20px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE (480px)
   =================================== */
@media (max-width: 480px) {
    .logo-img {
        width: 140px;
        height: 48px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    /* About */
    .about-section {
        padding: 50px 0;
    }

    .about-image-shape {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
        border-radius: 16px;
    }

    .about-image img {
        border-radius: 14px;
    }

    .about-badge {
        left: 12px;
        bottom: -12px;
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 10px;
    }

    .about-exp-badge {
        width: 72px;
        height: 72px;
        right: -6px;
        top: 16px;
        border-radius: 14px;
    }

    .about-exp-num {
        font-size: 22px;
    }

    .about-exp-text {
        font-size: 9px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-feature-card {
        padding: 16px;
    }

    .about-feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 10px;
    }

    .about-feature-icon i {
        font-size: 16px;
    }

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

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

    .why-card {
        padding: 28px 20px 24px;
    }

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

    .service-card .service-img {
        height: 180px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .contact-form-wrap {
        padding: 28px 18px;
    }

    .contact-form-header h3 {
        font-size: 22px;
    }

    .form-group-modern input,
    .form-group-modern textarea {
        padding: 16px 16px 16px 44px;
        font-size: 14px;
    }

    .form-group-modern.textarea-group textarea {
        padding: 16px;
    }

    .form-group-modern label {
        left: 44px;
        font-size: 14px;
    }

    .form-group-modern.textarea-group label {
        left: 16px;
    }

    .contact-card {
        gap: 16px;
        padding: 18px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 10px;
    }

    .contact-card-icon i {
        font-size: 16px;
    }

    /* Footer */
    .footer-glow-line {
        margin-bottom: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 13px 20px;
        font-size: 15px;
    }

    .mobile-action-bar a {
        font-size: 14px;
        padding: 12px 0;
    }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE (360px)
   =================================== */
@media (max-width: 360px) {
    .logo-img {
        width: 120px;
        height: 42px;
    }

    .hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }
}

/* ===================================
   CTA POPUP MODAL
   =================================== */
.cta-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.cta-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cta-popup-modal{
    background:#fff;
    border-radius:20px;
    max-width:540px;
    width:100%;
    padding:28px 24px 22px; /* reduced from bigger padding */
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,0.3);
    text-align:center;
    transform:scale(0.8) translateY(30px);
    transition:transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    max-height:90vh;   /* keeps popup shorter than screen */
    overflow-y:auto;   /* scroll inside popup if content is more */
}

.cta-popup-overlay.active .cta-popup-modal {
    transform: scale(1) translateY(0);
}

.cta-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light-grey, #F3F4F6);
    color: var(--text-secondary, #4B5563);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.cta-popup-close:hover {
    background: #ef4444;
    color: #fff;
    transform: rotate(90deg);
}

.cta-popup-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color, #1F5E8C), var(--primary-light, #3FA4C6));
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-popup-icon-badge {
    position: absolute;
    bottom: -2px;
    right: -4px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-color, #E37425);
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

.cta-popup-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color, #0C2236);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-popup-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-secondary, #4B5563);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-popup-services {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: left;
}

.cta-popup-services li {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary, #111827);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-popup-services li i {
    color: var(--accent-color, #E37425);
    font-size: 15px;
}
.same-day-btn{
    display: inline-block;
    margin-left: 10px;
    padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-color, #E37425), #f59e0b);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-popup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--accent-color, #E37425), #f59e0b);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(227, 116, 37, 0.4);
}

.cta-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 116, 37, 0.5);
}

.cta-popup-btn i {
    font-size: 18px;
    animation: ctaPhoneRing 1.5s ease-in-out infinite;
}

@keyframes ctaPhoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* CTA Popup Mobile Responsive */@media (max-width: 576px) {
    .cta-popup-overlay{
        padding:14px;
    }
 .cta-popup-modal{
        padding:20px 14px 16px;
        max-height:82vh;
        border-radius:16px;
    }

    .cta-popup-title {
        font-size:20px;
        line-height:1.35;
        margin-bottom:10px;
    }

    .same-day-btn{
        margin-left:0;
        margin-bottom:12px;
        font-size:12px;
        padding:6px 12px;
    }

    .cta-popup-subtitle {
        font-size:13px;
        line-height:1.6;
        margin-bottom:16px;
    }

    .benefits-buttons{
        gap:8px;
        margin-top:12px;
        margin-bottom:12px;
    }

    .benefit-btn{
        flex:0 0 100% !important;
        max-width:100% !important;
        width:100%;
        font-size:12px;
        padding:10px 12px;
        border-radius:14px;
        white-space:normal;
        line-height:1.4;
    }

    .cta-popup-services {
        grid-template-columns: 1fr;
        gap:8px;
        margin-bottom:18px;
    }

    .cta-popup-services li{
        font-size:13px;
    }

    .cta-popup-btn {
        font-size:15px;
        padding:14px 18px;
        border-radius:10px;
    }

    .cta-popup-icon {
        width:64px;
        height:64px;
        font-size:26px;
        margin-bottom:16px;
    }

    .cta-popup-icon-badge {
        width:26px;
        height:26px;
        font-size:11px;
    }

    .cta-popup-close{
        top:10px;
        right:10px;
        width:34px;
        height:34px;
        font-size:14px;
    }
}@media (min-width: 577px) and (max-width: 768px){
    .cta-popup-modal{
        max-width:500px;
        padding:32px 22px 24px;
    }

    .benefit-btn{
        font-size:12px;
        padding:8px 12px;
    }

    .benefit-btn:nth-child(1),
    .benefit-btn:nth-child(2){
        flex:0 0 calc(50% - 6px);
        max-width:calc(50% - 6px);
    }

    .benefit-btn:nth-child(3){
        flex:0 0 100%;
        max-width:100%;
    }
}

/* ===================================
   SERVICE BENEFITS SECTION
   =================================== */
.benefits-section {
    padding: 60px 0 20px;
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 16px 16px 0 0;
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-card-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.benefit-card-accent::before {
    background: linear-gradient(90deg, var(--accent-color), #f59e0b);
    opacity: 1;
}

.benefit-card-accent .benefit-icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.benefit-card-accent .benefit-title {
    color: #fff;
}

.benefit-card-accent .benefit-highlight {
    color: #fbbf24;
}

.benefit-card-accent .benefit-desc {
    color: rgba(255, 255, 255, 0.85);
}

.benefit-card-accent:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(31, 94, 140, 0.35);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(31, 94, 140, 0.08), rgba(63, 164, 198, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08);
}

.benefit-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.benefit-highlight {
    color: var(--accent-color);
}

.benefit-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section Responsive */
@media (max-width: 768px) {
    .benefits-section {
        padding: 40px 0 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit-card {
        padding: 28px 22px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .benefit-title {
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .benefit-card {
        padding: 28px 20px;
    }
}
.benefits-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:15px;
    margin-bottom:15px;
}

.benefit-btn{
    background:linear-gradient(135deg, var(--accent-color, #E37425), #f59e0b);
    color:#fff;
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    white-space:nowrap;
    min-height:40px;
    text-align:center;
}

/* desktop/tablet */
.benefit-btn:nth-child(1),
.benefit-btn:nth-child(2){
    flex:0 0 calc(50% - 8px);
    max-width:calc(50% - 8px);
}

.benefit-btn:nth-child(3){
    flex:0 0 auto;
    max-width:max-content;
}

/* ===================================
   POLICY POPUP MODAL
   =================================== */
.policy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.policy-modal-overlay.active {
    display: flex;
}

.policy-modal {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    animation: policySlideIn 0.35s ease;
}

@keyframes policySlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.policy-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: #555;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.policy-modal-close:hover {
    background: var(--primary-color, #0066ff);
    color: #fff;
    transform: rotate(90deg);
}

.policy-modal-body {
    padding: 0;
}

/* Policy Header */
.policy-header {
    background:linear-gradient(180deg, #06111E 0%, #0C2236 40%, #133450 100%);
    color: #fff;
    padding: 36px 36px 28px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.policy-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.policy-header h2 {
    font-family: var(--font-primary, 'Outfit', sans-serif);
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
}

.policy-entity {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

/* Policy Sections */
.policy-section {
    padding: 20px 36px 0;
}

.policy-section h3 {
    font-family: var(--font-primary, 'Outfit', sans-serif);
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-num {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0066ff, #0044cc);
    color: #fff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.policy-section p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 10px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.policy-section ul li {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.policy-section ul li:last-child {
    border-bottom: none;
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color, #0066ff);
    opacity: 0.7;
}

.policy-section ul li strong {
    color: #1a1a2e;
}

/* Policy Contact Card */
.policy-contact-card {
    background: #f7f9fc;
    border-radius: 14px;
    padding: 20px 24px;
    margin: 16px 36px 28px;
    border: 1px solid #e8ecf2;
}

.policy-contact-card p {
    font-size: 14px;
    color: #444;
    margin: 0 0 8px;
    line-height: 1.6;
}

.policy-contact-card p:last-child {
    margin-bottom: 0;
}

.policy-contact-card i {
    color: var(--primary-color, #0066ff);
    width: 18px;
    margin-right: 6px;
    font-size: 13px;
}

.policy-contact {
    padding-bottom: 0;
}

/* Policy Modal Scrollbar */
.policy-modal::-webkit-scrollbar {
    width: 6px;
}

.policy-modal::-webkit-scrollbar-track {
    background: transparent;
}

.policy-modal::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.policy-modal::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Policy Modal Responsive */
@media (max-width: 768px) {
    .policy-modal {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 16px;
    }

    .policy-header {
        padding: 28px 24px 22px;
        border-radius: 16px 16px 0 0;
    }

    .policy-header h2 {
        font-size: 22px;
    }

    .policy-section {
        padding: 16px 24px 0;
    }

    .policy-contact-card {
        margin: 14px 24px 24px;
        padding: 16px 18px;
    }

    .policy-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .policy-modal-overlay {
        padding: 12px;
    }

    .policy-header {
        padding: 24px 20px 18px;
    }

    .policy-header h2 {
        font-size: 20px;
    }

    .policy-section {
        padding: 14px 20px 0;
    }

    .policy-section h3 {
        font-size: 15px;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 13.5px;
    }

    .policy-contact-card {
        margin: 12px 20px 22px;
        padding: 14px 16px;
    }
}