body {
    background: linear-gradient(135deg, #f9ed32 0%, #931a1d 50%, #201818 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-top: 140px;
    padding-bottom: 2rem;
}
.coming-soon-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    z-index: 2;
}

/* Wobbling background animation for coming-soon cards */
.coming-soon-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(249, 237, 50, 0.3) 0%, rgba(147, 26, 29, 0.3) 100%);
    z-index: -1;
    animation: cardWobble1 8s ease-in-out infinite;
}

.coming-soon-card::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 32px;
    background: linear-gradient(225deg, rgba(147, 26, 29, 0.2) 0%, rgba(249, 237, 50, 0.2) 100%);
    z-index: -2;
    animation: cardWobble2 10s ease-in-out infinite;
}

/* Silver Fern SVG Styling */
.silver-fern {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    color: rgba(147, 26, 29, 0.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.silver-fern svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fern-left {
    left: -20px;
    top: 15%;
    height: 500px;
    width: auto;
    transform-origin: 50% 10%;
    animation: fernSway1 6s ease-in-out infinite;
}

.fern-right {
    right: -20px;
    bottom: 10%;
    height: 450px;
    width: auto;
    transform-origin: 50% 10%;
    animation: fernSway2 7s ease-in-out infinite;
}

/* Wobbling background animations removed - now using pseudo-elements for card backgrounds */

/* Kōwhai Branch Styling */
.kowhai-branch {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    color: rgba(249, 237, 50, 0.2);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.08));
}

.kowhai-branch svg {
    width: 100%;
    height: 100%;
    display: block;
}

.branch-left-1 {
    left: 15%;
    top: 8%;
    height: 320px;
    width: auto;
    transform-origin: 20% 15%;
    animation: branchSway1 8s ease-in-out infinite;
}

.branch-right-1 {
    right: 12%;
    top: 45%;
    height: 340px;
    width: auto;
    transform-origin: 80% 15%;
    animation: branchSway2 9s ease-in-out infinite;
}

/* Inner content container with constrained width */
.coming-soon-card > * {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 5.52rem;
}

/* Add vertical padding to first and last children */
.coming-soon-card > *:first-child {
    padding-top: 3rem;
}

.coming-soon-card > *:last-child {
    padding-bottom: 3rem;
}

/* Reset for specific elements that need different treatment */
.coming-soon-card > .submark-container {
    padding: 0;
    padding-top: 3rem;
}

.coming-soon-card > .btn-book-now {
    padding: 1rem 2.5rem;
    padding-bottom: 1rem;
}

/* Silver Fern breeze animations */
@keyframes fernSway1 {
    0%, 100% {
        transform: rotate(-3deg) translateX(0px);
    }
    25% {
        transform: rotate(8deg) translateX(15px);
    }
    50% {
        transform: rotate(-2deg) translateX(-5px);
    }
    75% {
        transform: rotate(6deg) translateX(10px);
    }
}

@keyframes fernSway2 {
    0%, 100% {
        transform: rotate(5deg) translateX(0px);
    }
    30% {
        transform: rotate(-7deg) translateX(-12px);
    }
    60% {
        transform: rotate(4deg) translateX(8px);
    }
    80% {
        transform: rotate(-5deg) translateX(-8px);
    }
}

/* Kōwhai branch breeze animations */
@keyframes branchSway1 {
    0%, 100% {
        transform: rotate(-2deg) translateY(0px);
    }
    25% {
        transform: rotate(5deg) translateY(-8px);
    }
    50% {
        transform: rotate(-1deg) translateY(4px);
    }
    75% {
        transform: rotate(4deg) translateY(-6px);
    }
}

@keyframes branchSway2 {
    0%, 100% {
        transform: rotate(3deg) translateY(0px);
    }
    30% {
        transform: rotate(-6deg) translateY(6px);
    }
    60% {
        transform: rotate(2deg) translateY(-5px);
    }
    85% {
        transform: rotate(-4deg) translateY(3px);
    }
}

/* Card wobble animations for background layers */
@keyframes cardWobble1 {
    0%, 100% {
        transform: rotate(0deg) scale(1.02);
    }
    25% {
        transform: rotate(1deg) scale(1.025) translateX(2px);
    }
    50% {
        transform: rotate(-0.5deg) scale(1.02) translateX(-1px);
    }
    75% {
        transform: rotate(0.8deg) scale(1.023) translateX(1.5px);
    }
}

