/* =========================================
   PIND DI VIBE - Royal Event Rentals
   Premium One-Page Website
   ========================================= */

/* CSS Variables - Royal Theme */
:root {
    --navy-deep: #0d0d2b;
    --navy: #1a1a4e;
    --navy-light: #2a2a6e;
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dark: #b8962e;
    --cream: #f8f4e8;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #e8e8f0;
    --text-muted: #8888a0;

    --font-display: 'Cinzel', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(13, 13, 43, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 5%;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    height: 80px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo {
    height: 65px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

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

.nav-cta {
    background: var(--gold);
    color: var(--navy-deep) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 15, 50, 0.92) 0%,
        rgba(12, 25, 85, 0.85) 50%,
        rgba(8, 15, 50, 0.9) 100%
    );
}


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

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

.crown-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.4);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
    color: var(--gold);
    font-size: 0.75rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================================
   SECTION STYLING
   ========================================= */
section {
    padding: 6rem 5%;
    overflow-x: hidden;
}

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

.section-header.light .section-label,
.section-header.light .section-title {
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.1em;
}

.title-ornament {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.title-ornament span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.title-ornament span:nth-child(2) {
    width: 12px;
    height: 12px;
}

/* =========================================
   RENTALS SECTION
   ========================================= */
.rentals {
    background: linear-gradient(180deg, var(--cream) 0%, #f0ece0 100%);
}

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

.rental-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rental-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 43, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.rental-card:hover .card-overlay {
    opacity: 1;
}

.view-details {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-details {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-details > ul {
    overflow: hidden;
}

.rental-card.expanded .card-details {
    grid-template-rows: 1fr;
    padding: 1rem 0;
}

.card-details ul {
    list-style: none;
    text-align: left;
}

.card-details li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-marker {
    color: var(--gold);
    font-size: 0.6rem;
}

.expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.expand-btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

.expand-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.rental-card.expanded .expand-icon {
    transform: rotate(45deg);
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery {
    background: var(--navy-deep);
    padding-bottom: 8rem;
}

.gallery .section-label,
.gallery .section-title {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 43, 0.9) 0%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* =========================================
   WHY US SECTION
   ========================================= */
.why-us {
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
}

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

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.7;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, #f0ece0 100%);
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.quote-mark {
    font-family: var(--font-elegant);
    font-size: 5rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-elegant);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
}

.author-event {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy);
    opacity: 0.3;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.nav-dot.active,
.nav-dot:hover {
    opacity: 1;
    background: var(--gold);
    transform: scale(1.2);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    background: var(--cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(26, 26, 78, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question {
    background: var(--navy);
    color: var(--white);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
    background: rgba(212, 175, 55, 0.05);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    position: relative;
    background: var(--navy-deep);
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    opacity: 0.5;
}

.contact-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.contact-card a,
.contact-card p {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-card a:hover {
    color: var(--gold);
    opacity: 1;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition-smooth);
}

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

.social-link:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    align-self: start;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    margin: 0;
    padding: 1.25rem 0 0.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    top: 1.25rem;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.6;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.25rem;
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 1;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.btn-submit {
    grid-column: span 2;
    justify-content: center;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 1.25rem 3rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--navy-deep);
    padding: 3rem 5%;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 8px;
}

.footer-tagline {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.footer-location {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.4;
}

/* =========================================
   BOOK NOW CTA BUTTONS
   ========================================= */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-light:hover {
    background: var(--white);
    color: var(--navy-deep);
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--navy-deep);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
    animation: pulse-float 2s ease-in-out infinite;
}

.floating-cta:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.floating-cta-icon {
    font-size: 1.3rem;
}

@keyframes pulse-float {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7);
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 200px);
    }

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

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .social-links {
        grid-column: span 3;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--navy-deep);
        padding: 2rem;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

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

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

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

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .rentals-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    .gallery-item,
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

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

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .stars {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .social-links {
        grid-column: span 1;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .btn-submit {
        grid-column: span 1;
    }

    /* Floating CTA - mobile */
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .floating-cta-text {
        display: none;
    }

    .floating-cta {
        padding: 1rem;
        border-radius: 50%;
    }

    .floating-cta-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 4rem 4%;
    }

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

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

    .testimonial-text {
        font-size: 1.1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

/* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.rentals-grid .rental-card:nth-child(1) { transition-delay: 0.1s; }
.rentals-grid .rental-card:nth-child(2) { transition-delay: 0.2s; }
.rentals-grid .rental-card:nth-child(3) { transition-delay: 0.3s; }
.rentals-grid .rental-card:nth-child(4) { transition-delay: 0.4s; }

.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.35s; }

/* Smooth page transitions */
.page-transition {
    animation: pageIn 0.5s ease-out;
}

@keyframes pageIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
