/* Amazonico India Color Variables */
:root {
    --amazonico-dark: #0d2818;
    /* Deep forest green */
    --amazonico-medium: #1a4d2e;
    /* Medium forest green */
    --amazonico-light: #2d5a3d;
    /* Light forest green */
    --amazonico-accent: #4a7c59;
    /* Natural green accent */
    --amazonico-gold: #d4af37;
    /* Warm gold for highlights */
    --amazonico-earth: #8b4513;
    /* Earth brown for bamboo */
    --amazonico-sage: #9caf88;
    /* Sage green for secondary text */
    --amazonico-moss: #6b8e23;
    /* Moss green for accents */
}

/* 3D Nature Animations */
@keyframes leafFall {
    0% {
        transform: translateY(-100vh) rotate(0deg) translateX(0px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg) translateX(50px);
        opacity: 0;
    }
}

@keyframes butterflyFloat {

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

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

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

    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes bambooSway {

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

    50% {
        transform: rotate(2deg);
    }
}

/* Terms Page Styling */
.terms-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.terms-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.terms-link {
    color: var(--amazonico-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.terms-tagline {
    margin-top: 30px;
    text-align: center;
}

.terms-tagline .tagline-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 5px;
}

.terms-tagline .tagline-highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--amazonico-gold);
    display: block;
}

/* Contact Page Styling */
.contact-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-locations h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-social h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-tagline {
    margin-top: 30px;
    text-align: center;
}

.contact-tagline .tagline-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 5px;
}

.contact-tagline .tagline-highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--amazonico-gold);
    display: block;
}

/* Floating Nature Elements */
.nature-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.leaf-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--amazonico-sage);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: leafFall 15s linear infinite;
    opacity: 0.6;
}

.butterfly-particle {
    position: absolute;
    width: 30px;
    height: 20px;
    background: var(--amazonico-gold);
    border-radius: 50% 10px 50% 10px;
    animation: butterflyFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.butterfly-particle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--amazonico-accent);
    border-radius: 10px 50% 10px 50%;
    transform: scale(0.7);
}

/* Floating Book Now Button */
.floating-booknow {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: floatUpDown 3s ease-in-out infinite;
}

.booknow-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booknow-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.3), rgba(156, 175, 136, 0.1), transparent);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

.booknow-leaves {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
}

.leaf {
    position: absolute;
    font-size: 16px;
    animation: leafFloat 4s ease-in-out infinite;
}

.leaf-1 {
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.leaf-2 {
    top: 30px;
    right: 15px;
    animation-delay: 1.3s;
}

.leaf-3 {
    bottom: 20px;
    left: 30px;
    animation-delay: 2.6s;
}

.booknow-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--amazonico-sage), var(--amazonico-accent));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booknow-button::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.6s ease;
}

.booknow-button:hover::before {
    left: 100%;
}

.booknow-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.6);
}

.booknow-text {
    position: relative;
    z-index: 2;
}

.booknow-icon {
    font-size: 18px;
    animation: treeSway 2s ease-in-out infinite;
}

/* Animations */
@keyframes floatUpDown {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes leafFloat {

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

    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes treeSway {

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

    25% {
        transform: rotate(2deg);
    }

    75% {
        transform: rotate(-2deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-booknow {
        bottom: 20px;
        right: 20px;
    }

    .booknow-button {
        padding: 10px 16px;
        font-size: 13px;
    }

    .booknow-glow {
        width: 100px;
        height: 100px;
    }

    .booknow-leaves {
        width: 80px;
        height: 80px;
    }

    .leaf {
        font-size: 14px;
    }
}

/* Booking Page Styles */
.forest-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--amazonico-dark) 0%, #0a1f0a 50%, var(--amazonico-dark) 100%);
    z-index: -2;
}

.forest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(74, 124, 89, 0.1), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(156, 175, 136, 0.08), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.06), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: forestShimmer 15s linear infinite;
}

.floating-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.forest-leaf {
    position: absolute;
    font-size: 20px;
    opacity: 0.6;
    animation: forestLeafFall 12s linear infinite;
}

.forest-leaf:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.forest-leaf:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.forest-leaf:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.forest-leaf:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.forest-leaf:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
}

@keyframes forestShimmer {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, -50px);
    }
}

