/* ============================================
   PROPER DOG CORNWALL - Brand Stylesheet
   Supporting RSPCA Cornwall
   ============================================ */

/* CSS Variables - Proper Dog Brand Colours */
:root {
    /* Primary Brand Colours */
    --pdc-teal: #36C1A2;
    --pdc-navy: #2C3263;

    /* Supporting Colours (RSPCA Cornwall Palette) */
    --pdc-light-blue: #6CBFE8;
    --pdc-brown: #C9A26B;
    --pdc-grey: #B0B0B0;

    /* Darker Variants */
    --pdc-teal-dark: #2BA88C;
    --pdc-navy-dark: #1E2347;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-grey: #E9ECEF;
    --bg-light: #f8fafb;
    --warm-cream: #F5F0E8;
    --text-dark: #333333;
    --text-body: #4a4a4a;
    --text-light: #5a5a5a;
    --text-muted: #666666;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 4px 20px -5px rgba(44, 50, 99, 0.1);
    --shadow-card-hover: 0 20px 40px -10px rgba(44, 50, 99, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;

    /* Brand Font */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--pdc-teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

a:hover {
    color: var(--pdc-teal-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--pdc-navy);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--pdc-navy);
    font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
}

.btn-primary {
    background: var(--pdc-teal);
    color: var(--white) !important;
    border-color: var(--pdc-teal);
}

.btn-primary:hover {
    background: var(--pdc-teal-dark);
    border-color: var(--pdc-teal-dark);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white) !important;
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--pdc-navy) !important;
}

.btn-outline {
    background: transparent;
    color: var(--pdc-teal) !important;
    border-color: var(--pdc-teal);
}

.btn-outline:hover {
    background: var(--pdc-teal);
    color: var(--white) !important;
}

.btn-nav {
    padding: 10px 24px;
    background: var(--pdc-teal);
    color: var(--white) !important;
}

.btn-nav:hover {
    background: var(--pdc-teal-dark);
    color: var(--white) !important;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    font-size: 1.5rem;
    color: var(--white);
}

.navbar.scrolled .nav-logo {
    color: var(--pdc-navy);
}

.nav-logo .proper {
    font-weight: 700;
}

.navbar.scrolled .nav-logo .proper {
    color: var(--pdc-teal);
}

.nav-logo .dog {
    font-weight: 400;
}

.nav-tagline {    display: block;    font-size: 0.65rem;    font-weight: 500;    letter-spacing: 0.5px;    opacity: 0.85;    margin-top: 2px;}.navbar.scrolled .nav-tagline {    color: var(--pdc-navy);    opacity: 0.7;}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-menu a {
    color: var(--pdc-navy);
}

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

/* Dropdown */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--pdc-navy) !important;
    font-weight: 500;
}

.nav-dropdown a:hover {
    background: var(--bg-light);
    color: var(--pdc-teal) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--pdc-navy);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--pdc-teal) 0%, var(--pdc-teal-dark) 100%);
    padding: 120px 24px 80px;
    overflow: hidden;
}

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

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

.hero-logo {
    color: var(--white);
    margin-bottom: 30px;
}

.hero-logo .proper {
    font-size: 4rem;
    font-weight: 700;
    display: inline;
}

.hero-logo .dog {
    font-size: 4rem;
    font-weight: 400;
    display: inline;
}

.hero-logo .cornwall {
    font-size: 1rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
}

.hero-logo .tagline {
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.85;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 40px;
}

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

