/* Base Styles with New Color Scheme */
:root {
    --primary: #164162;    /* Deep Blue */
    --secondary: #179921;   /* Fresh Green */
    --accent: #2a7f9e;      /* Lighter Blue for accents */
    --light: #f8f9fa;
    --dark: #164162;
    --success: #179921;     /* Using the green for success */
    --warning: #f39c12;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #164162 0%, #2a7f9e 100%);
    --gradient-secondary: linear-gradient(135deg, #179921 0%, #2bc653 100%);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 1200;
    overflow-y: auto;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1150;
}

.product-detail-page {
    display: block;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
}

header .container,
footer .container,
.hero .container,
.contact-hero .container,
.demo-form-header .container,
.section .container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 15px !important;
}

.section-padding {
    padding: 50px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

p {
    margin-bottom: 15px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    background: linear-gradient(135deg, #128019 0%, #23a838 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(23, 153, 33, 0.2);
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f3250 0%, #1f6a87 100%);
    box-shadow: 0 10px 20px rgba(22, 65, 98, 0.2);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Top Notice with Animation */
.top-notice {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.top-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.top-notice i {
    animation: bell 2s infinite;
}

@keyframes bell {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.marquee-text {
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 8px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    width: 100%;
    flex-wrap: wrap;
}

.submenu-wrapper {
    background-color: white;
    position: sticky;
    top: 70px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 999;
    padding: 6px 0;
}

.header-submenu {
    min-height: 64px;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

#subCategoryContainer {
    padding-top: 0;
    margin-top: 0;
}

#subCategoryContainer .category-filters {
    margin-top: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-text span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 18px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li {
    display: flex;
    align-items: center;
}

nav a,
nav .btn,
nav button,
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    font-family: 'Poppins', sans-serif;
}

nav a:hover,
nav .btn:hover {
    color: var(--secondary);
}

nav .header-action-btn {
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 16px;
    background: rgba(22, 65, 98, 0.04);
    color: var(--primary);
    border: 1px solid rgba(22, 65, 98, 0.12);
    gap: 6px;
    font-weight: 700;
    transition: var(--transition);
}

nav .header-action-btn i {
    font-size: 0.9rem;
}

nav .header-action-btn:hover {
    background: rgba(22, 65, 98, 0.08);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(22, 65, 98, 0.08);
}

nav .header-action-btn span#headerCartCount {
    display: inline-flex;
    min-width: 18px;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(23, 153, 33, 0.18);
    color: var(--secondary);
    font-size: 0.78rem;
    margin-left: 6px;
}

nav .header-action-btn i.fa-chevron-down {
    font-size: 0.75rem;
    margin-left: 4px;
}

.login-dropdown {
    position: relative;
}

.login-dropdown .login-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 0;
    width: auto;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    padding: 4px 0;
    z-index: 1002;
    box-sizing: border-box;
}

.login-dropdown .login-dropdown-menu.visible {
    display: block;
}

.login-dropdown-item {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
    text-decoration: none;
}

.login-dropdown-item:hover {
    background: rgba(22, 65, 98, 0.06);
}

.login-dropdown-item i {
    color: var(--secondary);
    min-width: 20px;
    text-align: center;
}

.login-dropdown .login-dropdown-header a:hover,
.login-dropdown-item:hover {
    color: var(--primary);
}

.login-dropdown .login-dropdown-item + .login-dropdown-item {
    margin-top: 3px;
}

.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.auth-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px;
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    overflow: auto;
}

.auth-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.auth-modal-card {
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
    padding: 26px;
    position: relative;
    margin: auto;
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(22, 65, 98, 0.08);
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
}

.auth-modal-header {
    margin-bottom: 18px;
}

.auth-modal-header h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.auth-modal-header p {
    margin: 0;
    color: #5f6d7a;
    font-size: 0.95rem;
}

.auth-modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.auth-tab {
    flex: 1;
    border: none;
    border-radius: 12px;
    background: rgba(22, 65, 98, 0.06);
    color: var(--primary);
    padding: 12px 10px;
    cursor: pointer;
    font-weight: 700;
}

.auth-tab.active {
    background: var(--primary);
    color: white;
}

.auth-modal-view {
    display: block;
}

.hidden {
    display: none !important;
}

.auth-modal-view.hidden {
    display: none;
}

.auth-form-group {
    margin-bottom: 14px;
}

.auth-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.auth-form-input {
    width: 100%;
    border: 1px solid #d6d9df;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.95rem;
    background: #fbfcfd;
}

.auth-submit-btn {
    width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    border: none;
    border-radius: 12px;
    background: var(--secondary);
    color: white;
    font-weight: 700;
}

.auth-switch-text {
    margin-top: 14px;
    text-align: center;
    color: #5f6d7a;
    font-size: 0.95rem;
}

.auth-switch-link {
    border: none;
    background: none;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.login-toggle {
    border: none;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    padding: 0 10px;
    min-height: 44px;
}

#exploreDemoNav .btn {
    min-height: 44px;
    padding: 10px 18px;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 1px;
}

nav a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}

