/* === Global Styles === */
:root {
    /* Primary Colors */
    --forest-green: #2E7D32;
    --moss-green: #4CAF50;
    --leaf-green: #8BC34A;
    
    /* Secondary Colors */
    --earth-brown: #795548;
    --stone-gray: #607D8B;
    
    /* Background Colors */
    --paper-white: #F9F9F7;
    --parchment: #F5F3E6;
    --birch: #EDE8D5;
    
    /* Accent Colors */
    --sky-blue: #03A9F4;
    --sunset-orange: #FF5722;
    
    /* Text Colors */
    --charcoal: #333333;
    --slate: #546E7A;
    --forest-shade: #1B5E20;
    
    /* Spacing */
    --section-spacing: 80px;
    --element-spacing: 30px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-circle: 50%;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--paper-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'JetBrains Mono', monospace;
    color: var(--forest-shade);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--moss-green);
    margin-top: 10px;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--moss-green);
}

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

section {
    padding: 60px 0;
}

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

.btn {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--forest-shade);
    border-color: var(--forest-shade);
}

.btn-outline-secondary {
    border-color: var(--stone-gray);
    color: var(--stone-gray);
}

.btn-outline-secondary:hover {
    background-color: var(--stone-gray);
    color: white;
}

.btn-outline-primary {
    border-color: var(--forest-green);
    color: var(--forest-green);
}

.btn-outline-primary:hover {
    background-color: var(--forest-green);
    color: white;
}

.btn-success {
    background-color: var(--moss-green);
    border-color: var(--moss-green);
}

.btn-success:hover {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
}

/* Form Styles */
.form-control {
    border-radius: var(--border-radius-md);
    border-color: #dee2e6;
    padding: 12px;
}

.form-control:focus {
    border-color: var(--moss-green);
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

/* === Layout Components === */

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

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

.logo img {
    height: 50px;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-contact .phone,
.quick-contact .address {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-contact i {
    color: var(--forest-green);
}

/* Floating Navigation Orb */
.nav-orb {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--forest-green);
    border-radius: var(--border-radius-circle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-orb:hover {
    transform: scale(1.1);
}

.nav-orb-icon {
    width: 24px;
    height: 18px;
    position: relative;
}

.nav-orb-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-orb-icon span:nth-child(1) {
    top: 0;
}

.nav-orb-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-orb-icon span:nth-child(3) {
    bottom: 0;
}

.nav-orb.active .nav-orb-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.nav-orb.active .nav-orb-icon span:nth-child(2) {
    opacity: 0;
}

.nav-orb.active .nav-orb-icon span:nth-child(3) {
    bottom: 8px;
    transform: rotate(-45deg);
}

.nav-menu {
    position: absolute;
    right: 70px;
    bottom: 15px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-width: 200px;
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.nav-menu.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--charcoal);
}

.nav-menu a:last-child {
    margin-bottom: 0;
}

.nav-menu a:hover {
    background-color: var(--paper-white);
    color: var(--forest-green);
}

.nav-menu a.active {
    background-color: var(--forest-green);
    color: white;
}

.section-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 15px;
    min-width: 180px;
    z-index: 10;
    display: none;
}

.section-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-tooltip ul li {
    padding: 5px 0;
    font-size: 0.9rem;
}

.section-tooltip ul li a {
    color: var(--charcoal);
}

.section-tooltip ul li a:hover {
    color: var(--forest-green);
}

.section-tooltip:before {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.nav-menu a:hover .section-tooltip {
    display: block;
}

/* Footer */
footer {
    background-color: var(--forest-shade);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a {
    color: white;
}

.footer-contact a:hover {
    color: var(--leaf-green);
}

.footer-nav h4,
.footer-policy h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-policy ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-policy ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-policy ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-policy ul li a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content h3 {
    margin-bottom: 0;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin-bottom: 0;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option:last-child {
    margin-bottom: 0;
}

.cookie-description {
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--slate);
}

.close-btn {
    font-size: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--slate);
}

.close-btn:hover {
    color: var(--charcoal);
}

/* === Page Specific Styles === */

/* Home Page */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--paper-white) 0%, var(--parchment) 100%);
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.key-features-section {
    background-color: var(--parchment);
    padding: 80px 0;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--forest-green);
}

