/* ========================================
   SHOOTING TRIO PHOTOGRAPHY - STYLES
   ======================================== */

/* CSS Variables for Easy Theming */
:root {
    /* Colors */
    --primary-color: #192C55;
    --primary-dark: #0f1a30;
    --primary-light: #2a4575;
    --secondary-color: #d8c53f;
    --secondary-dark: #b8a835;
    --accent-color: #10b981;
    
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --bg-overlay: rgba(0, 0, 0, 0.3);
    
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    --section-padding-mobile: 60px 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

/* Accessibility: Visually hidden but available to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: 8px;
    transition: all var(--transition-medium);
    cursor: pointer;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-secondary-inverse {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

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

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

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

.logo-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--bg-white);
    padding: 1rem 20px;
    border-bottom: 1px solid var(--border-color);
    margin-top: 80px; /* Push below fixed navbar */
}

.breadcrumb nav {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    color: var(--text-secondary);
    font-weight: 400;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: var(--text-secondary);
    font-weight: 400;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-medium);
}

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

.nav-menu a {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-btn-nav {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--text-white) !important;
    border-radius: 6px;
}

.cta-btn-nav:hover {
    background: var(--primary-dark);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left var(--transition-medium);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 1.125rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    background-image:
        linear-gradient(135deg, rgba(26, 77, 143, 0.6) 0%, rgba(15, 51, 96, 0.7) 100%),
        url('images/treasure-valley-sports-photography-hero-background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding-top: 80px;
}

/* Mobile hero background - optimized smaller image */
@media (max-width: 768px) {
    .hero {
        background-image:
            linear-gradient(135deg, rgba(26, 77, 143, 0.6) 0%, rgba(15, 51, 96, 0.7) 100%),
            url('images/treasure-valley-sports-photography-hero-mobile.webp');
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-title-typed {
    display: flex;
    flex-direction: column;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
}

.typed-line-1,
.typed-line-2 {
    display: block;
    white-space: nowrap;
}

#typedSport {
    color: var(--secondary-color);
    border-right: 3px solid var(--secondary-color);
    padding-right: 5px;
    animation: blink 0.7s infinite;
    display: inline-block;
    min-width: 1ch;
}

@keyframes blink {
    0%, 50% { border-color: var(--secondary-color); }
    51%, 100% { border-color: transparent; }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    opacity: 0.95;
}

.hero-location {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    opacity: 0.95;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    opacity: 0.7;
    font-size: 0.875rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(-45deg) translateY(0); }
    40% { transform: rotate(-45deg) translateY(10px); }
    60% { transform: rotate(-45deg) translateY(5px); }
}

/* ========================================
   VALUE PROPS SECTION
   ======================================== */

.value-props {
    padding: var(--section-padding);
    background: var(--bg-light);
    transform: translateY(-40px);
    margin-bottom: -40px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: var(--bg-white);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.value-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
}

.service-card:nth-child(even) {
    direction: rtl;
}

.service-card:nth-child(even) > * {
    direction: ltr;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .service-card:nth-child(even) {
        direction: ltr;
    }
}

/* ========================================
   SPORTS COVERED SECTION
   ======================================== */

.sports-covered {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sport-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    cursor: pointer;
}

.sport-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--primary-color);
    color: var(--text-white);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sport-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* ========================================
   PROBLEM/SOLUTION SECTION
   ======================================== */

.problem-solution {
    padding: var(--section-padding);
}

.problem-solution h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    align-items: center;
}

.comparison-side {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.comparison-side h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-list {
    padding-left: 1.5rem;
}

.comparison-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.comparison-list.negative li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 1.25rem;
}

.comparison-list.positive li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-divider span {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.difference-statement {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.difference-statement h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .comparison-container {
        grid-template-columns: 1fr;
    }
    
    .vs-divider {
        order: 2;
    }
    
    .vs-divider span {
        transform: rotate(90deg);
    }
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--bg-white);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--text-white);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-sport {
    font-weight: 600;
    font-size: 1.125rem;
}

.portfolio-location {
    opacity: 0.9;
}

.portfolio-item.hidden {
    display: none;
}

/* ========================================
   TEAMS SECTION
   ======================================== */

.teams-section {
    padding: var(--section-padding);
}

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

.team-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.team-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-logo-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-medium);
}