@keyframes forestLeafFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.booking-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--amazonico-gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.booking-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.booking-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.booking-form-card {
    background: rgba(13, 40, 24, 0.9);
    border: 1px solid rgba(74, 124, 89, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.booking-form-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 30px;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--amazonico-sage);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(74, 124, 89, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amazonico-accent);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

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

.submit-booking-btn {
    background: linear-gradient(135deg, var(--amazonico-sage), var(--amazonico-accent));
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.submit-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.4);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(13, 40, 24, 0.8);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.info-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--amazonico-gold);
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.info-card li::before {
    content: '🌿';
    position: absolute;
    left: 0;
    top: 0;
}

.booking-footer {
    text-align: center;
    margin-top: 60px;
}

.booking-note {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--amazonico-sage);
    margin-bottom: 30px;
}

.booking-tagline {
    margin-top: 30px;
}

.booking-tagline .tagline-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 5px;
}

.booking-tagline .tagline-highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--amazonico-gold);
    display: block;
}

/* Mobile responsiveness for booking page */
@media (max-width: 768px) {
    .booking-container {
        padding: 100px 15px 40px;
    }

    .booking-title {
        font-size: 36px;
    }

    .booking-subtitle {
        font-size: 20px;
    }

    .booking-description {
        font-size: 16px;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-form-card {
        padding: 25px;
    }

    .info-cards {
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }
}

/* Main Logo Styles */
.main-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Logo text styling */
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-underline {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--amazonico-accent), var(--amazonico-gold));
    margin: 0 auto;
    border-radius: 1px;
}

/* Hero logo specific styling */
.hero-logo {
    text-align: center;
    margin-bottom: 40px;
    z-index: 3;
    position: relative;
}

.hero-logo .main-logo {
    max-width: 250px;
}

.hero-logo .logo-text {
    font-size: 42px;
    letter-spacing: 5px;
}

/* Page logo specific styling */
.page-logo {
    text-align: center;
    margin-bottom: 40px;
    z-index: 3;
    position: relative;
}

.page-logo .main-logo {
    max-width: 180px;
}

.page-logo .logo-text {
    font-size: 32px;
    letter-spacing: 3px;
}

/* Mobile responsiveness for main logo */
@media (max-width: 768px) {
    .main-logo {
        max-width: 150px;
    }

    .hero-logo .main-logo {
        max-width: 180px;
    }

    .page-logo .main-logo {
        max-width: 140px;
    }

    .logo-text {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .hero-logo .logo-text {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .page-logo .logo-text {
        font-size: 24px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 120px;
    }

    .hero-logo .main-logo {
        max-width: 150px;
    }

    .page-logo .main-logo {
        max-width: 120px;
    }

    .logo-text {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .hero-logo .logo-text {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .page-logo .logo-text {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

/* Design Element Styles */
.hero-design-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.design-image {
    width: 400px;
    height: auto;
    filter: brightness(0.9) contrast(1.1);
    animation: designFloat 8s ease-in-out infinite;
}

@keyframes designFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(1deg);
        opacity: 0.25;
    }
}

/* Mobile responsiveness for design element */
@media (max-width: 768px) {
    .design-image {
        width: 300px;
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .design-image {
        width: 250px;
        opacity: 0.12;
    }
}

/* Video Section Styles */
.video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amazonico-dark);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--amazonico-dark) 0%, #0a1f0a 50%, var(--amazonico-dark) 100%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(74, 124, 89, 0.1), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(156, 175, 136, 0.08), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.06), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: forestShimmer 15s linear infinite;
}

.video-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-content {
    text-align: left;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--amazonico-gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.video-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.3);
}

.hero-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(74, 124, 89, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.play-button:hover {
    background: rgba(78, 205, 196, 0.9);
    transform: scale(1.1);
}

.play-button svg {
    color: white;
    margin-left: 4px;
}

/* Mobile responsiveness for video section */
@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .video-content {
        text-align: center;
        order: 2;
    }

    .video-wrapper {
        order: 1;
    }

    .video-title {
        font-size: 36px;
    }

    .video-subtitle {
        font-size: 20px;
    }

    .video-description {
        font-size: 16px;
    }

    .hero-video {
        height: 250px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 28px;
    }

    .video-subtitle {
        font-size: 18px;
    }

    .video-description {
        font-size: 14px;
    }

    .hero-video {
        height: 200px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: var(--amazonico-dark);
    overflow-x: hidden;
}

/* Hide scrollbar for webkit browsers */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none;
}

/* Hide scrollbar for IE and Edge */
body {
    -ms-overflow-style: none;
}

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


/* Hero Section */
.hero {
    height: 100dvh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--amazonico-dark);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1), transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(156, 175, 136, 0.08), transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 40, 24, 0.4);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-100px);
    }
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 10;
    cursor: pointer;
}

