/* ================================================
    MODERN TECH DESIGN - PROFESSIONAL IT SERVICES
    ================================================ */

:root {
     /* Light Corporate Blue Theme */
     --primary-color: #2563eb;      /* core blue */
     --primary-light: #60a5fa;
     --primary-dark: #1d4ed8;
     --accent-color: #06b6d4;       /* teal accent */
     --accent-dark: #0891b2;
     --success-color: #22c55e;
     --warning-color: #eab308;
     --danger-color: #ef4444;

     /* Light Backgrounds */
     --light-bg: #f8fafc;       /* page background */
     --light-bg-alt: #ffffff;   /* cards / inner sections */
     --grey-bg: #e5e7eb;        /* borders & subtle lines */
     --grey-bg-light: #f1f5f9;

     /* Text Colors */
     --text-dark: #0f172a;
     --text-light: #4b5563;
     --text-lighter: #6b7280;
     --white: #ffffff;
    
    /* Sizing & Spacing */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.6);
    --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.9);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
body.dark-mode {
    --primary-light: #3385ff;
    --accent-color: #00e5ff;
    --light-bg: #0f172a;
    --light-bg-alt: #1a253e;
    --grey-bg: #2a3f5f;
    --grey-bg-light: #1e2d47;
    --text-dark: #f8fafc;
    --text-light: #cbd5e1;
    --text-lighter: #94a3b8;
    --white: #1a253e;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 25px rgba(0, 102, 255, 0.2);
    --shadow-xl: 0 20px 50px rgba(0, 102, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    transition: var(--transition);
    overflow-x: hidden;
}

/* ================================================
   CONTAINER
   ================================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg-alt);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ================================================
   SERVICES OVERVIEW (GLASS CARDS)
   ================================================ */

.services-full {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.services-full .container {
    position: relative;
    z-index: 1;
}

.service-section {
    position: relative;
    margin-bottom: 24px;
    padding: 24px 22px 20px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.service-section > * {
    position: relative;
    z-index: 1;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.service-header i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background-color: rgba(37, 99, 235, 0.06);
    color: var(--primary-color);
    box-shadow: none;
}

.service-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
}

.service-content h3 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.service-list {
    list-style: none;
    margin-bottom: 18px;
}

.service-list li {
    padding: 9px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-list i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #22c55e;
}

.service-cta {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.6);
    font-size: 0.95rem;
}

.service-cta a {
    margin-right: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.service-cta a:hover {
    color: var(--accent-color);
}
/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn i {
    margin-right: 8px;
}

/* ================================================
   STICKY BUTTONS
   ================================================ */

.sticky-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeIn 0.5s ease-out 0.8s both;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.sticky-btn.whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.sticky-btn.call {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.sticky-btn.call:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* ================================================
   NAVIGATION
   ================================================ */



.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--grey-bg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu .cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.nav-menu .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    background-color: #f9fafb;
    padding: 90px 0 70px;
    text-align: center;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.trust-badge {
    display: inline-block;
    background-color: var(--light-bg-alt);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 24px;
    border: 1px solid var(--grey-bg);
}

.trust-badge i {
    margin-right: 8px;
    color: var(--accent-color);
}

/* ================================================
   HOME JOURNEY (STORY SECTION)
   ================================================ */

.home-journey {
    padding: 70px 0 60px;
    background-color: #ffffff;
}

.home-journey h2 {
    text-align: center;
    margin-bottom: 12px;
}

.journey-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 1rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.journey-step {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius-lg);
    padding: 26px 24px 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.journey-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.journey-time {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* ================================================
   CCTV PRICING (DETAIL PAGE - CURRENT MARKUP)
   ================================================ */

.pricing-wrapper {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 24px 20px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow);
}

.pricing-header {
    text-align: center;
    margin-bottom: 18px;
}

.pricing-header h2 {
    margin-bottom: 6px;
}

.pricing-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    align-items: stretch;
    margin-bottom: 10px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 18px 16px 16px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-title {
    font-size: 1rem;
    margin-bottom: 4px;
}

.pricing-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-price-period {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 4px;
}

.pricing-features li {
    padding: 3px 0;
}

.pricing-cta {
    margin-top: auto;
    padding-top: 8px;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.pricing-button i {
    margin-right: 8px;
}

.pricing-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(148, 163, 184, 0.5);
    text-align: center;
}

.pricing-footer-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.pricing-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-footer-button i {
    margin-right: 6px;
}

@media (min-width: 768px) {
    .pricing-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.journey-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.journey-problem {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.journey-solution {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.journey-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding-right: 16px;
}

.journey-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.journey-link:hover {
    color: var(--accent-color);
}

.journey-link:hover::after {
    transform: translate(3px, -50%);
}

.journey-cta {
    margin-top: 30px;
    text-align: center;
}

.journey-cta p {
    margin-bottom: 16px;
    color: var(--text-light);
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    border-radius: var(--border-radius-lg);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    position: relative;
}

.service-link::after {
    content: ' →';
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* ================================================
   WHY CHOOSE US SECTION
   ================================================ */

.why-choose-us {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.feature h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ================================================
   SERVICE AREAS SECTION
   ================================================ */

.service-areas {
    padding: 80px 0;
    background-color: #f9fafb;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 15px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.area-category {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.4);
    transition: var(--transition);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.area-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.area-category h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.area-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-item {
    background-color: transparent;
    padding: 12px 0;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--grey-bg);
}

.area-item:last-child {
    border-bottom: none;
}

.area-item:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.area-item i {
    color: var(--accent-color);
    flex-shrink: 0;
}

.areas-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
    font-size: 0.95rem;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */

.testimonials {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stars {
    color: var(--warning-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ================================================
   CCTV PACKAGES (DETAIL PAGE)
   ================================================ */

.cctv-packages {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 24px 20px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow);
}

.cctv-packages-header {
    text-align: center;
    margin-bottom: 18px;
}

.cctv-packages-header h2 {
    margin-bottom: 6px;
}

.cctv-packages-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cctv-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 10px;
}

.cctv-package-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    padding: 18px 16px 16px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-sm);
}

.cctv-package-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cctv-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cctv-price span {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-light);
}

.cctv-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cctv-package-card ul li {
    padding: 3px 0;
}

.cctv-package-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.cctv-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    margin-bottom: 6px;
}

.cctv-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

/* ================================================
   BLOG SECTION
   ================================================ */

.blog-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-lg);
    padding: 30px 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog-card h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: 14px;
}

.blog-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.blog-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background-color: #020617;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* ================================================
   PAGE HEADER
   ================================================ */

.page-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-alt) 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid var(--grey-bg);
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ================================================
   SERVICE DETAILS
   ================================================ */

.service-details {
    padding: 60px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.details-main h2 {
    margin-bottom: 20px;
}

.details-main > p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.details-main h3 {
    margin-top: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--grey-bg);
    color: var(--text-light);
    padding-left: 35px;
    position: relative;
    transition: var(--transition);
}

.check-list li:hover {
    padding-left: 40px;
    color: var(--primary-color);
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list i {
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefits-list li {
    padding: 20px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    padding-left: 25px;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.benefits-list li:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    transform: translateX(5px);
    border-left-color: var(--accent-color);
}

.benefits-list i {
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-weight: bold;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg-alt);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.step:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 217, 255, 0.03) 100%);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.solutions-cards,
.camera-types,
.devices-grid,
.voice-options,
.software-categories,
.benefit-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 30px 0 40px 0;
}

