/* Enhanced CSS for Professional Look */

/* CSS Custom Properties for Consistent Theming */
:root {
    --primary-color: #966c09;
    /* Improved gold for better accessibility contrast */
    --primary-dark: #7a5807;
    --primary-light: #d4a574;
    --text-primary: #2c2c2c;
    --text-secondary: #555;
    --text-muted: #666;
    --background: #fafafa;
    --surface: #ffffff;
    --surface-alt: #f8f6f3;
    --border: #e8e4dd;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --focus-outline: 2px solid var(--primary-color);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: var(--focus-outline);
    outline-offset: 2px;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--background);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Instagram Reels Showcase */
.reels-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.reels-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 1rem 3rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    cursor: grab;
    scroll-behavior: smooth;
    width: 100%;
}

/* Navigation Arrows */
.reel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--primary-color);
}

.reel-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(193, 154, 93, 0.3);
}

.prev-btn {
    left: -1rem;
}

.next-btn {
    right: -1rem;
}

@media (max-width: 1200px) {
    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }
}

.reels-wrapper::-webkit-scrollbar {
    height: 4px;
}

.reels-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.reels-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 20px;
}

.reel-card {
    flex: 0 0 calc(300px * (9/16) * 1.5);
    /* Vertical aspect ratio */
    min-width: 320px;
    /* Increased slightly */
    height: 650px;
    /* Increased significantly for "full view" */
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    scroll-snap-align: center;
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 45px rgba(193, 154, 93, 0.25);
}

.reel-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.reel-video iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reel-video iframe.loaded {
    opacity: 1;
}

.reel-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1a 0%, #333 100%);
    z-index: 1;
}

.reel-play-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(193, 154, 93, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.reel-card:hover .reel-play-icon {
    transform: scale(1.2);
    background: rgba(193, 154, 93, 0.4);
    color: white;
}

.reel-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 2;
    transition: var(--transition);
    pointer-events: none;
    opacity: 0;
}

.reel-card:hover .reel-badge {
    opacity: 1;
    bottom: 2rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface-alt) 100%);
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 108, 9, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(150, 108, 9, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content {
    padding: 2rem;
}

.subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.form-section {
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--surface);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 154, 93, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.divider-text {
    position: relative;
    background: var(--surface);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--surface);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.success-message {
    background: linear-gradient(135deg, #d4f4dd 0%, #e8f5e8 100%);
    color: #2d5016;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    text-align: center;
    display: none;
    border-left: 4px solid #4caf50;
}

.success-message.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.demo-link {
    text-align: center;
    margin-top: 1.5rem;
}

.demo-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

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

    h1 {
        font-size: 2.5rem;
    }

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

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

    .form-section {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }
}

/* Enhanced Navigation with CSS Variables */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-logo a:hover {
    opacity: 0.9;
}

/* Logo image styling */
.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(193, 154, 93, 0.25);
    transition: var(--transition);
    /* This clips the background to just show the circular medallion */
}

.nav-logo a:hover .logo-image {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(193, 154, 93, 0.35);
}