.hero-logo .logo-wrapper {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: lowercase;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-logo:hover .logo-wrapper {
    transform: translateX(10px) scale(1.1);
}

.hero-logo:hover .logo-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(74, 124, 89, 0.3);
}

.hero-logo .logo-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amazonico-accent), var(--amazonico-gold));
    transition: width 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-logo .logo-wrapper:hover .logo-underline {
    width: 100%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.320, 1) 0.5s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(70px, 9vw, 140px);
    font-weight: 800;
    line-height: 0.85;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #fff 0%, var(--amazonico-accent) 30%, var(--amazonico-gold) 70%, var(--amazonico-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.320, 1) 1s forwards, gradientMove 8s ease-in-out infinite;
    opacity: 0;
    text-shadow: 0 0 40px rgba(74, 124, 89, 0.3);
    letter-spacing: -2px;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 60px;
    opacity: 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.320, 1) 1.5s forwards;
}

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

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

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.app-btn {
    display: block;
    transition: transform 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.app-btn img {
    height: 60px;
    width: auto;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0px) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Premium Curved Join Button */
.join-circle-container {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 112px;
    height: 112px;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    animation: elegantEntrance 1.2s cubic-bezier(0.23, 1, 0.320, 1) 2.5s forwards;
}

@keyframes elegantEntrance {
    0% {
        opacity: 0;
        transform: scale(0.6) rotate(-180deg);
        filter: blur(10px);
    }

    60% {
        opacity: 0.8;
        transform: scale(1.1) rotate(-20deg);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
}

.join-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.join-circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%),
        linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(69, 183, 209, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.join-circle-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    background: conic-gradient(from 0deg, #4ecdc4, #45b7d1, #ff6b6b, #4ecdc4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.curved-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.curved-text-element {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.8px;
    fill: #ffffff;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    stroke: #4ecdc4;
    stroke-width: 0.8px;
    transition: fill 0.3s ease, stroke 0.3s ease, filter 0.3s ease;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.join-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #4ecdc4, transparent);
    border-radius: 50%;
    opacity: 0;
}

.particle:nth-child(1) {
    top: 20%;
    left: 80%;
    animation: floatParticle 3s ease-in-out infinite;
}

.particle:nth-child(2) {
    top: 70%;
    left: 15%;
    animation: floatParticle 3s ease-in-out infinite 0.6s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 90%;
    animation: floatParticle 3s ease-in-out infinite 1.2s;
}

.particle:nth-child(4) {
    top: 85%;
    left: 60%;
    animation: floatParticle 3s ease-in-out infinite 1.8s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 30%;
    animation: floatParticle 3s ease-in-out infinite 2.4s;
}

@keyframes floatParticle {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

/* Hover Effects */
.join-circle-container:hover .join-circle {
    transform: scale(1.1);
}

.join-circle-container:hover .join-circle-glow {
    opacity: 0.6;
}

.join-circle-container:hover .center-icon {
    transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
    color: #000000;
}

.join-circle-container:hover .curved-text {
    animation-duration: 3s;
}

.join-circle-container:hover .curved-text-element {
    fill: #000000 !important;
    stroke: none !important;
    stroke-width: 0 !important;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.8)) !important;
}

.join-circle-container:hover .particle {
    animation-duration: 1.5s;
}

/* Active State */
.join-circle-container:active .join-circle {
    transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
    .join-circle-container {
        top: 20px;
        right: 20px;
        width: 88px;
        height: 88px;
    }

    .curved-text-element {
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.2px;
        stroke-width: 1px;
    }

    .center-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .join-circle-container {
        width: 80px;
        height: 80px;
    }

    .curved-text-element {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* Onboarding Page Styles */
.onboarding-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.onboarding-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #7209b7 100%);
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1), transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.15), transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: floatParticles 20s linear infinite;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-100px);
    }
}

.onboarding-header {
    position: relative;
    z-index: 10;
    padding: 30px;
}

.onboarding-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.onboarding-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.onboarding-content {
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.welcome-section {
    margin-bottom: 50px;
}

.onboarding-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.onboarding-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.welcome-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.onboarding-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: #fff;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    border-color: #4ecdc4;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.form-actions {
    margin-top: 40px;
}