.solution-card,
.camera-card,
.device-card,
.voice-card,
.category,
.benefit-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.solution-card:hover,
.camera-card:hover,
.device-card:hover,
.voice-card:hover,
.category:hover,
.benefit-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 217, 255, 0.03) 100%);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.solution-card h4,
.camera-card h4,
.device-card h4,
.voice-card h4,
.category h4,
.benefit-item h4 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.solution-card p,
.camera-card p,
.device-card p,
.voice-card p,
.category p,
.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================================
   TRUST BAR (USED ON CCTV PAGE)
   ================================================ */

.trust-bar {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border-left: 5px solid var(--primary-color);
    padding: 40px 30px;
    margin-bottom: 60px;
    border-radius: var(--border-radius-lg);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1280px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trust-item-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ================================================
   SIDEBAR
   ================================================ */

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sidebar-box.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.sidebar-box.highlight h3 {
    color: var(--white);
}

.sidebar-box.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-box h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--grey-bg);
}

.sidebar-box.highlight ul li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-box ul li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 8px;
}

.sidebar-box.highlight ul li:before {
    color: var(--accent-color);
}

/* ================================================
   FORMS
   ================================================ */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-box h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--grey-bg);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light-bg-alt);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ================================================
   CCTV QUOTE FORM (CCTV PAGE)
   ================================================ */

