/*
Theme Name: FHE Security Services
Theme URI: https://fhesecurity.co.za
Author: FHE Security Services (PTY) LTD
Description: Modern glassmorphism security website with red/grey accent scheme
Version: 2.0.0
Text Domain: fhe-security
*/

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

:root {
    --dark: #1a1a1a;
    --dark-mid: #2d2d2d;
    --grey: #403E3E;
    --grey-light: #6b6b6b;
    --red: #E63946;
    --red-dark: #c1121f;
    --red-glow: rgba(230, 57, 70, 0.4);
    --white: #ffffff;
    --off-white: #f8f9fa;
    --glass-bg: rgba(40, 40, 40, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
    --shadow-red: 0 8px 32px rgba(230, 57, 70, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--dark);
    overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ==================== GLASS HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 26, 0.92);
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    line-height: 1.2;
}

.logo-text p {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 500;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 8px;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-login {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-red);
}

.nav-login::after {
    display: none !important;
}

.nav-login:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.7) 50%, rgba(230,57,70,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-badge i {
    font-size: 10px;
}

.hero h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h2 .highlight {
    color: var(--red);
    position: relative;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    z-index: 0;
}

.hero-visual img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* Floating Stats */
.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 20px;
    z-index: 2;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    min-width: 130px;
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat-card p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(230, 57, 70, 0.1);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--red);
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--dark-mid);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
    font-size: 17px;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ==================== SERVICE CARDS ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: var(--shadow-red);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 57, 70, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--red);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
}

/* ==================== IMAGE CARDS ==================== */
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.image-card .overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.image-card .overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-red);
}

.about-experience h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.about-experience p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.about-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.about-feature i {
    font-size: 20px;
    color: var(--red);
    width: 24px;
    text-align: center;
}

.about-feature span {
    font-weight: 500;
    font-size: 14px;
}

/* ==================== NEWS CARDS ==================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-card-image .category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--red);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-content {
    padding: 28px;
}

.news-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.news-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-content p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.read-more {
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* ==================== STAFF CARDS ==================== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.staff-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
    border-color: rgba(230, 57, 70, 0.3);
}

.staff-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--dark-mid), transparent);
}

.staff-info {
    padding: 24px;
    position: relative;
    margin-top: -30px;
}

.staff-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.staff-info .position {
    color: var(--red);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.staff-info p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 16px;
}

.staff-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.staff-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.staff-social a:hover {
    background: var(--red);
    border-color: var(--red);
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 57, 70, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.contact-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(230, 57, 70, 0.05);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

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

.form-group select option {
    background: var(--dark);
}

/* ==================== QUOTE CALCULATOR ==================== */
.quote-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
}

.quote-calculator {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: var(--glass-blur);
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.quote-form .full-width {
    grid-column: 1 / -1;
}

.quote-form .form-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.quote-summary {
    background: linear-gradient(135deg, var(--dark) 0%, var(--grey) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px;
    margin-top: 32px;
}

.quote-summary h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-summary h3 i {
    color: var(--red);
}

.quote-breakdown {
    margin-bottom: 24px;
}

.quote-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.quote-item span:first-child {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.quote-item span:last-child {
    font-weight: 600;
    font-size: 15px;
}

.quote-item.discount span:last-child {
    color: #4ade80;
}

.quote-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--red);
    font-size: 20px;
    font-weight: 700;
}

.quote-total .amount {
    color: var(--red);
    font-size: 28px;
}

.quote-disclaimer {
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
}

.quote-disclaimer h4 {
    color: var(--red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.quote-disclaimer p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.quote-disclaimer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.quote-disclaimer li {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-bottom: 6px;
}

/* ==================== LOGIN ==================== */
.login-container {
    max-width: 460px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: var(--glass-blur);
}

.login-container .logo {
    justify-content: center;
    margin-bottom: 36px;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
}

.login-form .login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: auto;
    accent-color: var(--red);
}

.forgot-password {
    color: var(--red);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-mid);
    padding: 80px 0 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--red);
    padding-left: 6px);
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--red);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact-item p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(26,26,26,0.85) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero h2 { font-size: 44px; }
    .hero-visual { display: none; }
    .hero-stats { position: relative; right: auto; bottom: auto; margin-top: 60px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        gap: 8px;
        transition: var(--transition);
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 16px;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn { display: block; }

    .hero h2 { font-size: 36px; }
    .hero-stats { flex-direction: column; gap: 12px; }
    .stat-card { min-width: auto; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 350px; }
    .services-grid,
    .news-grid { grid-template-columns: 1fr; }
    .staff-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .quote-form { grid-template-columns: 1fr; }
    .quote-calculator { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 80px 0; }
    .section-header h2 { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero h2 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .page-header h1 { font-size: 32px; }
    .about-features { grid-template-columns: 1fr; }
}