/* ==========================================================================
   DemoPrint IT & Gifts - Custom Stylesheet
   Colors: Blue (#1e40af) + Orange (#ea580c) on White Background
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent-color: #ea580c;
    --accent-dark: #c2410c;
    --accent-light: #f97316;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
    --font-family: "Inter", system-ui, sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-gradient {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand .brand-text {
    color: var(--text-dark);
}

.navbar-brand .text-accent {
    color: var(--accent-color) !important;
}

.navbar-brand i {
    color: var(--accent-color);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-cta .btn {
    border-radius: 50px;
    font-weight: 500;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.625rem 1.25rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success {
    background: #25d366;
    border-color: #25d366;
}

.btn-success:hover {
    background: #128c7e;
    border-color: #128c7e;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg,
            var(--bg-white) 0%,
            var(--bg-light) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.05) 0%,
            rgba(234, 88, 12, 0.05) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.1) 0%,
            rgba(234, 88, 12, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 540px;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 540px;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.floating-card span {
    font-weight: 600;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes gentle-shake {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.1) 0%,
            rgba(234, 88, 12, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    animation: gentle-shake 3s ease-in-out infinite;
}

/* Staggered animation for service cards */
.services-section .col-lg-4:nth-child(1) .service-card {
    animation-delay: 0s;
}

.services-section .col-lg-4:nth-child(2) .service-card {
    animation-delay: 0.5s;
}

.services-section .col-lg-4:nth-child(3) .service-card {
    animation-delay: 1s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--primary-dark) 100%);
    color: white;
    border: none;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-list i {
    color: var(--accent-light);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.1) 0%,
            rgba(234, 88, 12, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.85);
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-list i {
    color: var(--accent-color);
}

/* Why Choose Us */
.why-us-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--accent-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.why-us-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.image-card {
    width: 100%;
    max-width: 400px;
    height: 350px;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--accent-color) 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card .card-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.image-card .card-number {
    display: block;
    font-size: 5rem;
    font-weight: 800;
}

.image-card .card-text {
    font-size: 1.25rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg,
            var(--bg-light) 0%,
            var(--bg-gray) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* About Page */
.about-section {
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--accent-color) 100%);
    border-radius: 24px;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.exp-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Mission Vision */
.mission-vision-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mv-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-muted);
}

/* Values */
.values-section {
    padding: 5rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.1) 0%,
            rgba(234, 88, 12, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Stats */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--primary-dark) 100%);
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: block;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
}

