@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary-color: #2d5a27;
    /* Forest Green (Logo Background) */
    --accent-color: #c5a059;
    /* Gold (Logo Icon) */
    --text-color: #333;
    --light-text: #f5f5f5;
    --bg-light: #ffffff;
    --bg-soft: #fcf9f2;
    /* Ivory/Cream */
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    z-index: 1003;
    transition: width 0.1s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header & Navigation */
.top-bar {
    background: #1c3a19;
    /* Slightly darker green for contrast */
    color: var(--accent-color);
    padding: 8px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 0.8rem;
    font-weight: 400;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.top-bar a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: white;
}

.top-bar i {
    margin-right: 8px;
}

header {
    position: fixed;
    top: 35px;
    /* Height of the top bar */
    width: 100%;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1002;
}

.mobile-nav-toggle:hover {
    color: white;
}

@media (max-width: 768px) {
    .top-bar {
        justify-content: center;
        gap: 15px;
        font-size: 0.7rem;
        padding: 6px 5%;
    }

    header {
        top: 31px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 1010;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 1011;
    }
}




.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--light-text);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}




/* Hero Section - V2 Luxury Portal (Creative & Immersive) */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.4) 0%, rgba(28, 58, 25, 0.7) 100%);
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/BSA_8179.JPG.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    letter-spacing: -1rem;
}

.hero-content {
    max-width: 650px;
    z-index: 5;
    text-align: left;
    position: relative;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-subtitle::after {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--accent-color);
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Floating Portal Cards */
.hero-portal {
    position: absolute;
    bottom: 5vh;
    right: 10%;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.portal-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 200px;
    transition: var(--transition);
    animation: float 4s ease-in-out infinite;
}

.portal-card:nth-child(2) {
    animation-delay: 1s;
}

.portal-card:nth-child(3) {
    animation-delay: 2s;
}

.portal-card:hover {
    background: var(--accent-color);
    transform: translateY(-15px);
    border-color: var(--accent-color);
}

.portal-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.portal-card:hover i,
.portal-card:hover h4,
.portal-card:hover span {
    color: white;
}

.portal-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.portal-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero-portal {
        bottom: 5vh;
        left: 10%;
        right: auto;
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 5%;
        flex-direction: column;
        justify-content: center;
    }

    .hero-watermark {
        font-size: 40vw;
    }

    .hero-content {
        text-align: center;
        margin-top: -15vh;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-portal {
        display: none;
    }

    /* Hide cards on mobile for cleaner look */
    .hero-subtitle {
        justify-content: center;
    }

    .hero-subtitle::after {
        display: none;
    }
}


.btn {
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: #b08d4a;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 5%;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

.card {
    background: var(--bg-soft);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 10% 40px;
    border-top: 5px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 5px;
}

.footer-brand .logo-img {
    height: 35px;
    margin-right: 12px;
    object-fit: contain;
}

.footer-brand .brand-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(5px);
}

.newsletter p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 4px;
    color: white;
    flex: 1;
}

.newsletter-form button {
    background: var(--accent-color);
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 60px 20px 40px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Classes */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Background */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Updated Typography & Spacing */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #666;
}

/* Specific Section Styles */
.heritage-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 120px 10%;
}

.heritage-content {
    flex: 1;
}

.heritage-image {
    flex: 1;
    position: relative;
}

.heritage-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    z-index: -1;
}