.service-offerings-section {
    padding: 80px 0;
}

.eco-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.use-case {
    margin-bottom: 20px;
}

.use-case h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-green);
}

.use-case h4 i {
    color: var(--forest-green);
}

.use-case-card {
    background-color: var(--parchment);
    border-radius: var(--border-radius-md);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.case-icon {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.case-icon i {
    font-size: 24px;
    color: var(--forest-green);
}

.how-it-works-section {
    background-color: var(--paper-white);
    padding: 80px 0;
}

.process-diagram {
    margin-bottom: 30px;
    text-align: center;
}

.step-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 40px;
    height: 40px;
    background-color: var(--forest-green);
    color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.security-details-section {
    padding: 80px 0;
    background-color: var(--parchment);
}

.security-content {
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.access-steps {
    padding-left: 20px;
    margin-bottom: 30px;
}

.access-steps li {
    margin-bottom: 10px;
}

.security-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.technical-snapshot-section {
    padding: 80px 0;
}

.tech-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-card ul {
    padding-left: 20px;
}

.remote-hands-section {
    background-color: var(--parchment);
    padding: 80px 0;
}

.remote-hands-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

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

.feature-list li i {
    color: var(--forest-green);
    margin-top: 5px;
}

.feature-list.compact li {
    margin-bottom: 5px;
}

.cross-connect-section {
    padding: 80px 0;
}

.cross-connect-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.carrier-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
}

.carrier-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-green);
}

.carrier-card h4 i {
    color: var(--forest-green);
}

.carrier-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.pricing-note {
    padding: 15px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
}

.cctv-monitoring-section {
    background-color: var(--parchment);
    padding: 80px 0;
}

.monitoring-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.privacy-note {
    padding: 15px;
    background-color: white;
    border-radius: var(--border-radius-md);
}

.sustainability-section {
    padding: 80px 0;
}

.sustainability-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-quote {
    padding: 20px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    font-style: italic;
}

.contact-form-section {
    background-color: var(--parchment);
    padding: 80px 0;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Technology Stack Page */
.page-header {
    background-color: var(--parchment);
    padding: 60px 0 30px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.breadcrumb i {
    font-size: 12px;
    color: var(--slate);
}

.overview-section {
    padding: 60px 0;
}

.overview-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.physical-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.physical-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.standards-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.power-section {
    padding: 60px 0;
}

.power-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.redundancy-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.redundancy-option {
    flex: 1;
    min-width: 250px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.pdu-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
}

.cooling-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.cooling-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sensor-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.network-section {
    padding: 60px 0;
}

.network-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.port-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
}

.process-steps {
    padding-left: 20px;
    counter-reset: step-counter;
    list-style: none;
}

.process-steps li {
    margin-bottom: 15px;
    counter-increment: step-counter;
    position: relative;
    padding-left: 30px;
}

.process-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--forest-green);
    color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.security-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.cctv-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.remote-hands-ops-section {
    padding: 60px 0;
}

.task-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.task-category {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.monitoring-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.compliance-section {
    padding: 60px 0;
}

.compliance-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    height: 100%;
}

/* Pricing Page */
.pricing-models-section {
    padding: 60px 0;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 5px solid var(--moss-green);
}

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

.pricing-card.featured {
    border-top-color: var(--forest-green);
    background-color: #fcfdf9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.premium {
    border-top-color: var(--earth-brown);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price {
    margin-top: 15px;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 0.2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    color: var(--slate);
}

.price .custom {
    font-size: 1.5rem;
    color: var(--forest-green);
    font-weight: 600;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-features ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    color: var(--forest-green);
}

.pricing-notes {
    font-size: 0.9rem;
    color: var(--slate);
}

.options-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    height: 100%;
}

.options-card h4 {
    margin-bottom: 15px;
    color: var(--forest-green);
}

.options-card .note {
    font-size: 0.9rem;
    color: var(--slate);
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #ddd;
}

