/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-dark: #0f172a;       /* Deep slate/navy background base */
    --primary-blue: #1a365d;       /* Main tech deep blue */
    --accent-blue: #3182ce;        /* Electric blue accent */
    --accent-blue-rgb: 49, 130, 206;
    --accent-green: #38a169;       /* Accent green for energy/sustainability */
    --accent-green-rgb: 56, 161, 105;
    --accent-amber: #dd6b20;       /* Warning orange for safety systems */
    --hero-navy: #0a192f;         /* Evening sky / infographic navy */
    --hero-navy-deep: #001f3f;     /* Deep navy accent */
    --hero-gold: #f5a623;          /* Warm interior light gold */
    --hero-gold-bright: #ffb400;   /* Bright gold highlight */
    --bg-light: #f8fafc;           /* Light body background */
    --bg-card: #ffffff;            /* Card backgrounds */
    --text-dark: #2d3748;          /* Dark body text */
    --text-heading: #1a202c;       /* Heading text */
    --text-light: #f8fafc;         /* White/light text */
    --text-muted: #718096;         /* Gray placeholder/subtitles */
    --border-color: rgba(226, 232, 240, 0.8);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Animations & Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows & Glows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(49, 130, 206, 0.2);
    --shadow-glow-green: 0 0 20px rgba(56, 161, 105, 0.2);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button, input, textarea, select {
    font-family: inherit;
    outline: none;
    border: none;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   UI UTILITIES & BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #2b6cb0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(49, 130, 206, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(49, 130, 206, 0.2);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(49, 130, 206, 0.4);
}

/* Spinner for Form Submit Button */
.btn-spinner {
    display: none;
    margin-left: 10px;
}

.btn.loading .btn-spinner {
    display: inline-block;
}

.btn.loading .btn-text {
    opacity: 0.8;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 60px;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.accent-text {
    color: var(--accent-blue);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Cascaded reveals */
.services-grid .service-card:nth-child(2n) {
    transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(3n) {
    transition-delay: 0.15s;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-base);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled .logo-text {
    color: var(--text-light);
}

.main-header.scrolled .nav-link {
    color: #cbd5e1;
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--text-light);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition-base);
}

.main-header.scrolled .logo-img {
    height: 42px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 64px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition-base);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    transition: var(--transition-base);
}

.main-header.scrolled .mobile-nav-toggle .bar {
    background-color: var(--text-light);
}

/* Active hamburger state */
.mobile-nav-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

/* ==========================================================================
   HERO SECTION (Homepage image only)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
    padding: calc(var(--header-height) + 24px) 0 48px;
}

.hero-container.hero-image-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-main-image {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-us-section {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

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

.why-card {
    padding: 40px 30px;
    border-radius: 12px;
    background-color: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-card);
    border-color: rgba(49, 130, 206, 0.2);
    box-shadow: var(--shadow-lg);
}

.why-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(49, 130, 206, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Packages (Why Us replacement) */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.package-card {
    padding: 36px 28px;
    border-radius: 16px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card-featured {
    background: linear-gradient(165deg, #0a1628 0%, #1a365d 100%);
    border-color: rgba(49, 130, 206, 0.35);
    color: var(--text-light);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.package-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    background: rgba(49, 130, 206, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    width: fit-content;
}

.package-badge-featured {
    color: #90cdf4;
    background: rgba(255, 255, 255, 0.12);
}

.package-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.package-card-featured .package-name {
    color: var(--text-light);
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 22px;
    flex-grow: 1;
}

.package-card-featured .package-desc {
    color: rgba(248, 250, 252, 0.8);
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.45;
}

.package-card-featured .package-features li {
    color: rgba(248, 250, 252, 0.92);
}

.package-features li i {
    color: var(--accent-green);
    margin-top: 3px;
    font-size: 0.8rem;
}

.package-card-featured .package-features li i {
    color: #9ae6b4;
}

.package-card-featured .btn-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.25);
}

.package-card-featured .btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.package-card-link {
    color: inherit;
    cursor: pointer;
    height: 100%;
}

.package-card-link:hover {
    border-color: rgba(49, 130, 206, 0.35);
}

.package-card-featured.package-card-link:hover {
    border-color: rgba(144, 205, 244, 0.5);
}

.package-tier-emoji {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.package-view-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue);
    background: rgba(49, 130, 206, 0.08);
    border: 1px solid rgba(49, 130, 206, 0.2);
    transition: var(--transition-base);
}

.package-view-link i {
    transition: var(--transition-fast);
}

.package-card-link:hover .package-view-link {
    background: var(--accent-blue);
    color: var(--text-light);
}

.package-card-link:hover .package-view-link i {
    transform: translateX(4px);
}