/* Page Hero (for subpages) */
.page-hero {
    position: relative;
    padding: clamp(8rem, 15vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
    text-align: left;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 50, 99, 0.9) 0%, rgba(44, 50, 99, 0.7) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.page-hero .badge {
    display: inline-block;
    background-color: var(--pdc-light-blue);
    color: var(--pdc-navy);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-hero .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.page-hero .hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-hero .hero-meta svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: var(--pdc-light-blue);
}

.page-hero .hero-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero .hero-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

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

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

.section-label {
    display: inline-block;
    color: var(--pdc-teal);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

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

.bg-navy {
    background: linear-gradient(135deg, var(--pdc-navy) 0%, var(--pdc-navy-dark) 100%);
    color: var(--white);
}

.bg-navy h2, .bg-navy h3, .bg-navy h4 {
    color: var(--white);
}

.bg-navy p {
    color: rgba(255, 255, 255, 0.9);
}

.bg-teal {
    background: linear-gradient(135deg, var(--pdc-teal) 0%, var(--pdc-teal-dark) 100%);
    color: var(--white);
}

.bg-teal h2, .bg-teal h3 {
    color: var(--white);
}

.bg-teal p {
    color: rgba(255, 255, 255, 0.95);
}

.bg-cream {
    background-color: var(--warm-cream);
}

.bg-cream h2, .bg-cream h3 {
    color: var(--pdc-navy);
}

/* Gold/Brown Accent from brand guidelines */
.accent-gold {
    color: var(--pdc-brown);
}

.badge-gold {
    background: var(--pdc-brown);
    color: var(--pdc-navy);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid #e8e8e8;
    transition: var(--transition);
}

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

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

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

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

.card-content {
    padding: 1.75rem;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.card-badge.puppy {
    background: #dcfce7;
    color: #166534;
}

.card-badge.advanced {
    background: #fef3c7;
    color: #92400e;
}

.card-badge.private {
    background: #f3e8ff;
    color: #7c3aed;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    color: var(--pdc-teal);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
    text-decoration: none;
}

.card-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

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

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.feature-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px -10px rgba(44, 50, 99, 0.2);
    object-fit: cover;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-list svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--pdc-teal);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-list strong {
    display: block;
}

/* Check Icon */
.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--pdc-teal);
    border-radius: 50%;
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--pdc-navy);
    padding: 1rem 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: var(--pdc-teal);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 850px;
    margin: 0 auto;
}

@media (min-width: 700px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid #e8e8e8;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--pdc-teal);
}

.pricing-card.featured {
    border-color: var(--pdc-teal);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pdc-teal);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card .price {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--pdc-navy);
    line-height: 1.2;
    margin: 0.5rem 0;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    text-align: left;
}

.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    gap: 0.6rem;
    font-size: 0.92rem;
}

.pricing-card ul li svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: var(--pdc-teal);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-container {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #e8e8e8;
}

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

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: var(--font-primary);
}

.accordion-button:hover {
    background-color: var(--bg-light);
}

.accordion-button h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--pdc-navy);
}

.accordion-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--pdc-teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
}

/* ============================================
   BOOKING
   ============================================ */
.booking-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.booking-card {
    background: linear-gradient(135deg, var(--pdc-navy) 0%, var(--pdc-navy-dark) 100%);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
}

.booking-card h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.booking-card a {
    color: var(--pdc-light-blue);
}

.booking-card a:hover {
    color: var(--white);
}

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

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    fill: var(--pdc-teal);
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--pdc-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--pdc-navy);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo .proper {
    font-size: 2rem;
    font-weight: 700;
}

.footer-logo .dog {
    font-size: 2rem;
    font-weight: 400;
}

.footer-logo .cornwall {
    font-size: 0.7rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-charity h4 {
    color: var(--pdc-teal);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

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

.footer-charity p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ============================================
   ADOPTEE BANNER
   ============================================ */
.adoptee-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
.legal-info {    font-size: 0.75rem;    color: rgba(255, 255, 255, 0.4);    margin-top: 0.75rem;    line-height: 1.5;}
    color: #065f46;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    border: 1px solid rgba(6, 95, 70, 0.2);
}

.adoptee-banner svg {
    flex-shrink: 0;
    stroke: #065f46;
}

/* ============================================
   IMPACT STATS
   ============================================ */
.impact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pdc-teal);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* ============================================
   FOOTER SOCIAL
   ============================================ */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pdc-teal);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.8);
}

.footer-social a:hover svg {
    fill: var(--white);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Image Placeholder */
.image-placeholder {
    background: var(--light-grey);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pdc-grey);
    font-weight: 500;
    border-radius: var(--radius-md);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-logo .proper,
    .hero-logo .dog {
        font-size: 3rem;
    }

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

    .split-content.reverse {
        direction: ltr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--pdc-navy);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        transition: var(--transition);
    }

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

    .nav-menu a {
        color: var(--white) !important;
        font-size: 1.1rem;
    }

    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 1rem;
    }

    .nav-dropdown a {
        padding: 0.5rem 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-logo .proper,
    .hero-logo .dog {
        font-size: 2.5rem;
    }

    .hero-logo .cornwall {
        letter-spacing: 8px;
        font-size: 0.85rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-items {
        gap: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

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

    .adoptee-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .impact-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}


/* Version Toggle Button */
.version-toggle {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 10000;
    background: linear-gradient(135deg, #36C1A2 0%, #2C3263 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(44, 50, 99, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.version-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 50, 99, 0.4);
    color: #fff !important;
}

@media (max-width: 768px) {
    .version-toggle {
        top: auto;
        bottom: 16px;
        right: 16px;
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}