.included-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.included-card h4 {
    color: var(--forest-green);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.included-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.pricing-calculator-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.calculator-form {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.calculation-results {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 2px solid var(--forest-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.one-time-fees h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.calculation-notes {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    font-size: 0.9rem;
}

.pricing-transparency-section {
    padding: 60px 0;
}

.price-guarantee {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
}

.pricing-faq-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.additional-questions {
    margin-top: 50px;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contacts Page */
.contact-information-section {
    padding: 60px 0;
}

.contact-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--forest-green);
}

.contact-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    margin-bottom: 0;
}

.department-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    height: 100%;
}

.department-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-green);
    margin-bottom: 10px;
}

.department-card a {
    display: block;
    margin-bottom: 5px;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.location-notes {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.visit-procedure-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.visit-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.procedure-steps {
    padding-left: 25px;
    counter-reset: step-counter;
    list-style: none;
    margin-bottom: 30px;
}

.procedure-steps li {
    margin-bottom: 15px;
    counter-increment: step-counter;
    position: relative;
    padding-left: 35px;
}

.procedure-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: var(--forest-green);
    color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.visit-notes {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours-section {
    padding: 60px 0;
}

.hours-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: var(--slate);
}

.hours-description {
    color: var(--slate);
    font-size: 0.95rem;
}

.note {
    font-size: 0.9rem;
    color: var(--slate);
    margin-top: 10px;
    font-style: italic;
}

.hours-note {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 15px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--slate);
}

.support-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cta-card {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-faq-section {
    background-color: var(--parchment);
    padding: 60px 0;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--forest-green);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item h3 i {
    color: var(--forest-green);
    margin-top: 5px;
}

.contact-channels {
    padding: 30px 0;
}

.channel-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.channel-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.channel-card .icon i {
    font-size: 28px;
    color: var(--forest-green);
}

/* Policy Pages */
.policy-page {
    padding: 60px 0;
}

.policy-header {
    margin-bottom: 40px;
}

.policy-update {
    color: var(--slate);
    font-size: 0.9rem;
    margin-top: 10px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.policy-section h2:after {
    display: none;
}

.policy-section h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.policy-section p, 
.policy-section ul, 
.policy-section ol {
    margin-bottom: 15px;
}

.policy-section ul, 
.policy-section ol {
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 5px;
}

.cookie-management-cta {
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    text-align: center;
    margin-top: 50px;
}

/* Thank You Page */
.thanks-page {
    padding: 80px 0;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.thanks-icon i {
    font-size: 50px;
    color: var(--forest-green);
}

.thanks-details {
    margin-top: 40px;
    text-align: left;
}

.next-steps {
    margin: 40px 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--forest-green);
    color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--forest-green);
}

.step-content p {
    margin-bottom: 0;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    flex: 1;
    min-width: 200px;
    background-color: var(--paper-white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    text-align: center;
}

.contact-method i {
    font-size: 32px;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.contact-method h3 {
    margin-bottom: 10px;
}

.contact-method p {
    margin-bottom: 0;
}

/* Modal */
.modal-content {
    border-radius: var(--border-radius-md);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* International Telephone Input Override */
.iti {
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .feature-card, 
    .use-case-card, 
    .step-card, 
    .tech-card, 
    .sensor-card, 
    .port-card {
        margin-bottom: 20px;
    }
    
    .contact-details {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .nav-orb {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    
    .nav-menu {
        right: 60px;
        min-width: 180px;
    }
    
    .section-tooltip {
        display: none;
    }
    
    .footer-logo, 
    .footer-nav, 
    .footer-policy {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-wrapper {
        margin: 0 auto 15px;
    }
    
    .procedure-steps, 
    .feature-list, 
    .process-steps {
        padding-left: 0;
    }
    
    .procedure-steps li, 
    .feature-list li, 
    .process-steps li {
        padding-left: 30px;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .thanks-page {
        padding: 40px 0;
    }
    
    .step-item, 
    .contact-method {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .redundancy-options, 
    .task-categories {
        display: block;
    }
    
    .redundancy-option, 
    .task-category {
        margin-bottom: 20px;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .hours-item {
        flex-direction: column;
    }
    
    .hours-day {
        margin-bottom: 5px;
    }
}