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

:root {
    /* Logo-aligned palette */
    --primary-color: #6B5940;     /* deep kennel brown */
    --primary-dark: #4F3F2F;      /* darker brown */
    --primary-light: #A89176;     /* light brown */
    --secondary-color: #3F6B4F;   /* evergreen */
    --accent-color: #C9A76A;      /* soft gold */
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --bg-light: #F7F5F2;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --navbar-height: 72px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #A89176;
    --primary-dark: #6B5940;
    --primary-light: #D3BEA6;
    --secondary-color: #4E8A65;
    --accent-color: #D7B77F;
    --text-dark: #E8E8E8;
    --text-light: #BBBBBB;
    --bg-light: #1b1b1b;
    --bg-white: #232323;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    background: var(--primary-color);
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--navbar-height);
    transform: scale(0.875);
    transform-origin: top left;
    width: 114.29%; /* Compensate for 12.5% reduction */
    margin: 0;
    background: transparent;
}

/* Construction Page Styles */
body.construction-page {
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: none;
    width: auto;
}

body.construction-page html {
    height: 100vh;
    overflow: hidden;
}

.construction-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: 99999;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.construction-content {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 90%;
    max-width: min(500px, 90vw);
    animation: fadeInUp 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    flex-shrink: 0;
}

[data-theme="dark"] .construction-content {
    background: rgba(35, 35, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.construction-logo {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 0.6s ease-out;
}

.construction-logo-image {
    height: clamp(60px, 10vw, 80px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.construction-logo-image:hover {
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.construction-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.construction-logo-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    text-align: center;
}

.construction-tagline {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    color: var(--text-light);
    font-weight: 300;
}

.construction-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    margin: 0 auto clamp(0.75rem, 2.5vw, 1rem);
    color: var(--primary-color);
    animation: pulse 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 50%;
    position: relative;
}

.construction-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.construction-icon svg {
    width: clamp(22px, 5vw, 30px);
    height: clamp(22px, 5vw, 30px);
    position: relative;
    z-index: 1;
}

.construction-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.construction-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    color: var(--text-light);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.construction-form {
    margin-top: 0.5rem;
    padding-top: clamp(1rem, 2.5vw, 1.5rem);
    border-top: 2px solid rgba(139, 115, 85, 0.15);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.construction-access {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: clamp(0.75rem, 3vw, 1.25rem);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    letter-spacing: 0.2px;
}

.construction-input {
    width: 100%;
    padding: clamp(12px, 3vw, 14px) clamp(16px, 4vw, 20px);
    border: 2px solid #e8e5de;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    margin-bottom: clamp(0.75rem, 3vw, 1.25rem);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.construction-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.construction-input::placeholder {
    color: #aaa;
    font-weight: 400;
}

[data-theme="dark"] .construction-input {
    background: #2a2a2a;
    color: var(--text-dark);
    border-color: #444;
}

[data-theme="dark"] .construction-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(168, 145, 118, 0.2), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.construction-error {
    color: #dc3545;
    font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    margin-top: 0.75rem;
    text-align: center;
    font-weight: 500;
    background: rgba(220, 53, 69, 0.1);
    padding: clamp(0.4rem, 2vw, 0.5rem) clamp(0.75rem, 3vw, 1rem);
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.construction-overlay .btn-primary {
    width: 100%;
    padding: clamp(12px, 3vw, 14px) clamp(20px, 5vw, 30px);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.construction-overlay .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

.construction-overlay .btn-primary:active {
    transform: translateY(0);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .construction-content {
        padding: 1.5rem;
        width: 90%;
    }
    
    .construction-logo-image {
        height: 60px;
    }
    
    .construction-logo-text h2 {
        font-size: 1.5rem;
    }
    
    .construction-tagline {
        font-size: 0.85rem;
    }
    
    .construction-title {
        font-size: 1.75rem;
    }
    
    .construction-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .construction-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .construction-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .construction-form {
        padding-top: 1rem;
        margin-top: 0.5rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

[data-theme="dark"] .navbar {
    background: rgba(45, 45, 45, 0.95);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between; /* spread to edges */
    align-items: center;
    padding: 1rem 20px;
    gap: 2rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 450px;
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.logo .tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
    margin-left: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Push dark mode toggle to far right on desktop */
.theme-toggle {
    margin-left: auto;
}

/* Provide small separation between logo and menu */
.nav-menu { margin-left: 1rem; }

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

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

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    padding: 0;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

.theme-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.theme-icon.moon {
    display: none;
}

[data-theme="dark"] .theme-icon.sun {
    display: none;
}

[data-theme="dark"] .theme-icon.moon {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 50 L100 0 L0 0 Z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.hero-location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Universal confirm pulse animation for all buttons */
@keyframes confirmPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.6);
    }
    100% {
        transform: scale(1);
    }
}

/* Apply confirm animation to all buttons with btn-confirm class */
button.btn-confirm,
a.btn-confirm,
.btn.btn-confirm,
.btn-primary.btn-confirm,
.btn-secondary.btn-confirm,
input[type="button"].btn-confirm,
input[type="submit"].btn-confirm {
    background: #28a745 !important;
    color: white !important;
    animation: confirmPulse 0.5s ease-in-out;
}

button.btn-confirm:hover,
a.btn-confirm:hover,
.btn.btn-confirm:hover,
.btn-primary.btn-confirm:hover,
.btn-secondary.btn-confirm:hover,
input[type="button"].btn-confirm:hover,
input[type="submit"].btn-confirm:hover {
    background: #218838 !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
    opacity: 0.7;
}

/* Dark Mode Background Colors */
[data-theme="dark"] body {
    background: #1a1a1a;
    color: var(--text-dark);
}

[data-theme="dark"] .section {
    background: var(--bg-white);
}

[data-theme="dark"] .about,
[data-theme="dark"] .contact,
[data-theme="dark"] .gallery {
    background: var(--bg-white);
}

[data-theme="dark"] .services {
    background: var(--bg-light);
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .submission-card,
[data-theme="dark"] .client-card {
    background: #333;
    border-color: #444;
}

[data-theme="dark"] .contact-form-wrapper {
    background: var(--bg-light);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background: #333;
    color: var(--text-dark);
    border-color: #555;
}

[data-theme="dark"] .footer {
    background: #1a1a1a;
}

[data-theme="dark"] .hero::before {
    opacity: 0.5;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

/* About Section */
.about {
    background: var(--bg-white);
}

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

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

.about-text .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-light);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-placeholder {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

/* Gallery Section */
.gallery {
    background: var(--bg-white);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%) brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

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

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Notice Section */
.notice {
    background: linear-gradient(135deg, var(--secondary-color), #3A6B47);
    color: white;
}

.notice-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon svg {
    width: 30px;
    height: 30px;
}

.notice-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.notice-content p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

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

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

.contact-item p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-bottom: 0;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

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

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(10px) rotate(45deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Remove desktop scaling on small screens to avoid horizontal scroll */
    body {
        transform: none !important;
        width: auto !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0.5rem 20px;
    }

    .logo-image {
        height: 40px;
        max-width: 280px;
    }

    /* Enforce ordering and right alignment on mobile */
    .nav-container { gap: 0.75rem; }
    .mobile-menu-toggle { order: 1; }
    .nav-menu { order: 2; }
    .theme-toggle { order: 3; margin-left: auto; margin-right: 0.5rem; flex-shrink: 0; }


    /* Tighter hero on mobile */
    .hero {
        height: 80vh;
        min-height: 480px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .notice-box {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .service-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* Hours: tighter typography and spacing */
    .section-subtitle {
        font-size: 1rem;
    }
    .hours-section {
        padding: 0.75rem;
        border-radius: 10px;
    }
    .hours-section h5 {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
        margin-bottom: 0.5rem;
    }
    .hours-points li {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 0.2rem 0;
    }
    .hours-warning {
        padding: 0.5rem;
        font-size: 0.95rem;
    }
    .holiday-list li {
        padding: 0.4rem 0;
    }
    .holiday-note,
    .hours-note {
        font-size: 0.8rem;
    }
}

/* Boarding Agreement */
.boarding-agreement {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.boarding-agreement h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.agreement-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.agreement-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.agreement-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.agreement-note {
    background: rgba(139, 115, 85, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Grooming Section */
.grooming {
    background: var(--bg-light);
}

.grooming-content {
    max-width: 800px;
    margin: 0 auto;
}

.grooming-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.grooming-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

.grooming-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.note-box {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.note-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.note-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.feature-item:hover .feature-icon {
    background: rgba(139, 115, 85, 0.2);
    transform: scale(1.1);
}

.grooming-note {
    background: rgba(74, 124, 89, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

/* Dark mode for new sections */
[data-theme="dark"] .boarding-agreement {
    background: #333;
    border-left-color: var(--primary-color);
}

[data-theme="dark"] .agreement-content p,
[data-theme="dark"] .agreement-list li {
    color: var(--text-dark);
}

[data-theme="dark"] .feature-item {
    background: #333;
}

[data-theme="dark"] .feature-item h4 {
    color: var(--primary-color);
}

[data-theme="dark"] .feature-item p {
    color: var(--text-light);
}

/* Enhanced Animations and Hover Effects */
.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-notice {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: none;
}
.inline-link {
    color: #ffffff;
    text-decoration: underline;
}

.inline-link:hover {
    color: var(--accent-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Service Card Animations */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Feature Item Animations */
.feature-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-item h4 {
    transition: color 0.3s ease;
}

.feature-item:hover h4 {
    color: var(--accent-color);
}

/* Enhanced Navigation Animations */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Enhanced Logo Animation */
.logo-image {
    transition: all 0.3s ease;
}

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

/* Enhanced Section Headers */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.section-header:hover .section-title::after {
    width: 100px;
}

/* Enhanced Contact Form */
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.2);
    border-color: var(--primary-color);
}

/* Enhanced Notice Box */
.notice-box {
    transition: all 0.3s ease;
}

.notice-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Enhanced Footer */
.footer-section h3,
.footer-section h4 {
    transition: color 0.3s ease;
}

.footer-section:hover h3,
.footer-section:hover h4 {
    color: var(--accent-color);
}

.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--accent-color);
}

/* Embedded map */
.map-embed {
    margin-top: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-light);
    aspect-ratio: 16 / 9;
}

/* Social section */
.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.social-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.social-heading {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.social-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-note {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Hours Section Styling */
.hours-item {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.hours-content {
    width: 100%;
}

.hours-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.hours-section {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.hours-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hours-section h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hours-section p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.5;
}

.hours-points {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}

.hours-points li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

.hours-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.hours-warning {
    background: rgba(244, 162, 97, 0.1);
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
    font-weight: 500;
    color: var(--text-dark);
}

.holidays {
    background: rgba(74, 124, 89, 0.05);
    border-left-color: var(--secondary-color);
}

.holiday-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.holiday-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    color: var(--text-dark);
}

.holiday-list li:last-child {
    border-bottom: none;
}

.holiday-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

/* Dark mode for hours section */
[data-theme="dark"] .hours-section {
    background: #333;
    border-left-color: var(--primary-color);
}

[data-theme="dark"] .hours-section h5 {
    color: var(--primary-color);
}

[data-theme="dark"] .hours-section p {
    color: var(--text-dark);
}

[data-theme="dark"] .holidays {
    background: rgba(74, 124, 89, 0.1);
}

[data-theme="dark"] .holiday-list li {
    color: var(--text-dark);
    border-bottom-color: rgba(139, 115, 85, 0.2);
}

[data-theme="dark"] .hours-warning {
    background: rgba(244, 162, 97, 0.15);
    color: var(--text-dark);
}

/* Mobile responsiveness for hours */
@media (max-width: 768px) {
    .hours-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hours-section {
        padding: 1rem;
    }
    
    .hours-section h5 {
        font-size: 1rem;
    }
}