.heritage-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.amenity-item {
    padding: 40px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.amenity-item:hover {
    background: var(--bg-soft);
    border-color: var(--accent-color);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

/* Testimonials */
.testimonials {
    background: var(--primary-color);
    color: white;
    padding: 100px 10%;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.testimonial-author {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* Discover Ambur Enhanced */
.discover-section {
    padding: 120px 10%;
    background: white;
}

.discover-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.discover-intro h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.heritage-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.heritage-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.heritage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.heritage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.3) 50%, transparent);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.5s ease;
}

.heritage-card:hover img {
    transform: scale(1.1);
}

.heritage-card:hover .heritage-overlay {
    background: linear-gradient(to top, rgba(28, 58, 25, 0.95) 10%, rgba(0, 0, 0, 0.5) 70%);
}

.heritage-tag {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.heritage-overlay h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.heritage-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.heritage-card:hover p {
    height: auto;
    margin-bottom: 20px;
    opacity: 1;
}

@media (max-width: 992px) {
    .heritage-showcase {
        grid-template-columns: 1fr;
    }

    .heritage-card {
        height: 350px;
    }
}

/* Mosaic Room Showcase */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    margin-top: 50px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: var(--transition);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mosaic-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transition: bottom 0.5s ease;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-item:hover .mosaic-info {
    bottom: 0;
}

.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item.tall {
    grid-row: span 2;
}

.mosaic-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mosaic-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .mosaic-item.large,
    .mosaic-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .heritage-section {
        flex-direction: column;
        gap: 50px;
        padding: 80px 5%;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    header {
        padding: 1rem 20px;
    }
}

/* Rooms Page Enhanced Styles */
.room-detailed-grid {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.room-showcase-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.room-showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.room-visuals {
    flex: 1.2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-visuals img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.room-showcase-item:hover .room-visuals img {
    transform: scale(1.05);
}

.room-details {
    flex: 1;
}

.room-category {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.room-details h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.room-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.room-amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.amenity-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
}

.amenity-detail i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.regency-difference {
    background: var(--bg-soft);
    padding: 100px 10%;
    text-align: center;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.diff-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.diff-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

@media (max-width: 992px) {

    .room-showcase-item,
    .room-showcase-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }

    .room-visuals img {
        height: 350px;
    }

    .difference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Enhanced Styles */
.contact-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-section {
    padding: 100px 10%;
    background: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-cards-grid {
    display: grid;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: var(--bg-soft);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-card h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-card p,
.contact-card a {
    color: #666;
    line-height: 1.6;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Enhanced Form */
.premium-form-container {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.premium-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.input-block {
    position: relative;
}

.input-block label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-block input,
.input-block textarea {
    width: 100%;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.input-block input:focus,
.input-block textarea:focus {
    background: white;
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}

.submit-area {
    margin-top: 40px;
}

.btn-premium {
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-premium:hover {
    background: #1c3a19;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .premium-form-container {
        padding: 30px;
    }
}

/* Scroll Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Stagger reveals if needed */
.heritage-card:nth-child(2) {
    transition-delay: 0.2s;
}

.heritage-card:nth-child(3) {
    transition-delay: 0.4s;
}

.explore-card:nth-child(2) {
    transition-delay: 0.1s;
}

.explore-card:nth-child(3) {
    transition-delay: 0.2s;
}

.explore-card:nth-child(4) {
    transition-delay: 0.3s;
}

.explore-card:nth-child(5) {
    transition-delay: 0.4s;
}

.explore-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Professional Reveal Variations */
[data-reveal="fade-up"] {
    transform: translateY(40px);
    opacity: 0;
}

[data-reveal="fade-in"] {
    transform: translateY(0);
    opacity: 0;
}

[data-reveal="scale-up"] {
    transform: scale(0.95);
    opacity: 0;
}

[data-reveal="slide-right"] {
    transform: translateX(-40px);
    opacity: 0;
}

[data-reveal="slide-left"] {
    transform: translateX(40px);
    opacity: 0;
}

[data-reveal].revealed {
    transform: translate(0) scale(1) !important;
    opacity: 1 !important;
}

/* Staggered Delay Utility */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* Premium Hover Effects */
.btn,
.portal-card,
.card,
.explore-card {
    transition: var(--transition-slow);
}

.btn:hover {
    letter-spacing: 3px;
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.portal-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.05);
}

.card:hover img,
.explore-card:hover img,
.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-item {
    overflow: hidden;
}

.mosaic-item img {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}