.start-btn {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    border: none;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: gradientFlow 3s ease-in-out infinite;
    box-shadow:
        0 15px 35px rgba(255, 107, 107, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-text {
    display: block;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.btn-subtext {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 25px 50px rgba(255, 107, 107, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(78, 205, 196, 0.3);
}

.start-btn:hover .btn-glow {
    opacity: 1;
}

.onboarding-footer {
    position: relative;
    z-index: 10;
    padding: 30px;
    text-align: center;
}

.onboarding-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .onboarding-title {
        font-size: 36px;
    }

    .onboarding-subtitle {
        font-size: 20px;
    }

    .onboarding-form-container {
        padding: 30px 25px;
        margin: 0 10px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .onboarding-header {
        padding: 20px;
    }

    .onboarding-logo {
        font-size: 24px;
    }
}

/* Card Stack Section */
.card-stack-section {
    padding: 120px 0;
    background: var(--amazonico-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(74, 124, 89, 0.15), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15), transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(156, 175, 136, 0.1), transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.card-stack-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 25px 35px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 75px 85px, rgba(255, 107, 107, 0.08), transparent),
        radial-gradient(1px 1px at 125px 45px, rgba(78, 205, 196, 0.08), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: floatingDots 20s linear infinite;
    pointer-events: none;
}

@keyframes floatingDots {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    100% {
        transform: translateY(-200px) translateX(-200px);
    }
}

.card-stack {
    position: relative;
    width: 800px;
    height: 600px;
    margin: 0 auto;
    perspective: 1000px;
    z-index: 2;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: rgba(13, 40, 24, 0.95);
    border: 1px solid rgba(74, 124, 89, 0.2);
    background-clip: padding-box;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 1px;
    background: linear-gradient(45deg,
            rgba(74, 124, 89, 0.3) 0%,
            rgba(212, 175, 55, 0.3) 25%,
            rgba(156, 175, 136, 0.2) 50%,
            rgba(107, 142, 35, 0.3) 75%,
            rgba(74, 124, 89, 0.3) 100%);
    background-size: 300% 300%;
    animation: borderGlow 4s ease-in-out infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.card-1 {
    transform: translateZ(0) rotateY(0deg) translateX(0);
    z-index: 3;
    box-shadow: 0 25px 80px rgba(13, 40, 24, 0.6);
}

.card-2 {
    transform: translateZ(-60px) rotateY(-8deg) translateX(120px);
    z-index: 2;
    opacity: 0.9;
    box-shadow: 0 20px 60px rgba(13, 40, 24, 0.5);
}

.card-3 {
    transform: translateZ(-120px) rotateY(-15deg) translateX(220px);
    z-index: 1;
    opacity: 0.8;
    box-shadow: 0 15px 40px rgba(13, 40, 24, 0.4);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(13, 40, 24, 0.8);
}

.card:hover::before {
    animation-duration: 2s;
    background: linear-gradient(45deg,
            rgba(74, 124, 89, 0.6) 0%,
            rgba(212, 175, 55, 0.6) 25%,
            rgba(156, 175, 136, 0.4) 50%,
            rgba(107, 142, 35, 0.6) 75%,
            rgba(74, 124, 89, 0.6) 100%);
}

.card-1:hover {
    transform: translateZ(30px) rotateY(3deg) translateY(-15px) scale(1.02);
}

.card-2:hover {
    transform: translateZ(-30px) rotateY(-5deg) translateX(120px) translateY(-15px) scale(1.02);
}

.card-3:hover {
    transform: translateZ(-90px) rotateY(-12deg) translateX(220px) translateY(-15px) scale(1.02);
}

.card-content {
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Card Header Styling */
.card-header {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
}

.card-category {
    background: rgba(13, 40, 24, 0.8);
    border: 1px solid rgba(74, 124, 89, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    backdrop-filter: blur(10px);
}

.category-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Card Bullet Points Styling */
.card-bullets {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.bullet-item:hover {
    transform: translateX(5px);
}

.bullet-icon {
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 124, 89, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(74, 124, 89, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bullet-item:hover .bullet-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.bullet-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.bullet-item:hover .bullet-text {
    color: rgba(255, 255, 255, 0.95);
}

.card-text {
    margin: 20px 0;
    text-align: center;
    padding: 0 15px;
}

.card-image {
    width: 280px;
    height: 160px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card:hover .card-image {
    transform: scale(1.08) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    filter: brightness(0.9) saturate(1.1);
}

.card:hover .card-image img {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.3) contrast(1.1);
}

/* Remove card-image-2 styles as we're using single image layout */

.card-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -1px;
    text-align: center;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    justify-content: center;
}

.tag {
    padding: 10px 18px;
    background: rgba(13, 40, 24, 0.8);
    border: 1px solid rgba(74, 124, 89, 0.4);
    border-radius: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Special styling for ECO-MATERIALS tag with gold glow */
.tag.eco-materials {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(13, 40, 24, 0.9);
}

.tag.eco-materials::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.tag.eco-materials:hover::before {
    left: 100%;
}

.tag:hover {
    background: rgba(74, 124, 89, 0.2);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
    border-color: rgba(74, 124, 89, 0.6);
}

/* Particle Section */
.particle-section {
    position: relative;
    padding: 150px 0;
    background: var(--amazonico-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .particle-section {
        padding: 80px 20px;
        min-height: 80vh;
    }
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--amazonico-dark);
    background-image:
        radial-gradient(2px 2px at 25px 35px, rgba(156, 175, 136, 0.1), transparent),
        radial-gradient(1px 1px at 75px 85px, rgba(74, 124, 89, 0.08), transparent),
        radial-gradient(1px 1px at 125px 45px, rgba(212, 175, 55, 0.08), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: floatingDots 20s linear infinite;
    pointer-events: none;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, -50px);
    }
}

.particle-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.particle-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
}

.particle-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 7vw, 95px);
    font-weight: 900;
    line-height: 1.05;
    background: linear-gradient(135deg, #fff 0%, var(--amazonico-accent) 30%, var(--amazonico-gold) 70%, var(--amazonico-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientMove 6s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(156, 175, 136, 0.2);
    letter-spacing: -2px;
}

/* Invite Section */
.invite-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.invite-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&h=1080&fit=crop') center/cover;
}

.invite-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.invite-content {
    text-align: center;
    z-index: 2;
    max-width: 600px;
}

.invite-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 45px;
    color: #fff;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.invite-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(70px, 9vw, 120px);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    letter-spacing: -1px;
}

.invite-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: var(--amazonico-dark);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(74, 124, 89, 0.1), transparent),
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--amazonico-accent) 50%, var(--amazonico-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 300px;
    gap: 25px;
    width: 100%;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.terms-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: left 1s ease;
}

.terms-content:hover::before {
    left: 100%;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    filter: brightness(0.9) saturate(1.1);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.3) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(20px);
}

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

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.gallery-overlay p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Footer */
.footer {
    background: var(--amazonico-dark);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grainMove 20s linear infinite;
}

@keyframes grainMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, -50px);
    }
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: lowercase;
    position: relative;
    transition: all 0.3s ease;
}