.header-submenu {
    margin-top: 0;
    padding: 6px 0 0;
    border-top: 1px solid #e5e9ee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

#subCategoryContainer {
    margin-top: 2px;
    padding: 0;
    border-top: 1px solid #e5e9ee;
}

#subCategoryContainer .category-filters {
    margin: 0;
    padding: 0;
    gap: 10px;
    justify-content: flex-start;
}

#subCategoryContainer .category-pill {
    padding: 6px 12px;
}

.header-submenu .search-field {
    flex: 0 1 220px;
    max-width: 240px;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(23, 153, 33, 0.08);
    border: 1px solid rgba(23, 153, 33, 0.22);
    border-radius: 999px;
    padding: 0 14px;
    min-height: 42px;
    box-shadow: inset 0 1px 4px rgba(16, 24, 40, 0.06);
}

.header-submenu .search-field i {
    color: var(--secondary);
    font-size: 1rem;
    margin-right: 10px;
}

.header-submenu .search-field input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #334155;
    min-width: 0;
    padding: 0;
    height: 100%;
}

.header-submenu .search-field input::placeholder {
    color: #8b96a6;
    opacity: 0.9;
}

.header-submenu .search-field i + input {
    margin-left: 6px;
}

.header-submenu .search-field input::placeholder {
    color: #8b96a6;
}