@keyframes cardWobble2 {
    0%, 100% {
        transform: rotate(0deg) scale(1.03);
    }
    20% {
        transform: rotate(-1.2deg) scale(1.035) translateY(2px);
    }
    40% {
        transform: rotate(0.8deg) scale(1.032) translateY(-1px);
    }
    60% {
        transform: rotate(-0.6deg) scale(1.033) translateY(1.5px);
    }
    80% {
        transform: rotate(1deg) scale(1.031) translateY(-1.2px);
    }
}
.main-heading {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.sub-heading {
    font-family: 'figtree', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #7f8c8d;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}
.content-text {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    padding-left: 150px;
    padding-right: 150px;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .content-text {
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        max-width: 100%;
    }
    ul.content-text {
        padding-left: 2rem;
        padding-right: 0;
        box-sizing: border-box;
    }
    .content-text ul {
        padding-left: 2rem;
        padding-right: 0;
    }
}

/* Service Item Styling */
.service-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(147, 26, 29, 0.1);
}

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

.service-item h3 {
    font-family: 'figtree', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #931a1d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-item p {
    margin-bottom: 0.5rem;
}

.service-item .price {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0.75rem;
}

.service-item ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.content-text ul {
    text-align: left;
    padding-left: 3.5rem;
    margin-bottom: 1.5rem;
}
ul.content-text {
    padding-left: 180px;
    padding-right: 150px;
}
.content-text ul li {
    margin-bottom: 1rem;
}
.coming-soon-card  > h1.greeting {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.coming-soon-card > h1 {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 1rem;
}
.coming-soon-card > h2 {
    font-family: 'figtree', sans-serif;
    font-size: 2.1rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
}
.coming-soon-card > h3 {
    font-family: 'figtree', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 1.5rem;
}
.section-heading {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.contact-info {
    font-size: 1rem;
    color: #3498db;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.disclaimer {
    /* center the disclaimer inside the coming-soon-card */
    margin: 0 auto;
    text-align: center;
    max-width: 60%;
    font-size: 0.875rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}
.icon-container {
    margin-bottom: 2rem;
}
.main-icon {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 1rem;
}
.construction-icon {
    font-size: 3rem;
    color: #e67e22;
    margin: 0 1rem;
}
.flag-icon {
    font-size: 2rem;
    color: #e74c3c;
    margin: 0 0.5rem;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo {
    height: 100px;
    width: auto;
    max-width: 400px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}
.nav-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.nav-social a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}
.nav-social img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}
nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #3498db;
}
nav ul li a.nav-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #931a1d;
    color: white;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(147, 26, 29, 0.3);
    line-height: 1;
    vertical-align: middle;
}
nav ul li a.nav-book-now:hover {
    background-color: #7a1517;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(147, 26, 29, 0.4);
    color: white;
}
.submark-container {
    display: flex;
    justify-content: center;
    margin-bottom: -3.1rem;
    position: relative;
    z-index: 1;
    transform: translateX(-80px);
}
.submark-logo {
    height: 120px;
    width: auto;
    max-width: 100%;
}
/* Submark SVG Animation Styles */
.submark-container svg {
    height: 100px;
    width: auto;
    max-width: 100%;
    overflow: visible;
}
.submark-container svg path,
.submark-container svg ellipse {
    stroke: #931a1d;
    stroke-width: 2.5;
    stroke-linejoin: round;
    stroke-linecap: round;
    fill-opacity: 0;
    stroke-opacity: 1;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: 
        drawStroke 3s ease-in-out forwards,
        fillIn 1s ease-in-out 3s forwards,
        fadeBorder 3s ease-in-out 4s infinite;
}
.submark-container svg ellipse {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}
@keyframes drawStroke {
    0% {
        stroke-dashoffset: 2000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes fillIn {
    0% {
        fill-opacity: 0;
    }
    100% {
        fill-opacity: 1;
    }
}
@keyframes fadeBorder {
    0%, 100% {
        stroke-opacity: 0.4;
    }
    50% {
        stroke-opacity: 1;
    }
}
/* Eye blink animation */
.submark-container svg ellipse {
    animation: 
        drawStroke 3s ease-in-out forwards,
        fillIn 1s ease-in-out 3s forwards,
        fadeBorder 3s ease-in-out 4s infinite,
        blink 8s ease-in-out 4s infinite;
}
@keyframes blink {
    0%, 13%, 17%, 100% {
        opacity: 1;
    }
    15% {
        opacity: 0;
    }
    43%, 47% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
}
.news-section {
    margin-top: 2rem;
    max-width: 1200px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}
.news-title a:hover {
    color: #3498db;
}
.news-description {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #95a5a6;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}
.news-source {
    font-weight: 500;
}
.news-date {
    font-style: italic;
}
.contact-form {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.contact-form .form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.contact-form .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}
.contact-form .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
}
.contact-details {
    text-align: left;
}
.contact-details .content-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-details .content-text i {
    font-size: 1.2rem;
    color: #3498db;
    min-width: 24px;
}
.social-links {
    margin-top: 1.5rem;
}
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3498db;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}
.social-icon:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    color: white;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
    text-decoration: none;
}

