/* 
==========================================================================
FLORIDA STRONG CORE BRAND STYLESHEET
ARCHITECTURE: Desktop First -> Mobile Overrides (Max 900px)
==========================================================================
*/

:root {
    /* Core Brand Palette */
    --primary-blue: #0d47a1;
    --secondary-blue: #2196f3;
    --accent-green: #8bc34a;
    --accent-green-dark: #7cb342;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f4f7f6;
    --white: #ffffff;
    --border-color: #e0e0e0;

    /* Transparency & Overlays */
    --nav-bg-solid: rgba(255, 255, 255, 0.95);
    --nav-bg-glass: rgba(255, 255, 255, 0.85);
    --overlay-bg: rgba(13, 71, 161, 0.98);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Animation & Structure */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    
    /* Strict Layering System */
    --z-base: 1;
    --z-nav: 1000;
    --z-overlay: 2000;
}

/* ==========================================================================
   CHAPTER 1: RESET & BASE CANVAS
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   CHAPTER 2: DESKTOP TYPOGRAPHY & ELEMENTS
   ========================================================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

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

a:hover {
    color: var(--primary-blue);
}

.text-center {
    text-align: center;
}

/* -----------------------------------------
   Buttons
   ----------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-accent {
    background-color: var(--accent-green);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-green-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-full-width {
    width: 100%;
    display: flex;
}

/* ==========================================================================
   CHAPTER 3: DESKTOP NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: var(--z-nav);
    transition: transform 0.4s var(--ease-out-expo), background 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    background: var(--nav-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: var(--nav-bg-solid);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.brand img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.nav-links a:not(.btn):hover,
.nav-links a.active:not(.btn) {
    color: var(--primary-blue);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-blue);
}

.hamburger-btn svg {
    width: 30px;
    height: 30px;
    display: block;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--overlay-bg);
    z-index: var(--z-overlay);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-green);
}

.close-btn-abs {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* ==========================================================================
   CHAPTER 4: DESKTOP PAGE LAYOUTS & COMPONENTS
   ========================================================================== */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* Section Padding */
.section-padding {
    padding: 5rem 0;
}

.bg-alt {
    background-color: var(--background-light);
}

.bg-main {
    background-color: var(--white);
}

.bg-primary-block {
    background-color: var(--primary-blue);
    color: var(--white);
}

.bg-primary-block h2,
.bg-primary-block p {
    color: var(--white);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 8rem 1rem 4rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #093170 0%, #1565c0 100%);
    color: var(--white);
    margin-bottom: 2rem;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Homepage Hero */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    color: var(--white);
    background: linear-gradient(rgba(13, 71, 161, 0.85), rgba(9, 49, 112, 0.95)), url('../images/hero-background.webp') no-repeat center center/cover;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Feature Card */
.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-card img {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-card .card-content {
    padding: 2rem;
    flex-grow: 1;
}

.service-card img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

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

.service-card .card-actions {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.service-card .card-actions .btn {
    flex: 1;
}

/* Service Alt Cards for Homepage */
.service-card--alt {
    text-align: center;
}

.service-card--alt img {
    margin: 0 auto 1.5rem;
}

.learn-more {
    display: inline-block;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-top: 1rem;
}

.learn-more:hover {
    color: var(--primary-blue);
}

/* Testimonials Layout */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card .client-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
}

/* ==========================================================================
   CHAPTER 5: INNER PAGES SPECIFIC LAYOUTS
   ========================================================================== */
.content-layout {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.primary-content {
    flex: 3;
}

.sidebar-content {
    flex: 1;
}

.sidebar-widget {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.sidebar-widget h3,
.sidebar-widget h4 {
    margin-bottom: 1.25rem;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav li a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-nav li a:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.sidebar-nav li.active a {
    background: var(--primary-blue);
    color: var(--white);
}

.service-page-cta-button {
    font-size: 1.15rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

/* --- Profile Section --- */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

.profile-photo img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.bio-text h3 {
    border-bottom: 2px solid var(--accent-green);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.bio-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.bio-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.bio-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--accent-green);
}

/* --- Map Section --- */
.map-section {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    margin-bottom: 5rem;
}

.map-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--white);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Hobbies Grid --- */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.hobby-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.hobby-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.hobby-card h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* --- Resources Grid --- */
.resource-section {
    margin-bottom: 5rem;
}

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

.resource-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-preview-image {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-item a:hover .resource-preview-image {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.resource-details {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.resource-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.resource-details p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Contact & Forms --- */
.contact-card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 3.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin: 0 auto 4rem auto;
    max-width: 800px;
}

.user-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.user-type-option {
    flex: 1;
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--background-light);
}

.user-type-option:hover {
    background: var(--white);
    border-color: var(--primary-blue);
}

.user-type-option.selected {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.user-type-option .user-type-role {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: block;
}

.user-type-option .user-type-prompt {
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.user-type-option.selected .user-type-prompt {
    opacity: 0.9;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15);
}

/* Custom Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.checkbox-item {
    position: relative;
    display: flex;
    align-items: center;
}

.checkbox-item label {
    font-weight: 600;
    margin-bottom: 0;
    cursor: pointer;
    padding-left: 2rem;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-dark);
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom Checkbox Circle appearance */
.checkbox-item label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* Inner Checkbox Dot */
.checkbox-item label::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.checkbox-item input[type="checkbox"]:checked + label::after {
    display: block;
}

.checkbox-item input[type="checkbox"]:checked + label::before {
    border-color: var(--primary-blue);
}

.direct-info {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.direct-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.direct-info p {
    margin-bottom: 0;
}

.owner-email a {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 2px;
}

.owner-email a:hover {
    color: var(--secondary-blue);
}

/* Form Status Message */
.form-status-message {
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.form-status-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status-message.sending {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #d6d8db;
}

/* --- Blog Pages --- */
.blog-archive-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post-card-archive {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.blog-post-card-archive:hover {
    transform: translateY(-3px);
}

.blog-post-card-archive .blog-thumbnail {
    width: 320px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-post-card-archive .card-content {
    padding: 2rem 2rem 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-post-card-archive h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-meta a {
    color: var(--primary-blue);
}

/* Single Blog Post page layout */
.post-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.post-featured-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 6px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.post-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   CHAPTER 6: SHARE DIALOG MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: var(--z-overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.share-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .share-card {
    transform: translateY(0);
}

.share-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.share-close:hover {
    color: var(--text-dark);
}

.share-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.share-card p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.share-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    background: var(--background-light);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 85px;
}

.share-option:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.share-option svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.share-option:hover svg {
    stroke: var(--white);
}

/* Copy Toast message */
#copy-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333333;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: var(--z-overlay);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#copy-toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ==========================================================================
   CHAPTER 7: MOBILE COMMAND CENTER (Max 900px)
   ========================================================================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .page-hero {
        padding: 7rem 1.5rem 3.5rem 1.5rem;
    }

    .hero {
        padding: 9rem 1.5rem 5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .sidebar-content {
        order: 2;
    }

    .primary-content {
        order: 1;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .map-section {
        padding: 2rem 1.5rem;
    }

    .map-wrapper {
        aspect-ratio: 4 / 3;
    }

    .blog-post-card-archive {
        flex-direction: column;
        gap: 0;
    }

    .blog-post-card-archive .blog-thumbnail {
        width: 100%;
        max-height: 220px;
    }

    .blog-post-card-archive .card-content {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .user-type-selector {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 420px) {
    .service-card .card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

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