.header-submenu .category-filters {
    flex: 1 1 360px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.header-submenu .category-pill {
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: white;
    color: #334155;
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-submenu .category-pill:hover,
.header-submenu .category-pill.active {
    border-color: var(--secondary);
    background: rgba(23, 153, 33, 0.1);
    color: var(--secondary);
}

.app-toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    background: rgba(22, 65, 98, 0.95);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(22, 65, 98, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2000;
    font-size: 0.95rem;
}

.app-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.app-toast.hidden {
    opacity: 0;
}

@media (max-width: 768px) {
    .header-submenu {
        margin-top: 15px;
        padding-top: 10px;
    }

    .header-submenu .category-filters {
        justify-content: flex-start;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(22, 65, 98, 0.85), rgba(22, 65, 98, 0.9)), url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

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

.hero h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Business Types */
.business-types {
    background-color: var(--light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.type-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.type-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(23, 153, 33, 0.15);
}

.type-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.type-item:hover .type-icon {
    transform: scale(1.1);
}

.type-item h4 {
    color: var(--primary);
    font-size: 1.2rem;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(23, 153, 33, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
    cursor: pointer;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(23, 153, 33, 0.15);
}

.why-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.why-card h3 i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* Templates Section */
.template-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.template-tab {
    padding: 12px 25px;
    background-color: #f0f0f0;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    border: 2px solid transparent;
}

.template-tab:hover {
    background-color: #e0e0e0;
    border-color: var(--secondary);
}

.template-tab.active {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--secondary);
}

.template-grid {
    display: none;
}

.template-grid.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    animation: fadeIn 0.5s ease;
}

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

.template-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.template-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(23, 153, 33, 0.15);
}

.template-preview {
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.template-info {
    padding: 20px;
    text-align: center;
}

.template-info h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.template-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonials with Slider */
.testimonials {
    background-color: var(--light);
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-item {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 1px solid rgba(23, 153, 33, 0.1);
}

.testimonial-item:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: rgba(23, 153, 33, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: scale(1.1);
}

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

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    background-color: white;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    transition: var(--transition);
    color: var(--secondary);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--secondary);
    background-color: #f0f9f0;
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail i {
    color: var(--secondary);
    margin-top: 5px;
    font-size: 1.2rem;
}

.contact-detail div {
    flex: 1;
}

.contact-detail strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.qr-container {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.qr-container h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary);
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

.qr-container p {
    color: #666;
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #b8e1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text span {
    color: var(--secondary);
}

.footer-logo-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        padding: 80px 30px 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        margin-bottom: 15px;
    }
    
    nav ul li:last-child {
        margin-top: 20px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .feature-card, .why-card {
        padding: 20px;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .types-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .template-grid.active {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
}

/* Demo Form Styles */
.demo-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.demo-form-container h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group select {
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

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

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    text-align: center;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-form-container {
        padding: 1.5rem;
    }
    
    .demo-form-container h3 {
        font-size: 1.3rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    background-color: #f9f9f9;
}

.legal-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: #34495e;
    margin: 20px 0 10px 0;
    font-size: 1.3rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-section ul, .legal-section ol {
    margin: 15px 0 20px 30px;
    color: #555;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section strong {
    color: #2c3e50;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    padding: 80px 0;
}

.contact-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section {
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-form-section {
    background: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.faq-quick-section {
    background-color: #f8f9fa;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-quick-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-quick-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-quick-item h3 i {
    color: #667eea;
}

.faq-quick-item p {
    color: #666;
    line-height: 1.6;
}

.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 20px;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Active link styling for legal pages */
.footer-link.active {
    color: #e7e8eb;
    font-weight: 600;
}

.nav-link.active {
    color: #667eea;
}

/* Responsive styles */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half {
        margin-bottom: 20px;
    }
    
    .legal-text {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
}
/* Contact Hero with Dark Blue & Green Gradient */
.contact-hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 150, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 136, 229, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.contact-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn.hero-btn {
    background: linear-gradient(45deg, #00695c, #004d40);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 105, 92, 0.3);
}

.btn.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 105, 92, 0.4);
    background: linear-gradient(45deg, #00897b, #00695c);
}

.btn.hero-btn-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Enhanced Contact Info Cards */
.contact-info-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d47a1, #00695c);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-info-card h3 {
    color: #0d47a1;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info-card p {
    color: #546e7a;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-action-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
    color: white;
    text-decoration: none;
}

/* Enhanced Contact Form */
.contact-form {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d47a1, #00695c);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #0d47a1;
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(45deg, #0d47a1, #00695c);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.3);
}

/* Enhanced FAQ Section */
.faq-quick-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0d47a1;
    transition: all 0.3s ease;
}

.faq-quick-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #00695c;
}

.faq-quick-item h3 i {
    background: linear-gradient(45deg, #0d47a1, #00695c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Enhanced Map Section */
.map-placeholder {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.map-placeholder i {
    font-size: 4rem;
    background: linear-gradient(45deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.map-placeholder .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.map-placeholder .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn.hero-btn,
    .btn.hero-btn-outline {
        width: 80%;
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    text-align: center;
    padding: 100px 0;
}

.about-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Timeline */
.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #0d47a1, #00695c);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-year {
    position: absolute;
    left: -40px;
    top: 0;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-left: 40px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    width: 20px;
    height: 2px;
    background: #0d47a1;
}

.timeline-content h3 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #546e7a;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #0d47a1;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.mission-card p {
    color: #546e7a;
    line-height: 1.8;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    font-size: 4rem;
    color: white;
}

.team-member h3 {
    color: #0d47a1;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.member-role {
    color: #00695c;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.member-desc {
    color: #546e7a;
    line-height: 1.6;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.achievement-item p {
    color: #546e7a;
    font-size: 1.1rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #00695c, #004d40);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    text-align: center;
    padding: 100px 0;
}

.blog-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.featured-post-image {
    background: linear-gradient(45deg, #0d47a1, #00695c);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.image-placeholder {
    font-size: 5rem;
    color: white;
}

.featured-post-content {
    padding: 50px;
}

.post-category {
    display: inline-block;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-post-content h3 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-excerpt {
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #78909c;
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 5px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.category-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.category-card p {
    color: #546e7a;
    line-height: 1.6;
}

/* Latest Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
}

.post-image {
    height: 200px;
    background: linear-gradient(45deg, #0d47a1, #00695c);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-content {
    padding: 30px;
}

.post-content h3 a {
    color: #0d47a1;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 15px 0;
    display: block;
}

.post-content h3 a:hover {
    color: #00695c;
    text-decoration: underline;
}

.post-content .post-excerpt {
    color: #546e7a;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 0.95rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    color: #0d47a1;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #0d47a1;
    color: white;
    transform: translateY(-2px);
}

.page-link.active {
    background: linear-gradient(45deg, #0d47a1, #00695c);
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: #546e7a;
    line-height: 1.6;
    font-size: 1.1rem;
}

.newsletter-form form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form .btn-primary {
    background: linear-gradient(45deg, #0d47a1, #00695c);
    border: none;
    padding: 15px 30px;
    white-space: nowrap;
}

.newsletter-form .form-note {
    margin-top: 10px;
    color: #78909c;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .newsletter-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .about-hero h1,
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-timeline {
        padding-left: 20px;
    }
    
    .timeline-content {
        margin-left: 30px;
        padding: 20px;
    }
    
    .timeline-year {
        left: -30px;
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1,
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .mission-grid,
    .team-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* Demo Page Specific Styles */
.demo-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    margin-top: 60px; /* Account for fixed header */
}

.demo-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.demo-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.demo-hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.demo-feature i {
    font-size: 1.2rem;
}

/* Demo Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Demo Form */
.demo-form-section {
    background: #f8f9fa;
}

.demo-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.demo-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.demo-form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.demo-form-body {
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.consent-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.consent-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-loading {
    display: inline-block;
    margin-left: 10px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.form-note i {
    margin-right: 5px;
    color: #667eea;
}

/* Success Message */
.demo-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-icon i {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.reference-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.reference-info strong {
    color: #667eea;
    font-size: 1.2rem;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.next-steps h4 {
    margin-bottom: 15px;
    color: #333;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.next-steps i {
    color: #667eea;
    margin-top: 3px;
}

.success-contact {
    margin-top: 30px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

/* Demo FAQs */
.demo-faq {
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item i {
    color: #667eea;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.trust-content h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.trust-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-stat p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .demo-hero {
        padding: 80px 0 40px;
    }
    
    .demo-hero h1 {
        font-size: 2.2rem;
    }
    
    .demo-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .demo-form-header {
        padding: 30px 20px;
    }
    
    .demo-form-body {
        padding: 30px 20px;
    }
    
    .demo-form-header h2 {
        font-size: 2rem;
    }
    
    .trust-stats {
        gap: 30px;
    }
    
    .trust-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .demo-hero h1 {
        font-size: 1.8rem;
    }
    
    .demo-form-header h2 {
        font-size: 1.6rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}




/* Lead Details Modal specific styles */
#detailsModal .modal-content {
    max-width: 900px;
    width: 95%;
}

/* Responsive adjustments for details modal */
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-row {
        flex-direction: column;
    }
    
    .detail-label {
        flex: none;
        margin-bottom: 5px;
    }
    
    .timestamps {
        flex-direction: column;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

/* E-commerce page styles */
.shop-hero {
    background: linear-gradient(rgba(22, 65, 98, 0.85), rgba(22, 65, 98, 0.95)), url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.shop-hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.shop-hero p {
    font-size: 1.1rem;
    max-width: 760px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.shop-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-field i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #999;
}

.search-field input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    border: 1px solid #d7dfe5;
    border-radius: 999px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-field input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(23, 153, 33, 0.08);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pill {
    border: 1px solid #d7dfe5;
    padding: 12px 18px;
    border-radius: 999px;
    background: white;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.category-pill:hover,
.category-pill.active {
    border-color: var(--secondary);
    background: linear-gradient(135deg, #e9f8ec 0%, #d8f1d8 100%);
    color: var(--secondary);
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (min-width: 1600px) {
    .product-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e5e9ee;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: 0 18px 35px rgba(23, 153, 33, 0.12);
}

.product-image {
    min-height: 320px;
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(23, 153, 33, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.product-category {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    line-height: 1.7;
    flex: 1;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
}

.cart-panel {
    background: white;
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid #e5e9ee;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.cart-panel.hidden {
    display: none;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart-header h3 {
    color: var(--primary);
    font-size: 1.4rem;
}

.cart-count {
    color: var(--secondary);
    font-weight: 700;
}

.cart-items {
    display: grid;
    gap: 18px;
    max-height: 520px;
    overflow-y: auto;
}

.cart-empty {
    color: #64748b;
    padding: 40px 20px;
    border: 1px dashed #d7dfe5;
    text-align: center;
    border-radius: var(--border-radius);
    background: #f9fbfc;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eef2f6;
    border-radius: 15px;
    padding: 14px;
    background: #fbfcfd;
}

.cart-item-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 15px;
    background-color: #f8fafc;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    border: 1px solid #edf2f7;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.cart-item-details span {
    color: #556575;
    font-size: 0.95rem;
}

.remove-cart,
.btn-secondary {
    background: transparent;
    border: 1px solid #e5e9ee;
    color: var(--secondary);
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.remove-cart:hover,
.btn-secondary:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.cart-summary {
    border-top: 1px solid #e5e9ee;
    padding-top: 22px;
    display: grid;
    gap: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: #556575;
    font-weight: 600;
}

.total-row {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
}

.btn-block {
    width: 100%;
}

.admin-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.admin-summary-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.24);
}

.card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.3rem;
    color: #7dd3fc;
}

.admin-summary-card h3 {
    margin-bottom: 14px;
    color: #e2e8f0;
}

.admin-summary-card p {
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.9);
}

.card-value {
    margin-top: 18px;
    color: #38bdf8;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop-actions {
        flex-direction: column;
    }

    .cart-panel {
        position: static;
        top: auto;
    }
}

@media (max-width: 576px) {
    .product-card {
        min-height: auto;
    }

    .product-card-body {
        padding: 20px;
    }

    .search-field input {
        padding: 14px 18px 14px 46px;
    }

    .cart-summary {
        gap: 14px;
    }
}