.package-view-link-light {
    color: #90cdf4;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.package-card-featured:hover .package-view-link-light {
    background: var(--text-light);
    color: var(--primary-dark);
}

@media (max-width: 900px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   SERVICES SECTION (With Glowing Cards)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-image-container {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(15, 23, 42, 0.1) 0%, 
                rgba(15, 23, 42, 0.6) 100%);
    z-index: 2;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    z-index: 3;
    font-family: var(--font-main);
    letter-spacing: 1px;
}

.service-content {
    padding: 22px 24px 24px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: rgba(49, 130, 206, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: absolute;
    top: -27px;
    left: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 4;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Customize icon box green for energy items */
.service-card:has(.pulse-subtle-accent) .service-icon-box {
    background-color: rgba(56, 161, 105, 0.08);
    color: var(--accent-green);
}

.service-title {
    margin-top: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.45;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.service-card:has(.pulse-subtle-accent) .service-link {
    color: var(--accent-green);
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Service Card Hover States (LIFT and GLOW) */
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(49, 130, 206, 0.35);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Custom green energy card glows */
.service-card:has(.pulse-subtle-accent):hover {
    border-color: rgba(56, 161, 105, 0.35);
    box-shadow: var(--shadow-lg), var(--shadow-glow-green);
}

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

.service-card:hover .service-icon-box {
    background-color: var(--accent-blue);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.service-card:has(.pulse-subtle-accent):hover .service-icon-box {
    background-color: var(--accent-green);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-us-section {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.25);
    border: 1px solid rgba(245, 166, 35, 0.2);
    background-color: var(--hero-navy);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 24px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.exp-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--hero-gold-bright);
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-text-side .section-title {
    margin-bottom: 24px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--hero-navy-deep);
    margin-bottom: 20px;
}

.about-text-side p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(49, 130, 206, 0.15);
}

.testi-stars {
    color: #ecc94b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testi-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.testi-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
}

.testi-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.10fr;
    gap: 60px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
}

.contact-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

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

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(49, 130, 206, 0.08);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.detail-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-text p {
    color: var(--text-heading);
    font-weight: 500;
}

.detail-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
}

.detail-link:hover {
    color: var(--accent-blue);
}

/* Contact Form Styling */
.contact-form-side {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.form-instructions {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper.align-start {
    align-items: flex-start;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mt-1 {
    margin-top: 15px;
}

.form-input {
    width: 100%;
    padding: 12px 16px 12px 46px;
    border-radius: 8px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-heading);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-input:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

/* Form Validation States */
.form-input.invalid {
    border-color: #e53e3e;
    background-color: rgba(229, 62, 62, 0.01);
}

.form-input.invalid:focus {
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

.error-msg {
    color: #e53e3e;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 5px;
    display: none;
}

.error-msg.visible {
    display: block;
}

/* Form Success Alert */
.form-success-alert {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(56, 161, 105, 0.08);
    border: 1px solid rgba(56, 161, 105, 0.2);
    display: none;
    align-items: flex-start;
    gap: 15px;
}

.form-success-alert.visible {
    display: flex;
}

.success-alert-icon {
    font-size: 1.4rem;
    color: var(--accent-green);
    margin-top: 2px;
}

.success-alert-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2f855a;
    margin-bottom: 4px;
}

.success-alert-content p {
    font-size: 0.85rem;
}

/* Form Error Alert */
.form-error-alert {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(229, 62, 62, 0.08);
    border: 1px solid rgba(229, 62, 62, 0.25);
    display: none;
    align-items: flex-start;
    gap: 15px;
}

.form-error-alert.visible {
    display: flex;
}

.error-alert-icon {
    font-size: 1.4rem;
    color: #e53e3e;
    margin-top: 2px;
}

.error-alert-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #c53030;
    margin-bottom: 4px;
}

.error-alert-content p {
    font-size: 0.85rem;
    color: #742a2a;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--primary-dark);
    color: #cbd5e1;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--text-light);
}

.footer-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-blue);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: var(--accent-blue);
    transform: translateX(4px);
}

.footer-links-list a i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-contact-list li i {
    color: var(--accent-blue);
    font-size: 1rem;
    margin-top: 4px;
}

.footer-link {
    color: #cbd5e1;
    font-weight: 600;
}

.footer-link:hover {
    color: var(--accent-blue);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.footer-policy-links a {
    color: #64748b;
}

.footer-policy-links a:hover {
    color: var(--accent-blue);
}

.policy-divider {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0.4; transform: translate(-50%, 8px); }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-subtle {
    animation: iconPulse 3s ease-in-out infinite;
}

.pulse-subtle-accent {
    animation: iconPulseAccent 3s ease-in-out infinite;
}

.animate-pulse {
    animation: subtleBreathe 4s ease-in-out infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(49, 130, 206, 0)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(49, 130, 206, 0.4)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(49, 130, 206, 0)); }
}