/* Text-only logo (fallback) */
.nav-logo a .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav logo underline effect (for text-only version) */
.nav-logo a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Hide underline when using image logo */
.nav-logo a.has-logo::after {
    display: none;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 100%;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #c19a5d;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        list-style: none;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    .top-nav {
        padding: 0.75rem 0;
    }

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

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

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

    .article-container {
        max-width: 100%;
        margin: 100px 1rem 40px 1rem;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .article-container h1 {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

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

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

/* New styles for article layout */
.article-container {
    max-width: 900px;
    margin: 120px auto 40px auto;
    /* Increased top margin to account for fixed nav */
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-container h1 {
    color: #c19a5d;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.article-subtitle {
    color: #666;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.article-section {
    margin: 3rem 0;
    padding: 0;
    background: #fff;
    animation: fadeInUp 0.6s ease-in-out;
}

.article-section:nth-child(even) {
    background: #faf8f5;
    padding: 1.5rem;
    border-radius: 10px;
}

.article-section h2 {
    color: #c19a5d;
    font-size: 2rem;
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8dcc8;
}

.article-section h3 {
    color: #333;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-section p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: left;
    max-width: 700px;
}

.article-section ul {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-section li {
    margin-bottom: 0.8rem;
}

.service-card {
    background: #f9f7f2;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c19a5d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h4 {
    color: #c19a5d;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-card h4::before {
    content: "• ";
    color: #c19a5d;
}

.service-card p {
    color: #666;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-section p {
    color: #333;
    margin-bottom: 1rem;
}

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

.btn-cta {
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #d4a574 0%, #c19a5d 100%);
    color: white;
    border: none;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 154, 93, 0.35);
}

.btn-secondary-cta {
    background: transparent;
    border: 2px solid #c19a5d;
    color: #c19a5d;
}

.btn-secondary-cta:hover {
    background: #c19a5d;
    color: white;
    box-shadow: 0 8px 20px rgba(193, 154, 93, 0.35);
}

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

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

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

.back-link a {
    color: #c19a5d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.back-link a:hover {
    text-decoration: underline;
    color: #a87f4a;
}

.faq-item {
    margin-bottom: 1rem;
    cursor: pointer;
}

.faq-question {
    font-weight: 600;
    color: #c19a5d;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8dcc8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0.5rem 0 1rem 0;
    display: none;
}

.faq-answer.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(193, 154, 93, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(193, 154, 93, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(193, 154, 93, 0);
    }
}

/* Enhanced hover effects */
.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--surface-alt);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Focus visible for accessibility */
.btn:focus-visible,
.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* Enhanced focus visible for navigation and interactive elements */
.nav-menu li a:focus-visible,
.nav-logo a:focus-visible,
.btn-cta:focus-visible,
.btn-primary-cta:focus-visible,
.btn-secondary-cta:focus-visible,
.faq-question:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Ensure nav toggle is keyboard accessible */
.nav-toggle:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* Enhanced loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced selection */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--surface-alt) 0%, var(--surface) 100%);
    margin: 3rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

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

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

.testimonial-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* ==========================================
   NEWSLETTER / EMAIL CAPTURE
   ========================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: var(--radius-lg);
}

.newsletter-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input[type="email"]:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--surface-alt);
    transform: translateY(-2px);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ==========================================
   PRICING BADGES
   ========================================== */
.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.price-badge.popular {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.service-card .price-badge {
    position: absolute;
    top: -10px;
    right: 20px;
}

.service-card {
    position: relative;
}

/* ==========================================
   BREADCRUMB NAVIGATION
   ========================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

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

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

.breadcrumb-separator {
    color: var(--border);
}

.breadcrumb-current {
    color: var(--text-secondary);
}

/* ==========================================
   AUTHOR BIO
   ========================================== */
.author-bio {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface-alt);
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--primary-light);
}

.author-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.author-info .author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.author-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.author-social a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.author-social a:hover {
    color: var(--primary-dark);
}

@media (max-width: 600px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ==========================================
   RELATED POSTS
   ========================================== */
.related-posts {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--border);
}

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

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

.related-post-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-post-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-post-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================
   INSTAGRAM GALLERY (Optimized Fallback)
   ========================================== */
.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.instagram-gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--surface-alt);
}

.instagram-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.instagram-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-gallery-item:hover::after {
    opacity: 1;
}

/* ==========================================
   DARK MODE SUPPORT
   ========================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #1a1a1a;
        --surface: #2d2d2d;
        --surface-alt: #252525;
        --text-primary: #f0f0f0;
        --text-secondary: #b0b0b0;
        --text-muted: #888;
        --border: #404040;
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    }

    body {
        background: var(--background);
        color: var(--text-primary);
    }

    .top-nav {
        background: var(--surface);
        border-bottom-color: var(--border);
    }

    .nav-menu {
        background: var(--surface);
    }

    .article-container,
    .blog-article,
    .testimonial-card,
    .service-card,
    .related-post-card {
        background: var(--surface);
    }

    .form-group input,
    .form-group textarea {
        background: var(--surface-alt);
        color: var(--text-primary);
        border-color: var(--border);
    }

    .faq-question {
        color: var(--primary-light);
        border-bottom-color: var(--border);
    }

    .article-section:nth-child(even) {
        background: var(--surface-alt);
    }

    .welcome-section,
    .form-section {
        background: var(--surface);
    }

    h1,
    h2,
    h3,
    h4 {
        background: none;
        -webkit-text-fill-color: var(--primary-light);
        color: var(--primary-light);
    }

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

    .btn-secondary-cta {
        color: var(--primary-light);
        border-color: var(--primary-light);
    }

    .btn-secondary-cta:hover {
        background: var(--primary-light);
        color: var(--background);
    }
}

/* Dark mode toggle button */
.dark-mode-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 1000;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