.service-card h3 {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.3rem;
    color: #931a1d;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #931a1d;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow on mobile */
    body {
        overflow-x: hidden;
        padding-left: 0;
        padding-right: 0;
        padding-top: 200px;
    }
    
    /* General image constraints for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    nav {
        padding: 0.5rem 1rem;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-logo {
        height: 80px;
        max-width: 300px;
    }
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
    }
    .nav-social {
        gap: 1.5rem;
    }
    .nav-social img {
        height: 28px;
        width: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    .submark-container {
        transform: translateX(-45px);
        margin-bottom: -2rem;
    }
    .submark-container svg {
        height: 70px;
    }
    .coming-soon-card {
        padding: 0.75rem;
        margin: 1rem;
        border-radius: 20px;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        box-sizing: border-box;
    }
    
    /* Constrain pseudo-elements on mobile */
    .coming-soon-card::before,
    .coming-soon-card::after {
        display: none;
    }
    
    .fern-left {
        height: 350px;
        left: -60px;
        top: 12%;
    }
    
    .fern-right {
        height: 320px;
        right: -60px;
        bottom: 8%;
    }
    
    .branch-left-1 {
        height: 240px;
        left: -20px;
        top: 10%;
    }
    
    .branch-right-1 {
        height: 260px;
        right: -20px;
        top: 48%;
    }
    
    .coming-soon-card > * {
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .coming-soon-card > *:first-child {
        padding-top: 2rem;
    }
    
    .coming-soon-card > *:last-child {
        padding-bottom: 2rem;
    }
    
    .coming-soon-card > .submark-container {
        padding-top: 2rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    .sub-heading {
        font-size: 1.1rem;
    }
    .content-text {
        font-size: 0.95rem;
    }
    .coming-soon-card > h1.greeting {
        font-size: 2.5rem;
        box-sizing: border-box;
        max-width: 100%;
    }
    .section-heading {
        font-size: 1.75rem;
        box-sizing: border-box;
        max-width: 100%;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .news-section {
        margin-top: 1.5rem;
    }
    .social-icons {
        gap: 0.75rem;
    }
    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    .aracari-image-container {
        margin: 2rem auto;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
    }
    
    .aracari-bird-image {
        border-radius: 12px;
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    
    .image-caption {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .disclaimer {
        max-width: 90%;
        box-sizing: border-box;
    }
    
    .btn-book-now {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .coming-soon-card > .btn-book-now {
        padding-bottom: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .services-grid .service-card:nth-child(4) {
        grid-column: auto;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
        box-sizing: border-box;
        width: 100%;
    }
    
    .service-item h3 {
        font-size: 1.05rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonials-grid .testimonial-card:nth-child(3) {
        grid-column: auto !important;
        max-width: 100% !important;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        box-sizing: border-box;
        width: 100%;
    }
    
    .contact-form {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
.site-footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-content {
    max-width: 700px;
    margin: 0 auto;
}
.footer-brand {
    font-family: 'quincy-cf', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.footer-license {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}
.footer-badge {
    margin: 1rem 0;
    text-align: center;
}
.iaa-badge {
    max-width: 100px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.iaa-badge:hover {
    opacity: 1;
}
.footer-email {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}
.footer-email a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-email a:hover {
    color: #2980b9;
}
.footer-copyright {
    font-size: 0.875rem;
    color: #95a5a6;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-links {
    font-size: 0.75rem;
    color: #95a5a6;
    margin-top: 0.75rem;
}
.footer-links a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #7f8c8d;
}

/* Aracari Bird Image Styling */
.aracari-image-container {
    margin: 3rem auto;
    text-align: center;
    max-width: 600px;
}

.aracari-bird-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aracari-bird-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.image-caption {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Book Now Button */
.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #931a1d;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(147, 26, 29, 0.3);
    line-height: 1;
    vertical-align: middle;
}

.btn-book-now:hover {
    background-color: #7a1517;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(147, 26, 29, 0.4);
    color: white;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    font-family: 'figtree', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #931a1d;
    box-shadow: 0 0 0 3px rgba(147, 26, 29, 0.1);
}

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

.btn-submit {
    background-color: #931a1d;
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(147, 26, 29, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #7a1517;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(147, 26, 29, 0.4);
}

/* Footer Login Link */
.footer-login {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.footer-login a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-login a:hover {
    color: #2980b9;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.footer-social img {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    .footer-brand {
        font-size: 1.1rem;
    }
    .footer-license,
    .footer-email {
        font-size: 0.9rem;
    }
    .footer-copyright {
        font-size: 0.8rem;
    }
    .footer-links {
        font-size: 0.7rem;
    }
    .footer-social img {
        height: 28px;
        width: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    .footer-badge img,
    .iaa-badge {
        max-width: 80px;
        height: auto;
    }
}

/* Services Grid - Landing Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(249, 237, 50, 0.3) 0%, rgba(147, 26, 29, 0.3) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.service-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #931a1d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-description {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-includes {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-list li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #931a1d;
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .service-card {
        padding: 1.5rem;
        box-sizing: border-box;
        width: 100%;
    }
    
    .service-card-title {
        font-size: 1.5rem;
    }
}