.footer-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amazonico-accent), var(--amazonico-gold));
    transition: width 0.3s ease;
}

.footer-brand:hover::after {
    width: 100%;
}

.footer-brand:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-tagline {
    margin-top: 15px;
}

.tagline-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.tagline-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: var(--amazonico-gold);
    letter-spacing: 1px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-end;
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item i {
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item:last-child {
    align-items: flex-start;
}

.contact-item:last-child i {
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    border-color: #ff6b6b;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.contact-email {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.contact-email:hover {
    color: #4ecdc4;
}

.contact-email:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 40px 0;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 30px;
    position: relative;
}

.footer-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    animation: lineMove 4s ease-in-out infinite;
}

@keyframes lineMove {

    0%,
    100% {
        left: -30%;
    }

    50% {
        left: 100%;
    }
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
}

.footer-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ecdc4;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #4ecdc4;
}

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

.copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.footer-time {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.timezone {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Ensure all sections have forest green background */
    body {
        background: var(--amazonico-dark) !important;
    }

    .hero,
    .card-stack-section,
    .particle-section,
    .invite-section,
    .gallery-section,
    .footer {
        background: var(--amazonico-dark) !important;
    }

    .hero-logo {
        top: 30px;
        left: 30px;
    }

    .hero-logo .logo-text {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .page-logo {
        top: 20px;
        left: 20px;
    }

    .page-logo .logo-text {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .footer-brand {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .gallery-container {
        padding: 0 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        grid-auto-rows: 250px;
        gap: 20px;
    }

    .gallery-item {
        min-height: 250px;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }

    .hero-title {
        font-size: 70px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 18px;
    }

    .card-stack {
        width: 100%;
        max-width: 600px;
        height: 500px;
    }

    .card {
        position: relative;
        margin-bottom: 40px;
        transform: none !important;
        opacity: 1 !important;
    }

    .card-1,
    .card-2,
    .card-3 {
        position: relative;
        transform: none !important;
        opacity: 1 !important;
    }

    .card:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }

    .card-content {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .card-header {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }

    .card-category {
        padding: 8px 16px;
    }

    .category-text {
        font-size: 12px;
    }

    .card-text h2 {
        font-size: 28px;
        line-height: 1.2;
    }

    .card-tags {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tag {
        padding: 8px 14px;
        font-size: 10px;
    }

    .card-bullets {
        margin: 15px 0;
        gap: 10px;
    }

    .bullet-item {
        gap: 8px;
        padding: 4px 0;
    }

    .bullet-icon {
        font-size: 14px;
        width: 18px;
        height: 18px;
    }

    .bullet-text {
        font-size: 12px;
        line-height: 1.3;
    }

    .card-tags {
        margin-top: 15px;
        gap: 6px;
    }

    .card-text {
        margin: 15px 0;
        padding: 0 10px;
    }

    /* Terms and Contact Page Mobile Styles */
    .terms-description,
    .contact-description {
        font-size: 14px;
        margin-top: 10px;
        padding: 0 15px;
    }

    .terms-section h2,
    .contact-card h3,
    .contact-form-card h3,
    .contact-locations h3,
    .contact-social h3 {
        font-size: 16px;
        gap: 6px;
    }

    .location-card h4 {
        font-size: 16px;
        gap: 6px;
    }

    .terms-section p,
    .contact-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .terms-tagline,
    .contact-tagline {
        margin-top: 20px;
    }

    .terms-tagline .tagline-text,
    .contact-tagline .tagline-text {
        font-size: 14px;
    }

    .terms-tagline .tagline-highlight,
    .contact-tagline .tagline-highlight {
        font-size: 16px;
    }

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

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

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

    .footer-brand {
        font-size: 36px;
    }

    .footer-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 120px;
    }

    .hero-logo .main-logo {
        max-width: 150px;
    }

    .page-logo .main-logo {
        max-width: 120px;
    }

    .logo-text {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .hero-logo .logo-text {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .page-logo .logo-text {
        font-size: 20px;
        letter-spacing: 1px;
    }

    /* Terms and Contact Page Mobile Styles */
    .terms-description,
    .contact-description {
        font-size: 14px;
        margin-top: 10px;
        padding: 0 15px;
    }

    .terms-section h2,
    .contact-card h3,
    .contact-form-card h3,
    .contact-locations h3,
    .contact-social h3 {
        font-size: 16px;
        gap: 6px;
    }

    .location-card h4 {
        font-size: 16px;
        gap: 6px;
    }

    .terms-section p,
    .contact-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .terms-tagline,
    .contact-tagline {
        margin-top: 20px;
    }

    .terms-tagline .tagline-text,
    .contact-tagline .tagline-text {
        font-size: 14px;
    }

    .terms-tagline .tagline-highlight,
    .contact-tagline .tagline-highlight {
        font-size: 16px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .footer-brand {
        font-size: 28px;
    }

    .footer-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Terms & Contact Pages */
.terms-page,
.contact-page {
    min-height: 100vh;
    position: relative;
    padding: 0;
    margin: 0;
}

.terms-background,
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.terms-background::before,
.contact-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.12), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.12), transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.08), transparent 50%);
    animation: backgroundPulse 18s ease-in-out infinite;
}

.terms-background::after,
.contact-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 25px 35px, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 75px 85px, rgba(255, 107, 107, 0.06), transparent),
        radial-gradient(1px 1px at 125px 45px, rgba(78, 205, 196, 0.06), transparent);
    background-repeat: repeat;
    background-size: 180px 180px;
    animation: floatingDots 22s linear infinite;
}

.page-logo {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 10;
    cursor: pointer;
}

.page-logo a {
    text-decoration: none;
}

.page-logo .logo-wrapper {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.page-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: lowercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.page-logo:hover .logo-wrapper {
    transform: translateX(10px) scale(1.1);
}

.page-logo:hover .logo-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.terms-content,
.contact-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    color: #fff;
}

.terms-header,
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-title,
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ff6b6b 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-subtitle,
.contact-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.terms-body {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.terms-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.terms-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.terms-section p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.terms-section ul > li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.terms-link {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #fff;
}

.terms-footer,
.contact-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last-updated,
.response-time {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.back-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: #4ecdc4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

/* Contact Info Styling */
.contact-info {
    margin-top: 20px;
}

.company-name {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.contact-item i {
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.85);
}

.contact-item:last-child {
    align-items: flex-start;
}

.contact-item:last-child i {
    margin-top: 4px;
}

.parent-company {
    font-size: 8px !important;
}