/* ==========================================================================
   MESJAT SECURITY LIMITED - Core Styles & Design System
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --brand-navy: #000B4C;        /* Deep Navy Blue from flyers */
    --brand-navy-dark: #000730;   /* Deeper Navy accent */
    --brand-red: #ea232a;         /* Red/Orange brand accent */
    --brand-red-hover: #c9181e;   /* Darker red hover state */
    --brand-blue-light: #0d6efd;  /* Secondary blue accent */
    
    /* Neutral Colors */
    --color-dark: #0a0d14;        /* Primary page text / dark blocks */
    --color-light: #ffffff;       /* Pure white */
    --color-gray-50: #f8f9fa;     /* Softest background light gray */
    --color-gray-100: #e9ecef;    /* Light border/card background */
    --color-gray-200: #dee2e6;    /* Standard border */
    --color-gray-600: #6c757d;    /* Subtitle and muted body text */
    --color-gray-800: #343a40;    /* Dark card background/light text */
    --color-gray-900: #212529;    /* Dark text */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Animation & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--brand-navy);
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray-600);
}

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

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

ul {
    list-style: none;
}

/* Accessibility: Focus outline */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--brand-red);
    outline-offset: 3px;
}

/* Reusable Components */

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

.section {
    padding: 100px 0;
}

.section-bg-dark {
    background-color: var(--brand-navy-dark);
    color: var(--color-light);
}

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
    color: var(--color-light);
}

.section-bg-dark p {
    color: var(--color-gray-100);
}

.section-bg-light {
    background-color: var(--color-gray-50);
}

/* Headings with premium style */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .subtitle {
    font-family: var(--font-heading);
    color: var(--brand-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--brand-red);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 35, 42, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-light);
    color: var(--color-light);
}

.btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--brand-navy);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--brand-navy);
    color: var(--color-light);
}

.btn-navy:hover {
    background-color: var(--brand-navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 11, 76, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}

.btn-outline:hover {
    background-color: var(--brand-navy);
    color: var(--color-light);
    transform: translateY(-2px);
}

/* Navigation Header */
.top-bar {
    background-color: var(--brand-navy-dark);
    color: var(--color-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-item svg {
    color: var(--brand-red);
    width: 14px;
    height: 14px;
}

.top-bar-item a:hover {
    color: var(--color-light);
}

.site-header {
    background-color: var(--color-light);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.site-header.sticky {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--brand-navy);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.65rem;
    color: var(--brand-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-navy);
    padding: 8px 0;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--brand-red);
}

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

.burger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--brand-navy);
    position: absolute;
    left: 0;
    transition: var(--transition-smooth);
}

.burger-bar:nth-child(1) { top: 4px; }
.burger-bar:nth-child(2) { top: 11px; }
.burger-bar:nth-child(3) { top: 18px; }

/* Menu open state */
.burger-menu.open .burger-bar:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.burger-menu.open .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.open .burger-bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--brand-navy-dark);
    min-height: 650px;
    display: flex;
    align-items: center;
    color: var(--color-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 11, 76, 0.95) 40%, rgba(0, 7, 48, 0.7) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray-100);
    margin-bottom: 40px;
    font-weight: 400;
}

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

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--brand-navy);
    padding: 30px 0;
    border-bottom: 4px solid var(--brand-red);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-light);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(234, 35, 42, 0.15);
    border: 1px solid rgba(234, 35, 42, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
}

.trust-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-light);
    line-height: 1.2;
}

.trust-text p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--color-gray-200);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Intro Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--brand-red);
    color: var(--color-light);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
}

.about-badge .years {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-weight: 600;
}

.about-content .subtitle {
    font-family: var(--font-heading);
    color: var(--brand-red);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-highlight {
    font-size: 1.1rem;
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-dark);
}

