/*
Theme Name: Physio Enterprise Elementor
Theme URI: https://example.com/physio-enterprise-elementor
Author: Codex
Author URI: https://example.com
Description: Premium Elementor-compatible physiotherapy and corporate healthcare WordPress theme with seeded Home, About Us, Services, and Contact Us pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: physio-enterprise-elementor
Tags: custom-logo, custom-menu, featured-images, full-width-template, elementor, healthcare, business
*/

:root {
  --pe-navy: #0B2341;
  --pe-teal: #138A8A;
  --pe-green: #2F8F83;
  --pe-bg: #F7F9FB;
  --pe-white: #FFFFFF;
  --pe-text: #1A1F2C;
  --pe-border: #E6ECF2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--pe-text);
  background: var(--pe-bg);
}

a {
  color: var(--pe-teal);
}

.site-header,
.site-footer {
  background: var(--pe-navy);
  color: var(--pe-white);
}

.site-header {
  padding: 18px 32px;
}

.site-header__inner,
.site-footer__inner,
.site-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding a {
  color: var(--pe-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
}

.primary-menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 500;
}

.site-main {
  padding: 56px 0;
}

.site-footer {
  padding: 40px 32px;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.elementor-section-wrap,
.physio-enterprise-page {
  font-family: "Poppins", Arial, sans-serif;
}

.pe-premium-card,
.pe-premium-card .elementor-widget-container {
  transition: transform .24s ease, box-shadow .24s ease;
}

.pe-premium-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .site-header__inner,
  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
  }
}