@keyframes iconPulseAccent {
    0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(56, 161, 105, 0)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(56, 161, 105, 0.4)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(56, 161, 105, 0)); }
}

@keyframes subtleBreathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-main-image {
        max-width: 600px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-main-image {
        max-width: 92%;
    }
    .section-title {
        font-size: 1.85rem;
    }
    
    /* Navigation drawer for mobile */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-dark);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px 40px 40px;
        transition: var(--transition-base);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        margin-bottom: 40px;
    }
    
    .nav-link {
        color: #cbd5e1;
        font-size: 1.1rem;
        display: block;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--text-light);
    }
    
    .nav-cta-btn {
        display: none; /* Hide in mobile header, show drawer menu item instead if desired */
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */
.service-card-link {
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-grid-main {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.service-detail-page {
    padding-top: var(--header-height);
}

.service-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.service-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(26, 54, 93, 0.75) 100%);
}

.service-hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 24px 70px;
    color: var(--text-light);
    max-width: 720px;
}

.service-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(248, 250, 252, 0.75);
    margin-bottom: 24px;
}

.service-breadcrumb:hover {
    color: var(--text-light);
}

.service-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(49, 130, 206, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #90cdf4;
    margin-bottom: 20px;
}

.service-hero.accent-green .service-hero-icon {
    background: rgba(56, 161, 105, 0.2);
    color: #9ae6b4;
}