.team-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.teams-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.teams-cta-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: var(--section-padding);
    background: var(--bg-light);
    position: relative;
    padding-bottom: calc(var(--section-padding) + 80px); /* Extra space for controls */
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
    justify-content: flex-start;
    align-items: flex-start;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    min-width: 400px;
    max-width: 400px;
    min-height: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card.expanded {
    min-height: 550px;
    max-height: 600px;
}

/* Testimonial header with avatar and info */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Circular avatar with Google badge */
.testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.testimonial-avatar img:first-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.google-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Info section with name and date */
.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.testimonial-info strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
    font-size: 0.95rem;
}

.testimonial-preview {
    margin: 0;
}

.testimonial-full {
    margin: 0;
}

/* Toggle button */
.testimonial-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: auto;
    text-align: left;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.testimonial-toggle:hover {
    color: var(--primary-dark);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.google-reviews-link {
    text-align: center;
    margin-top: 2rem;
}

.google-reviews-link a {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.google-reviews-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Testimonials Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 400px;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .google-reviews-link a {
        font-size: 1rem;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-cta {
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   SCHOOLS LOGOS SECTION - CONTINUOUS SCROLL
   ======================================== */

.schools-logos {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
    overflow: hidden;
}

.schools-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.logos-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

.logos-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.7;
    flex-shrink: 0;
    position: relative;
}

.logo-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.logo-item img {
    max-width: 150px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-item .logo-name {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.logo-item:hover .logo-name {
    opacity: 1;
    bottom: -15px;
}

@media (max-width: 768px) {
    .schools-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .logos-grid {
        gap: 3rem;
    }

    .logo-item {
        min-width: 120px;
    }

    .logo-item img {
        max-width: 120px;
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        gap: 2rem;
    }

    .logo-item {
        min-width: 100px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 60px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    opacity: 0.9;
    font-size: 0.875rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--text-secondary);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   CONTACT SIMPLE SECTION
   ======================================== */

.contact-simple {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.contact-simple-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-simple-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.contact-info-item .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.contact-text strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-text span {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.contact-cta {
    margin: 3rem 0;
}

.contact-cta .btn {
    font-size: 1.3rem;
    padding: 1rem 3rem;
}

.contact-simple .social-links {
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .contact-simple-content h2 {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 1.1rem;
    }

    .contact-cta .btn {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
        width: 100%;
        max-width: 350px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 20px 2rem;
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    /* Mobile-optimized hero background image */
    .hero {
        background-image:
            linear-gradient(135deg, rgba(26, 77, 143, 0.6) 0%, rgba(15, 51, 96, 0.7) 100%),
            url('images/treasure-valley-sports-photography-hero-mobile.webp');
        background-repeat: no-repeat;
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   ARTICLE PAGE STYLES
   ======================================== */

.article-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.article-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.key-takeaways {
    padding: 60px 20px;
    background: var(--bg-light);
}

.key-takeaways h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.takeaways-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.takeaways-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.1rem;
}

.takeaways-list li:before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.article-content {
    padding: var(--section-padding);
    background: white;
}

.content-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

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

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.content-section blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-dark);
}

.content-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: rgba(243, 146, 0, 0.1);
}

.video-section {
    max-width: 1000px;
    margin: 3rem auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-article {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

.faq-article .faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.faq-article .faq-item h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-article .faq-item p {
    margin-bottom: 1rem;
}

.content-cta {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    text-align: center;
    color: white;
}

.content-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 1.8rem;
    }

    .article-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }

    .content-section p,
    .content-section li {
        font-size: 1rem;
    }

    .content-cta {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   TEAM PHOTOGRAPHY PAGE STYLES
   ======================================== */

.team-photo-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.team-photo-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.team-photo-hero .hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.team-photo-hero .hero-message {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.why-choose-us {
    padding: var(--section-padding);
    background: white;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.7;
}

.process-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.process-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    position: relative;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.step p {
    color: var(--text-color);
    line-height: 1.7;
}

.options-section {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.options-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.8;
}

.additional-services {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-item h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

.teams-list-section {
    padding: var(--section-padding);
    background: white;
}

.teams-list-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-item {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: background 0.3s ease, color 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item:hover {
    background: var(--secondary-color);
    color: white;
}

.guarantee-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.guarantee-section p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.final-cta-section {
    padding: var(--section-padding);
    background: var(--bg-light);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.final-cta-section .cta-buttons {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .team-photo-hero h1 {
        font-size: 2rem;
    }

    .team-photo-hero .hero-tagline {
        font-size: 1.2rem;
    }

    .team-photo-hero .hero-message {
        font-size: 1.05rem;
    }

    .why-choose-us h2,
    .process-section h2,
    .options-section h2,
    .teams-list-section h2,
    .guarantee-section h2,
    .final-cta-section h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .btn-large {
        width: 100%;
        max-width: 400px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

.blog-hero {
    padding: 150px 20px 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.blog-categories {
    padding: 40px 20px;
    background: white;
    border-bottom: 1px solid var(--bg-light);
    position: sticky;
    top: 70px;
    z-index: 50;
}

.category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.blog-grid-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card.hidden {
    display: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-card-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-categories {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-category {
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h2 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-content h2 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h2 a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: var(--secondary-dark);
}

.blog-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.blog-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-hero p {
        font-size: 1.1rem;
    }

    .blog-categories {
        position: static;
    }

    .category-filters {
        gap: 0.75rem;
    }

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

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

    .blog-cta h2 {
        font-size: 1.8rem;
    }

    .blog-cta p {
        font-size: 1.1rem;
    }
}

/* Blog Post Specific Styles */
.blog-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.article-meta {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-image {
    margin: 0 0 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.content-image {
    margin: 2.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 0.75rem;
    font-style: italic;
}

.related-posts {
    max-width: 900px;
    margin: 4rem auto;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

.related-posts h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-post-card {
    text-decoration: none;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.related-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 1.5rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .lead-paragraph {
        font-size: 1.1rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* ========================================
   SERVICE PAGES STYLING
   ======================================== */

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a6f 100%);
    color: var(--text-white);
    padding: 8rem 0 5rem;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.service-hero .hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Location-specific Hero Images */
.location-hero-meridian {
    background-image: url('../images/heroes/meridian-sports-photography-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.location-hero-meridian .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.location-hero-meridian .container {
    position: relative;
    z-index: 2;
}

.location-hero-boise {
    background-image: url('../images/heroes/boise-sports-photography-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.location-hero-boise .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.location-hero-boise .container {
    position: relative;
    z-index: 2;
}

.location-hero-eagle {
    background-image: url('../images/heroes/eagle-sports-photography-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.location-hero-eagle .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.location-hero-eagle .container {
    position: relative;
    z-index: 2;
}

.location-hero-nampa {
    background-image: url('../images/heroes/nampa-sports-photography-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.location-hero-nampa .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.location-hero-nampa .container {
    position: relative;
    z-index: 2;
}

.location-hero-kuna {
    background-image: url('../images/heroes/kuna-sports-photography-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.location-hero-kuna .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.location-hero-kuna .container {
    position: relative;
    z-index: 2;
}

.location-hero-treasure-valley {
    background-image: url('../images/heroes/treasure-valley-sports-photography-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.location-hero-treasure-valley .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.location-hero-treasure-valley .container {
    position: relative;
    z-index: 2;
}

/* Team Photography Service Hero Image */
.service-hero-team {
    background-image: url('../images/heroes/team-photography-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero-team .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.service-hero-team .container {
    position: relative;
    z-index: 2;
}

/* Individual Sports Portraits Service Hero Image */
.service-hero-individual {
    background-image: url('../images/heroes/individual-sports-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero-individual .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.service-hero-individual .container {
    position: relative;
    z-index: 2;
}

/* Blog Hero - Sports Banner Photography */
.blog-hero-banners {
    background-image: url('../images/heroes/sports-banner-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.blog-hero-banners .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.blog-hero-banners .container {
    position: relative;
    z-index: 2;
}

.blog-hero-banners .hero-subtitle {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

/* Seniors & Yearbook Service Hero Image */
.service-hero-seniors {
    background-image: url('../images/heroes/seniors-yearbook-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero-seniors .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.service-hero-seniors .container {
    position: relative;
    z-index: 2;
}

/* Teams & Leagues Service Hero Image */
.service-hero-teams-leagues {
    background-image: url('../images/heroes/teams-leagues-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero-teams-leagues .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.service-hero-teams-leagues .container {
    position: relative;
    z-index: 2;
}

/* Dance Studios Service Hero Image */
.service-hero-dance {
    background-image: url('../images/heroes/dance-studios-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero-dance .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.service-hero-dance .container {
    position: relative;
    z-index: 2;
}

/* Cheer & Gymnastics Service Hero Image */
.service-hero-cheer {
    background-image: url('../images/heroes/cheer-gymnastics-hero.webp');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-hero-cheer .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 44, 85, 0.85) 0%, rgba(13, 58, 111, 0.75) 100%);
    z-index: 1;
}

.service-hero-cheer .container {
    position: relative;
    z-index: 2;
}

/* Team Portfolio Gallery */
.team-portfolio-gallery {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.team-portfolio-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-portfolio-gallery .section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.team-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--bg-white);
}

.team-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-white);
}

@media (max-width: 768px) {
    .team-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-gallery-item img {
        height: 240px;
    }
}

/* Service Overview */
.service-overview {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.overview-content .lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.overview-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Portfolio */
.service-portfolio {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

/* Service Process */
.service-process {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a6f 100%);
    color: var(--text-white);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero .hero-tagline {
        font-size: 1.125rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .overview-content .lead-paragraph {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-portfolio .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-process h2,
    .service-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ========================================
   COLLEGE PLANNING GUIDE STYLING
   ======================================== */

.article-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.article-intro .lead-paragraph {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.article-toc {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.article-toc h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-toc ol {
    margin-left: 1.5rem;
    line-height: 2;
}

.article-toc ol li {
    margin-bottom: 0.5rem;
}

.article-toc a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-toc a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.guide-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.guide-section:last-of-type {
    border-bottom: none;
}

.guide-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
}

.guide-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.guide-section ul,
.guide-section ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.guide-section li {
    margin-bottom: 1rem;
}

.guide-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.guide-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ========================================
   LOCATION-SPECIFIC PAGE STYLES
======================================== */

/* Location Schools Grid */
.location-schools {
    padding: 5rem 0;
    background: var(--bg-light);
}

.location-schools h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.school-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.school-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.school-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Location Knowledge Section */
.location-knowledge {
    padding: 5rem 0;
}

.location-knowledge h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.knowledge-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.knowledge-item h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.knowledge-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Coverage Area Grid */
.location-coverage {
    padding: 5rem 0;
    background: var(--bg-light);
}

.location-coverage h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.coverage-area {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.coverage-area:hover {
    transform: translateY(-5px);
}

.coverage-area h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.coverage-area p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Location Services Section */
.location-services {
    padding: 5rem 0;
}

.location-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.service-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.service-highlight h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-highlight p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Sports Coverage Section */
.location-sports {
    padding: 5rem 0;
    background: var(--bg-light);
}

.location-sports h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.sports-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sport-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sport-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sport-category ul {
    list-style: none;
    padding: 0;
}

.sport-category li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.sport-category li:last-child {
    border-bottom: none;
}

/* Senior Portrait Section */
.location-seniors {
    padding: 5rem 0;
}

.location-seniors h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.senior-feature {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.senior-feature h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.senior-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Styles for Location Pages */
@media (max-width: 768px) {
    .location-schools h2,
    .location-knowledge h2,
    .location-coverage h2,
    .location-services h2,
    .location-sports h2,
    .location-seniors h2 {
        font-size: 2rem;
    }

    .schools-grid,
    .knowledge-content,
    .coverage-grid,
    .services-content,
    .sports-list,
    .senior-features {
        grid-template-columns: 1fr;
    }

    .school-card,
    .knowledge-item,
    .coverage-area,
    .service-highlight,
    .sport-category,
    .senior-feature {
        padding: 1.5rem;
    }
}

.bonus-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.bonus-section h2 {
    color: var(--primary-color);
}

.article-closing {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.article-closing h2 {
    font-size: 2rem;
}

/* ========================================
   TRAINING FACILITIES GUIDE STYLES
======================================== */

/* Guide Page Specific */
.guide-page .guide-highlights {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.guide-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guide-highlights ul {
    list-style: none;
    padding-left: 0;
}

.guide-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.guide-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.update-date {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Facility Profiles */
.facility-profile {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.facility-profile h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.facility-profile h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.facility-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.facility-meta span {
    color: var(--text-secondary);
}

.facility-quote {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.facility-quote em {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.facility-contact {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.facility-contact ul {
    list-style: none;
    padding-left: 0;
}

.facility-contact li {
    padding: 0.25rem 0;
}

.facility-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.facility-contact a:hover {
    text-decoration: underline;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Choosing Guide */
.choosing-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.factor-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.factor-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Questions Section */
.questions-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.question-category {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.question-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.question-category ol {
    padding-left: 1.5rem;
}

.question-category li {
    padding: 0.5rem 0;
}

/* Age Guidelines */
.age-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.age-group {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
}

.age-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Checklists */
.checklist,
.red-flags {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.checklist li,
.red-flags li {
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 6px;
}

.checklist li {
    background: #f0f9ff;
    border-left: 4px solid #0ea5e9;
}

.red-flags li {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

/* Photography Section */
.photography-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.photo-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.photo-reason {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.photo-reason h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.photo-services {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.photo-services li {
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 6px;
}

.photo-cta {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.photo-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.photo-cta .cta-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* Next Steps */
.next-steps-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.next-steps-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.next-steps-section ol {
    max-width: 800px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.next-steps-section li {
    padding: 0.75rem 0;
    line-height: 1.7;
}

.article-cta {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.article-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Guide Disclaimer */
.guide-disclaimer {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-top: 3px solid var(--border-color);
}

.guide-disclaimer p {
    margin-bottom: 0.75rem;
}

/* Responsive - Training Guide */
@media (max-width: 768px) {
    .facility-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .benefits-grid,
    .choosing-guide,
    .questions-section,
    .age-guidelines,
    .photo-reasons {
        grid-template-columns: 1fr;
    }

    .facility-profile {
        padding: 1.5rem;
    }

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

    .photo-cta .cta-buttons {
        flex-direction: column;
    }

    .photo-cta .cta-buttons .btn {
        width: 100%;
    }
}

.article-closing p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.closing-message {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .article-intro .lead-paragraph {
        font-size: 1.25rem;
    }

    .guide-section h2 {
        font-size: 1.5rem;
    }

    .guide-section h3 {
        font-size: 1.25rem;
    }

    .guide-section p {
        font-size: 1rem;
    }

    .article-toc {
        padding: 1.5rem;
    }

    .bonus-section {
        padding: 2rem;
    }

    .article-closing {
        padding: 2rem;
    }
}

/* ========================================
   LINKS PAGE (INSTAGRAM LINK IN BIO STYLE)
   ======================================== */

.links-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.links-container {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
}

/* Profile Section */
.links-profile {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.links-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    background: white;
    padding: 10px;
}

.links-profile h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.links-profile p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Links List */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.links-section-title {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.link-item {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform var(--transition-medium);
}

.link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.link-item:hover::before {
    transform: scaleY(1);
}

.link-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.link-item span {
    flex: 1;
    font-size: 1rem;
}

/* Primary CTA Link */
.link-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.5rem 1.5rem;
}

.link-primary i {
    color: var(--primary-dark);
}

.link-primary::before {
    background: var(--primary-dark);
}

.link-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Social Links */
.links-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.links-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.links-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer */
.links-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .links-page {
        padding: 1.5rem 1rem;
    }

    .links-logo {
        width: 100px;
        height: 100px;
    }

    .links-profile h1 {
        font-size: 1.5rem;
    }

    .links-profile p {
        font-size: 0.9rem;
    }

    .link-item {
        padding: 1rem 1.25rem;
    }

    .link-primary {
        padding: 1.25rem 1.25rem;
    }
}

/* ========================================
   LEGAL PAGES (PRIVACY POLICY & TERMS)
   ======================================== */

.legal-document {
    padding: 60px 20px;
    background: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legal-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-intro {
    background: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    border-radius: 4px;
}

.legal-intro p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.legal-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-light);
}

.contact-info-legal {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
}

.contact-info-legal p:last-child {
    margin-bottom: 0;
}

.legal-footer-note {
    background: #fffbea;
    border: 1px solid #f4e5a1;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.legal-footer-note p {
    margin-bottom: 0;
    color: #6b5a00;
}

.legal-navigation {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
}

.legal-navigation .btn {
    padding: 16px 40px;
    font-size: 1.05rem;
    min-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.legal-navigation .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.legal-navigation .btn-primary {
    color: var(--text-white);
}

.legal-navigation .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Strong emphasis in legal text */
.legal-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.15rem;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }

    .legal-navigation {
        flex-direction: column;
    }

    .legal-navigation .btn {
        width: 100%;
    }
}

/* ========================================
   TEAM LANDING PAGES
   ======================================== */

.team-landing {
    min-height: 100vh;
    background: var(--bg-light);
    padding: 40px 20px;
}

.team-landing-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Logo Section */
.team-logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.team-page-logo {
    max-width: 180px;
    height: auto;
}

/* Hero Section */
.team-hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.team-hero-section h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.team-name-display {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

/* Picture Day Card */
.picture-day-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--secondary-color);
}

.card-header-important {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card-header-important i {
    font-size: 1.5rem;
}

.card-header-important h2 {
    margin: 0;
    font-size: 1.5rem;
}

.picture-day-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-row i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    width: 24px;
    flex-shrink: 0;
}

.detail-row div {
    flex: 1;
}

.detail-row strong {
    display: inline-block;
    min-width: 80px;
    color: var(--primary-dark);
}

.detail-row span {
    color: var(--text-primary);
    font-size: 1.05rem;
}

/* Registration Card */
.registration-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.registration-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.registration-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.registration-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.registration-option {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.option-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.option-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.option-content p {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.option-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.option-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.registration-divider {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.registration-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Expectations Section */
.expectations-section,
.packages-section,
.faq-section,
.team-contact-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.expectations-section h2,
.packages-section h2,
.faq-section h2,
.team-contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.section-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.expectation-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expectation-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.expectation-item ul {
    list-style: none;
    text-align: left;
}

.expectation-item ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: var(--text-primary);
}

.expectation-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Package Features */
.package-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-box h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.guarantee-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.guarantee-badge i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.guarantee-badge strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.guarantee-badge p {
    margin: 0;
    opacity: 0.95;
}

/* FAQ Section */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-question {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question h3 {
    background: var(--bg-light);
    padding: 1.25rem;
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question h3:hover {
    background: #f3f4f6;
}

.faq-answer {
    padding: 1.25rem;
    background: white;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-primary);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Contact Section */
.team-contact-section {
    text-align: center;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.25rem;
}

.response-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* About Section */
.about-brief {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.about-brief h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-brief p {
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.link-home {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-home:hover {
    text-decoration: underline;
}

/* Footer */
.team-page-footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links-team {
    margin-top: 0.5rem;
}

.footer-links-team a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links-team a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-links-team span {
    margin: 0 0.5rem;
    color: var(--text-light);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-hero-section h1 {
        font-size: 1.5rem;
    }

    .team-name-display {
        font-size: 2rem;
    }

    .picture-day-card,
    .registration-card,
    .expectations-section,
    .packages-section,
    .faq-section,
    .team-contact-section,
    .about-brief {
        padding: 1.5rem;
    }

    .expectation-grid,
    .package-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-method {
        width: 100%;
        justify-content: center;
    }
}

/* Sample Gallery */
.sample-gallery {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.sample-gallery h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Enhanced Team Page Footer */
.footer-content-team {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-branding {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-team {
    max-width: 150px;
    height: auto;
}

.footer-branding p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-columns-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col-team h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col-team ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-team ul li {
    margin-bottom: 0.5rem;
}

.footer-col-team ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col-team ul li a:hover {
    color: var(--primary-color);
}

.footer-col-team ul li:not(:has(a)) {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
}

.footer-bottom-team p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-links-team {
    display: flex;
    gap: 1rem;
}

.social-links-team a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.social-links-team a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Adjustments for Gallery and Footer */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content-team {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-columns-team {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom-team {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-team {
        order: 2;
    }

    .social-links-team {
        order: 3;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Footer Styling */
.footer-legal {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content-legal {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-branding-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-legal {
    max-width: 150px;
    height: auto;
}

.footer-branding-legal p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-columns-legal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col-legal h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-col-legal ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col-legal ul li a:hover {
    color: var(--secondary-color);
}

.footer-col-legal ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
}

.footer-bottom-legal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links-legal a:hover {
    color: var(--secondary-color);
}

.footer-links-legal span {
    color: rgba(255, 255, 255, 0.4);
}

.social-links-legal {
    display: flex;
    gap: 1rem;
}

.social-links-legal a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
}

.social-links-legal a:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Adjustments for Legal Footer */
@media (max-width: 768px) {
    .footer-content-legal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-columns-legal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-legal {
        order: 2;
    }

    .social-links-legal {
        order: 3;
    }
}