/* Manual dark mode class */
body.dark-mode {
    --background: #1a1a1a;
    --surface: #2d2d2d;
    --surface-alt: #252525;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --text-muted: #888;
    --border: #404040;
}

body.dark-mode .top-nav,
body.dark-mode .nav-menu,
body.dark-mode .article-container,
body.dark-mode .blog-article,
body.dark-mode .testimonial-card,
body.dark-mode .service-card {
    background: var(--surface);
}

/* ==========================================
   ANALYTICS PLACEHOLDER STYLES
   ========================================== */
/* Google Analytics and other tracking scripts are loaded in the head */

/* ==========================================
   SEARCH FUNCTIONALITY
   ========================================== */
.search-container {
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.search-results {
    margin-top: 1rem;
}

.no-results {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
}

/* ==========================================
   SITE FOOTER
   ========================================== */
.site-footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

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

.footer-brand h3 {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

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

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-social-links a[aria-label="Instagram"]:hover {
    background: #E1306C;
}

.footer-social-links a[aria-label="Facebook"]:hover {
    background: #1877F2;
}

.footer-social-links a[aria-label="X"]:hover {
    background: #000;
}


.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* ==========================================
   NOTIFICATION SYSTEM
   ========================================== */
.site-notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.site-notification.visible {
    transform: translateX(0);
}

.site-notification.fade-out {
    transform: translateX(120%);
}

.site-notification--success {
    border-left: 4px solid #4CAF50;
}

.site-notification--error {
    border-left: 4px solid #f44336;
}

.site-notification--info {
    border-left: 4px solid var(--primary-color);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    color: var(--text-primary);
}

/* ==========================================
   FORM LOADING STATES
   ========================================== */
.form-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-muted);
    gap: 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.form-error {
    text-align: center;
    padding: 2rem;
    background: var(--surface-alt);
    border-radius: var(--radius-md);
}

.form-error p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* iframe loading state */
iframe[src*="docs.google.com/forms"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ==========================================
   TOUCH TARGET IMPROVEMENTS (Mobile Accessibility)
   ========================================== */
@media (max-width: 768px) {

    .btn,
    .btn-cta,
    button,
    .nav-menu a,
    .footer-nav a,
    .footer-social-links a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    /* Instagram feed mobile scroll fix */
    .instagram-feed {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .instagram-post {
        scroll-snap-align: start;
        flex: 0 0 85vw;
        max-width: 300px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {

    .top-nav,
    .dark-mode-toggle,
    .newsletter-section,
    .skip-link,
    .site-footer,
    .instagram-feed {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .article-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
    }

    h1,
    h2,
    h3,
    h4 {
        color: black !important;
        background: none !important;
        -webkit-text-fill-color: black !important;
    }

    a {
        color: black !important;
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    .btn-cta,
    .btn-primary-cta,
    .btn-secondary-cta {
        border: 1px solid black;
        background: none;
        color: black !important;
    }
}

/* Search functionality styles */
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.search-modal.active {
    display: flex;
}

.search-container {
    background: var(--surface);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
    position: relative;
    border: 1px solid var(--border);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.close-search {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(193, 154, 93, 0.1);
}

.search-icon-input {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
    border-radius: var(--radius-sm);
}

.search-result-item:hover {
    background-color: var(--surface-alt);
}

.search-result-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    display: block;
}

.search-result-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    background: var(--surface-alt);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.search-result-summary {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ==========================================
   CONTENT CARD STYLE (Matches Booking Form)
   ========================================== */
.content-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .content-card {
        padding: 1.5rem;
    }
}

/* ==========================================
   HIGHLIGHT SECTION STYLE
   (Forces the "even" section styling for card containers)
   ========================================== */
.highlight-section {
    background: #faf8f5 !important;
    padding: 1.5rem !important;
    border-radius: 10px;
}
