/* ========================================
   Maurex Skadedyrbekjempelse - Styles
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-darkest: #18230F;
    --primary-dark: #27391C;
    --primary: #255F38;
    --primary-light: #1F7D53;
    --primary-lighter: #2a9d6a;
    --accent: #34d399;
    --accent-light: #6ee7b7;
    --text-primary: #1a1f16;
    --text-secondary: #5a6550;
    --white: #ffffff;
    --gray-50: #f6f8f5;
    --gray-100: #eef2ec;
    --gray-200: #dde4d9;
    --gray-300: #c5cfc0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    background: var(--gray-50);
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1608 0%, #18230F 20%, #27391C 50%, #255F38 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23255F38' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    opacity: 0.5;
}

/* Animated Bubbles */
.bubbles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: floatBubble ease-in-out infinite;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.bubble-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 95, 56, 0.4) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-duration: 8s;
}

.bubble-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 30% 30%, rgba(31, 125, 83, 0.3) 0%, transparent 70%);
    top: 60%;
    right: -80px;
    animation-duration: 10s;
    animation-delay: -2s;
}

.bubble-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 30% 30%, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
    top: 20%;
    right: 15%;
    animation-duration: 7s;
    animation-delay: -4s;
}

.bubble-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, rgba(110, 231, 183, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    animation-duration: 6s;
    animation-delay: -1s;
}

.bubble-5 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: 35%;
    left: 50%;
    animation-duration: 5s;
    animation-delay: -3s;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-10px, -50px) scale(1.1); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

/* ========================================
   Hero Content
   ======================================== */
.hero {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 0 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge .material-symbols-rounded {
    font-size: 18px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item .material-symbols-rounded {
    font-size: 20px;
    color: var(--accent);
}

/* Hero Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    animation: cardFloat 6s ease-in-out infinite;
    max-width: 340px;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-card-icon {
    margin-bottom: 16px;
}

.hero-card-icon .material-symbols-rounded {
    font-size: 48px;
    color: var(--accent);
}

.hero-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.hero-card-stats .stat {
    text-align: center;
}

.hero-card-stats .stat strong {
    display: block;
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 800;
}

.hero-card-stats .stat span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
}

.hero-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.hero-card-btn:hover {
    background: var(--primary-lighter);
    transform: translateY(-2px);
}

.hero-card-btn .material-symbols-rounded {
    font-size: 20px;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary-darkest);
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4);
    background: var(--accent-light);
}

.btn-primary .material-symbols-rounded {
    font-size: 22px;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--gray-50);
    padding: 100px 0;
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    display: block;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(37, 95, 56, 0.1);
    border-color: var(--primary-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(37, 95, 56, 0.2);
}

.service-icon .material-symbols-rounded {
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.service-card:hover .service-link {
    color: var(--primary-light);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.services-cta p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature .material-symbols-rounded {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.about-feature strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-interview {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-darkest), var(--primary-dark));
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.about-interview:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(24, 35, 15, 0.3);
}

.about-interview::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
    top: -40px;
    right: -40px;
}

.about-interview-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-interview-icon .material-symbols-rounded {
    font-size: 28px;
    color: var(--accent);
}

.about-interview .material-symbols-rounded {
    font-size: 28px;
    color: var(--accent);
}

.about-interview-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.about-interview-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-interview p {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-interview-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
    line-height: 1.5;
}

.about-interview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.about-interview:hover .about-interview-link {
    gap: 10px;
}

.about-interview-link .material-symbols-rounded {
    font-size: 18px;
    color: var(--accent);
}

.about-interview a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.about-interview a:hover {
    color: var(--accent-light);
}

/* About Card */
.about-card {
    background: linear-gradient(135deg, var(--primary-darkest), var(--primary-dark));
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
}

.about-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.about-card-badge .material-symbols-rounded {
    font-size: 16px;
}

.about-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-card-icon {
    margin-bottom: 16px;
}

.about-card-icon .material-symbols-rounded {
    font-size: 56px;
    color: var(--accent);
}

.about-card-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-card-title {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.about-card-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-card-details .detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.about-card-details .detail .material-symbols-rounded {
    font-size: 20px;
    color: var(--accent);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-section {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(37, 95, 56, 0.2);
}

.why-icon .material-symbols-rounded {
    font-size: 28px;
    color: white;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-darkest) 0%, var(--primary-dark) 30%, var(--primary) 70%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.cta-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 12px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 16px 0;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

a.contact-item:hover {
    background: var(--gray-50);
}

.contact-item-phone {
    background: var(--gray-50);
    border: 2px solid var(--primary);
}

.contact-item-phone:hover {
    background: var(--gray-100) !important;
}

.contact-item .material-symbols-rounded {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-note {
    display: block;
    font-size: 0.85rem !important;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--gray-200);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 95, 56, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: auto;
}

/* Anti-spam */
.spam-check {
    background: var(--gray-100);
    padding: 16px;
    border-radius: 12px;
}

.spam-check label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spam-check input {
    margin-top: 8px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 95, 56, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 95, 56, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn .material-symbols-rounded {
    font-size: 20px;
}

.form-status {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
}

/* ========================================
   Page Hero (subpages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-darkest) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-hero h1 .material-symbols-rounded {
    font-size: 40px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.page-hero .breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   Pest Detail Pages
   ======================================== */
.pest-content {
    padding: 80px 0;
    background: var(--white);
}

.pest-content .container {
    max-width: 900px;
}

.pest-article {
    position: relative;
    margin-top: -60px;
    z-index: 20;
}

.pest-article-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.pest-article h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
}

.pest-article h2:first-child {
    margin-top: 0;
}

.pest-article h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 28px 0 12px;
}

.pest-article p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 16px;
}

.pest-article ul, .pest-article ol {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 16px;
}

.pest-article li {
    margin-bottom: 8px;
}

.pest-info-box {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
}

.pest-info-box h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.pest-info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.pest-cta {
    background: linear-gradient(135deg, var(--primary-darkest), var(--primary-dark));
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 40px;
}

.pest-cta h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.pest-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.pest-cta .btn-primary {
    display: inline-flex;
}

/* Related pests */
.related-pests {
    padding: 80px 0;
    background: var(--gray-50);
}

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

/* ========================================
   Products Section
   ======================================== */
.products-section {
    padding: 80px 0;
    background: var(--white);
}

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

.product-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.product-image .material-symbols-rounded {
    font-size: 64px;
    color: var(--primary);
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
}

.product-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.product-btn .material-symbols-rounded {
    font-size: 18px;
}

.product-category {
    display: inline-block;
    background: rgba(37, 95, 56, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        animation: none;
    }

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

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

    .about-visual {
        order: -1;
    }

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

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

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

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text > p {
        font-size: 1.05rem;
    }

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

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

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .pest-article-inner {
        padding: 28px 20px;
    }

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

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

    .hero-card-stats {
        gap: 8px;
    }

    .about-card {
        padding: 24px;
    }
}