.service-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.service-hero-desc {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-categories-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.service-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Full infographic banners (user-provided category art) */
.category-showcase-infographic {
    padding: 0;
}

.category-infographic-wrap {
    background: #0a1628;
    line-height: 0;
}

.category-infographic-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* Compact layout: image + category details fit in one viewport */
.category-showcase-compact-view .category-showcase-compact-grid {
    display: grid;
    grid-template-columns: minmax(200px, 36%) 1fr;
    align-items: stretch;
    max-height: min(82vh, 620px);
    overflow: hidden;
}

.category-showcase-compact-view .category-infographic-wrap {
    position: relative;
    min-height: 0;
    max-height: min(82vh, 620px);
    overflow: hidden;
    border-radius: 16px 0 0 16px;
}

.category-showcase-compact-view .category-infographic-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: min(82vh, 620px);
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.category-showcase-compact-view .category-showcase-details {
    border-radius: 0 16px 16px 0;
    border-top: none;
    border-left: 1px solid var(--border-color);
    padding: 18px 22px;
    overflow-y: auto;
    max-height: min(82vh, 620px);
    align-self: stretch;
}

.category-showcase-compact-view .category-block h3 {
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.category-showcase-compact-view .category-list {
    gap: 6px;
}

.category-showcase-compact-view .category-list li {
    font-size: 0.82rem;
    line-height: 1.35;
}

.category-showcase-compact-view .category-list li i {
    margin-top: 3px;
}

/* Landscape crop for water & security — same compact height */
.category-showcase-landscape.category-showcase-compact-view .category-infographic-wrap {
    aspect-ratio: auto;
}

.category-showcase-landscape.category-showcase-compact-view .category-infographic-image {
    position: static;
    object-position: center 40%;
}

/* Stacked on smaller screens */
@media (max-width: 900px) {
    .category-showcase-compact-view .category-showcase-compact-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .category-showcase-compact-view .category-infographic-wrap {
        max-height: 200px;
        border-radius: 16px 16px 0 0;
    }

    .category-showcase-compact-view .category-infographic-image {
        min-height: 180px;
        max-height: 200px;
    }

    .category-showcase-compact-view .category-showcase-details {
        border-radius: 0 0 16px 16px;
        border-left: none;
        border-top: 1px solid var(--border-color);
        max-height: none;
        overflow: visible;
    }
}

/* Legacy full-width stack (non-compact) */
.category-showcase-infographic:not(.category-showcase-compact-view) .category-infographic-wrap {
    max-height: 280px;
    overflow: hidden;
}

.category-showcase-infographic:not(.category-showcase-compact-view) .category-infographic-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.category-showcase-landscape:not(.category-showcase-compact-view) .category-infographic-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 260px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.category-showcase-landscape:not(.category-showcase-compact-view) .category-infographic-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    border-radius: 0;
}

@media (max-width: 768px) {
    .category-showcase-landscape:not(.category-showcase-compact-view) .category-infographic-wrap {
        aspect-ratio: 4 / 3;
        max-height: 220px;
    }
}

.category-showcase-infographic .category-showcase-details {
    border-radius: 0 0 20px 20px;
}

.category-showcase-compact-view .category-showcase-details {
    border-radius: 0 16px 16px 0;
}

/* Category showcase — Urban Company style banners */
.category-showcase {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.category-showcase:hover {
    box-shadow: var(--shadow-lg);
}

.category-showcase-banner {
    display: grid;
    grid-template-columns: minmax(280px, 38%) 1fr;
    min-height: 240px;
}

.category-showcase-panel {
    background: linear-gradient(165deg, #0a1628 0%, #1a365d 55%, #1e3a5f 100%);
    color: var(--text-light);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.category-showcase-num {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.category-showcase-title {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin-bottom: 12px;
}

.category-showcase-tagline {
    font-size: 0.92rem;
    color: rgba(248, 250, 252, 0.78);
    line-height: 1.55;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.showcase-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #90cdf4;
    font-size: 0.8rem;
}

.category-showcase.accent-green .showcase-feature-icon {
    color: #9ae6b4;
}

.showcase-feature-text {
    color: rgba(248, 250, 252, 0.92);
    padding-top: 6px;
}

.category-showcase-visual {
    position: relative;
    background: #e8edf3;
    min-height: 280px;
}

.category-showcase-image {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
}

.category-showcase-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: linear-gradient(90deg, #0f2744 0%, #1a365d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-benefit-pill {
    flex: 1 1 auto;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.showcase-benefit-pill:last-child {
    border-right: none;
}

.showcase-benefit-pill i {
    color: #90cdf4;
    font-size: 1rem;
    flex-shrink: 0;
}

.category-showcase.accent-green .showcase-benefit-pill i {
    color: #9ae6b4;
}

.category-showcase-details {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    padding: 28px 32px 32px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.category-block h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-blue);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-showcase.accent-green .category-block h3 {
    color: var(--accent-green);
}

.category-block-benefits h3 {
    color: var(--accent-green);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.category-list li i {
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.category-list-benefits li i {
    color: var(--accent-green);
}

.service-cta-bar {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.service-cta-bar h2 {
    color: var(--text-light);
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.service-cta-bar p {
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .category-showcase-banner {
        grid-template-columns: 1fr;
    }
    .category-showcase-panel {
        padding: 28px 24px;
    }
    .category-showcase-image {
        min-height: 240px;
    }
    .category-showcase-details {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }
    .showcase-benefit-pill {
        min-width: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 768px) {
    .service-hero-inner {
        padding: 48px 24px 56px;
    }
}

/* ==========================================================================
   PACKAGE DETAIL PAGES
   ========================================================================== */
.package-detail-page {
    padding-top: var(--header-height);
}

.package-hero {
    padding: 56px 0 48px;
    color: var(--text-light);
}

.package-tier-essential.package-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
}

.package-tier-plus.package-hero {
    background: linear-gradient(135deg, #1a4731 0%, #276749 50%, #1a365d 100%);
}

.package-tier-elite.package-hero {
    background: linear-gradient(135deg, #1a1628 0%, #44337a 40%, #1a365d 100%);
}

.package-hero-inner {
    max-width: 720px;
}

.package-breadcrumb {
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 24px;
}

.package-breadcrumb:hover {
    color: var(--text-light);
}

.package-hero-emoji {
    font-size: 3.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.package-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.package-hero-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.package-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(248, 250, 252, 0.88);
    margin-bottom: 28px;
    line-height: 1.6;
}

.package-detail-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.package-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.package-includes-banner {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(90deg, rgba(49, 130, 206, 0.1) 0%, rgba(56, 161, 105, 0.1) 100%);
    border: 1px solid rgba(49, 130, 206, 0.2);
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.package-includes-banner i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.package-category-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.package-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-tier-essential .package-category-icon {
    background: rgba(49, 130, 206, 0.1);
    color: var(--accent-blue);
}

.package-tier-plus .package-category-icon {
    background: rgba(56, 161, 105, 0.1);
    color: var(--accent-green);
}

.package-tier-elite .package-category-icon {
    background: rgba(128, 90, 213, 0.12);
    color: #6b46c1;
}

.package-category-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.package-category-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(113, 128, 150, 0.35);
    line-height: 1;
}

.package-category-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.package-category-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    flex: 1;
    min-width: 140px;
}

.package-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-category-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.45;
}

.package-category-list li i {
    color: var(--accent-green);
    margin-top: 4px;
    font-size: 0.75rem;
}

.package-tier-elite .package-category-list li i {
    color: #805ad5;
}

@media (max-width: 768px) {
    .package-categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
    .contact-form-side {
        padding: 24px;
    }
    .experience-badge {
        padding: 12px 16px;
        bottom: 15px;
        left: 15px;
    }
    .exp-num {
        font-size: 1.8rem;
    }
}