.cctv-quote-section {
    margin: 50px 0 60px;
}

.cctv-quote-inner {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px 35px;
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.cctv-quote-inner h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--white);
}

.cctv-quote-subtitle {
    text-align: center;
    color: #dbeafe;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.cctv-quote-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-lg);
}

.cctv-quote-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.cctv-quote-submit {
    margin-top: 5px;
}

.cctv-quote-note {
    text-align: center;
}

.cctv-quote-alt {
    margin-top: 24px;
    text-align: center;
}

.cctv-quote-alt p {
    color: #e0f2fe;
    margin-bottom: 12px;
}

.cctv-quote-alt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cctv-quote-alt-actions .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .cctv-quote-inner {
        padding: 30px 20px;
    }

    .cctv-quote-form {
        padding: 25px 20px;
    }
}

/* ================================================
   CONTACT INFO
   ================================================ */

.contact-info-box h2 {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--grey-bg);
}

.contact-method:last-of-type {
    border-bottom: none;
}

.method-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-details h3 {
    margin-bottom: 10px;
}

.method-details a {
    font-weight: 600;
    display: inline-block;
}

.method-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ================================================
   MAP SECTION
   ================================================ */

.map-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ================================================
   FAQ
   ================================================ */

.faq {
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
    margin-bottom: 20px;
}

.values-list li {
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--grey-bg);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li strong {
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.stat:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.stat h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ================================================
   PROCESS SECTION
   ================================================ */

.process-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: center;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.process-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .theme-toggle {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: var(--light-bg-alt);
        width: 100%;
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--grey-bg);
    }

    .hero {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid,
    .faq-grid,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        display: none;
    }

    .sticky-buttons {
        right: 10px;
        bottom: 60px;
        flex-direction: row;
        gap: 8px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .map-container {
        height: 300px;
    }

    .service-card,
    .feature {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .sticky-buttons {
        right: 8px;
        bottom: 50px;
    }

    .sticky-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .services-grid,
    .features-grid,
    .testimonials-grid,
    .faq-grid,
    .areas-grid,
    .solutions-cards,
    .camera-types,
    .devices-grid,
    .voice-options,
    .software-categories,
    .benefit-item {
        grid-template-columns: 1fr;
    }

    .footer-content {
        gap: 30px;
    }

    .map-container {
        height: 250px;
    }

    .page-header h1 {
        font-size: 1.3rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .details-grid {
        gap: 30px;
    }

    .contact-grid {
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .process-flow {
        gap: 10px;
    }
}

/* ================================================
   ANIMATIONS & KEYFRAMES
   ================================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Apply animations */
.hero {
    animation: slideInDown 0.8s ease-out;
}

.hero-content h1 {
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-description {
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.8s both;
}

.trust-badge {
    animation: slideInUp 1s ease-out 1s both;
}

.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.slide-up {
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
}