.about-bullet-item svg {
    color: var(--brand-red);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Services Grid & Cards */
.services-categories-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.services-category-title {
    font-size: 1.5rem;
    border-left: 4px solid var(--brand-red);
    padding-left: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-card {
    background-color: var(--color-light);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius-sm);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(234, 35, 42, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 11, 76, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--brand-red);
    color: var(--color-light);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.service-card:hover .service-link {
    color: var(--brand-red);
}

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

/* Why MESJAT Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background-color: var(--brand-red);
    color: var(--color-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 22px;
    height: 22px;
}

.why-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-info p {
    font-size: 0.95rem;
    margin: 0;
}

.why-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.industry-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    transition: var(--transition-smooth);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 11, 76, 0.1);
}

.industry-info {
    padding: 30px;
}

.industry-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
}

.industry-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.industry-info p {
    font-size: 0.9rem;
    margin: 0;
}

.industry-list {
    margin-top: 15px;
    border-top: 1px solid var(--color-gray-100);
    padding-top: 15px;
}

.industry-list-item {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.industry-list-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--brand-red);
    border-radius: 50%;
    display: inline-block;
}

/* Lead/Assessment CTA Section */
.lead-section {
    position: relative;
    background-color: var(--brand-navy-dark);
    padding: 100px 0;
    color: var(--color-light);
    overflow: hidden;
    text-align: center;
}

.lead-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 18, 126, 0.8) 0%, rgba(0, 7, 48, 0.98) 100%);
    z-index: 1;
}

.lead-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.lead-subtitle {
    font-family: var(--font-heading);
    color: var(--brand-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.lead-section h2 {
    font-size: 2.75rem;
    color: var(--color-light);
    margin-bottom: 24px;
}

.lead-section p {
    font-size: 1.15rem;
    color: var(--color-gray-100);
    margin-bottom: 40px;
}

.lead-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel {
    background-color: var(--brand-navy);
    color: var(--color-light);
    padding: 50px 40px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--brand-red);

}

.contact-info-panel h3 {
    color: var(--color-light);
    font-size: 1.75;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-details h4 {
    color: var(--color-light);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-info-details p {
    color: var(--color-gray-200);
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-details a {
    color: var(--color-light);
}

.contact-info-details a:hover {
    color: var(--brand-red);
}

.contact-map-box {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.contact-map-box h4 {
    color: var(--color-light);
    margin-bottom: 12px;
}

/* Contact Form Grid */
.contact-form-panel {
    background-color: var(--color-light);
    padding: 50px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
}

.contact-form-panel h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.contact-form-panel .lead {
    margin-bottom: 30px;
}

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

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-navy);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background-color: var(--color-gray-50);
}

.form-control:focus {
    background-color: var(--color-light);
    border-color: var(--brand-navy);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 11, 76, 0.15);
}

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

/* Form success message */
.form-feedback {
    display: none;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-feedback.success {
    display: block;
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.form-feedback.error {
    display: block;
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-navy-dark);
    color: var(--color-light);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--brand-red);
}

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

.footer-col h3 {
    color: var(--color-light);
    font-size: 1.25rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--brand-red);
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--color-gray-200);
    margin-bottom: 20px;
}

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

.footer-link {
    font-size: 0.9rem;
    color: var(--color-gray-200);
}

.footer-link:hover {
    color: var(--brand-red);
    padding-left: 5px;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-gray-200);
}

.footer-contact-item svg {
    color: var(--brand-red);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a:hover {
    color: var(--brand-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

.footer-bottom p {
    margin: 0;
    color: var(--color-gray-600);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--brand-red);
}

/* Floating Actions & Widgets */
.whats-app-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whats-app-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whats-app-btn svg {
    width: 32px;
    height: 32px;
}

.whats-app-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--brand-navy-dark);
    color: var(--color-light);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.whats-app-btn:hover .whats-app-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image img,
    .why-image img {
        height: 400px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .top-bar {
        display: none; /* Hide top bar on mobile for spacing */
    }
    .burger-menu {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-light);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 40px 24px;
        transition: var(--transition-smooth);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-link {
        font-size: 1.15rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-gray-100);
        display: block;
    }
    .nav-link::after {
        display: none;
    }
    .header-cta {
        display: none; /* Hide header phone button on small devices to prevent clutter, WhatsApp/Hero CTAs cover it */
    }
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-bg {
        display: none; /* Hide hero background image on mobile, fallback color gradient covers it */
    }
    .trust-grid {
        justify-content: center;
    }
    .trust-item {
        width: 100%;
        max-width: 320px;
    }
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-panel {
        padding: 30px 20px;
    }
    .about-bullets {
        grid-template-columns: 1fr;
    }
    .whats-app-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whats-app-btn svg {
        width: 24px;
        height: 24px;
    }
    .whats-app-tooltip {
        display: none; /* Hide tooltip on hover for mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