.service-overview-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.printing-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.software-bg {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.gifts-bg {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.service-overlay {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overlay i {
    font-size: 2.5rem;
    color: white;
}

.service-body {
    padding: 1.5rem;
}

.service-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-highlights i {
    color: var(--accent-color);
}

/* Process */
.process-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.process-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--accent-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Service Detail Pages */
.service-intro {
    padding: 5rem 0;
}

.service-image-box {
    height: 350px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.printing-decorative {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.software-decorative {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.gifts-decorative {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.main-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Products */
.products-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.product-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,
            rgba(30, 64, 175, 0.1) 0%,
            rgba(234, 88, 12, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
}

/* Tech Stack */
.tech-section {
    padding: 4rem 0;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.tech-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.tech-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Occasions */
.occasions-section {
    padding: 4rem 0;
}

.occasions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.occasion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    min-width: 140px;
}

.occasion-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.occasion-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.occasion-item span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.contact-info-wrapper {
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    height: 100%;
}

.contact-info-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-wrapper>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.contact-info-list {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    opacity: 0.85;
}

.info-content p {
    margin: 0;
    font-weight: 500;
}

.info-content a {
    color: white;
}

.info-content a:hover {
    opacity: 0.85;
}

.quick-contact .btn-outline-primary {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.quick-contact .btn-outline-primary:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
}

.map-section {
    padding: 0 0 5rem;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
}

.footer-brand i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-brand .text-accent {
    color: var(--accent-color) !important;
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.copyright {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   Legal Pages (Privacy Policy, Terms, Refund Policy)
   ========================================================================== */

.legal-section {
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.legal-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-intro .lead {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-block {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.legal-block h3 i {
    margin-right: 0.5rem;
}

.legal-block h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.legal-block p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-block ul,
.legal-block ol {
    color: var(--text-muted);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-block a {
    color: var(--primary-color);
}

.legal-block a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-block.highlight-block {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(234, 88, 12, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 767.98px) {
    .legal-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .legal-block h3 {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Fixes
   ========================================================================== */

/* Extra Small Devices (phones, < 576px) */
@media (max-width: 575.98px) {

    /* Container adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Header / Navbar */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 50px !important;
    }

    .navbar-collapse {
        background: rgba(30, 64, 175, 0.98);
        margin: 0.5rem -15px 0;
        padding: 1rem;
        border-radius: 0 0 12px 12px;
    }

    .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-cta {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
    }

    .nav-cta .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 70px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-top: 1.5rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Hero Banner (carousel) */
    .hero-banner {
        min-height: 300px !important;
        height: auto !important;
    }

    .hero-banner h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .hero-banner p {
        font-size: 0.95rem !important;
    }

    .hero-banner .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .hero-banner .hero-cta .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 12px !important;
    }

    /* Section Styles */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    /* Services Section */
    .services-section,
    .why-us-section,
    .testimonials-section,
    .cta-section,
    .about-section,
    .mission-vision-section,
    .values-section,
    .contact-section,
    .services-overview,
    .process-section,
    .products-section {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.125rem;
    }

    .service-desc {
        font-size: 0.875rem;
    }

    /* Features Grid (Why Us) */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .feature-content h4 {
        font-size: 0.95rem;
    }

    .feature-content p {
        font-size: 0.8rem;
    }

    /* Image Card */
    .image-card {
        max-width: 100%;
        height: 280px;
    }

    .image-card .card-number {
        font-size: 3.5rem;
    }

    .image-card .card-text {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Page Header */
    .page-header {
        padding: 6rem 0 2.5rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    /* About Page */
    .about-image-wrapper {
        height: auto;
        margin-bottom: 2rem;
    }

    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .exp-number {
        font-size: 1.75rem;
    }

    /* Mission Vision */
    .mv-card {
        padding: 1.5rem;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .mv-card h3 {
        font-size: 1.25rem;
    }

    /* Values */
    .value-card {
        padding: 1.5rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .value-card h4 {
        font-size: 1rem;
    }

    /* Stats */
    .stats-section {
        padding: 3rem 0;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .stat-card .stat-label {
        font-size: 0.875rem;
    }

    /* Services Overview */
    .service-overview-card .service-image {
        height: 180px;
    }

    .service-body {
        padding: 1.25rem;
    }

    .service-body h3 {
        font-size: 1.125rem;
    }

    /* Process Section */
    .process-card {
        padding: 1.5rem;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .process-card h4 {
        font-size: 1rem;
    }

    /* Service Detail Pages */
    .service-image-box {
        height: 250px;
    }

    .main-icon {
        font-size: 4rem;
    }

    /* Products */
    .product-card {
        padding: 1.5rem;
    }

    .product-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .product-card h4 {
        font-size: 1rem;
    }

    /* Contact Page */
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .contact-info-wrapper {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .contact-info-wrapper h3 {
        font-size: 1.25rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Shop Page */
    .filter-section .d-flex.flex-wrap {
        justify-content: center;
    }

    .btn-custom-active,
    .btn-custom-outline {
        padding: 6px 16px;
        font-size: 0.85rem;
        min-width: auto;
    }

    /* Footer */
    .footer {
        padding-top: 2rem !important;
    }

    .footer .row>div {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-brand img {
        height: 70px !important;
    }

    .footer-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        text-align: left;
        padding: 1rem 0;
        margin-top: 1rem;
    }

    .footer-bottom .row>div {
        margin-bottom: 0.5rem;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Legal Pages */
    .legal-section {
        padding: 3rem 0;
    }

    .legal-content {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }

    /* Contact Info Cards */
    .contact-info .info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-info .info-item i {
        margin-bottom: 0.5rem;
    }

    /* Map */
    .map-container iframe {
        height: 250px;
    }
}

/* Small Devices (landscape phones, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-banner {
        min-height: 350px !important;
    }

    .hero-banner h1 {
        font-size: 1.75rem !important;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .image-card {
        height: 300px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .footer .row>div {
        text-align: left;
    }

    .footer-brand {
        justify-content: flex-start;
    }

    .footer-links,
    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Medium Devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-banner {
        min-height: 400px !important;
    }

    .hero-banner h1 {
        font-size: 2rem !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-card {
        height: 320px;
        max-width: 350px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    /* Process cards 2-column on tablet */
    .process-section .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Stats 2-column on tablet */
    .stats-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Footer 2-column layout */
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-bottom-links {
        justify-content: flex-end;
    }
}