/*
Theme Name: Hen Parties
Theme URI: http://example.com/hen-parties
Author: Antigravity
Author URI: http://example.com
Description: A custom theme for Hen Parties based on a specific design.
Version: 1.0
Text Domain: henparties
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #ff54a1;
    --text-color: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --pink-gradient: linear-gradient(135deg, #D91A7D 0%, #DE1D82 7.14%, #E42087 14.29%, #E9238B 21.43%, #EF2690 28.57%, #F42995 35.71%, #FA2B9A 42.86%, #FF2E9F 50%, #FF36A0 60%, #FF3DA1 70%, #FF44A1 80%, #FF49A2 90%, #FF4FA3 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--pink-gradient);
    -webkit-font-smoothing: antialiased;
}

/* Header / Navigation */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    position: absolute;
    top: 37px; /* Sits perfectly below the 37px top-bar */
    left: 0;
    width: 100%;
    z-index: 99999;
}

/* Home Page Header */
.header-home {
    background-color: #E279BA; /* Solid pink matching Image 1 */
}

.logo-home {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.logo-img-home {
    height: 90px;
    margin-right: 15px;
}

.logo-text svg {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* Inner Page Header */
.header-inner {
    background-color: #F8D1E6; /* Light pastel pink matching Image 3 */
}

.logo-inner {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ff2e9f;
    font-size: 24px;
    font-weight: 700;
}

.sparkle-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

/* Navigation Links */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-nav ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 25px;
}

/* Home Page Nav Links */
.header-home .main-nav ul li a {
    color: #fff;
}

.header-home .main-nav ul li a.active,
.header-home .main-nav ul li a:hover {
    background-color: #FF5EAF; /* Lighter pink active background */
    color: #fff;
}

/* Inner Page Nav Links */
.header-inner .main-nav ul li a {
    color: #d12c7d;
}

.header-inner .main-nav ul li a.active,
.header-inner .main-nav ul li a:hover {
    background-color: #d12c7d;
    color: #fff;
}



/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using a placeholder party image from unsplash */
    background-image: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* A gradient combining purple and pink */
    background: var(--pink-gradient);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin-top: 40px;
}

.hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-icons svg {
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 85px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: 500;
    padding: 0 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-white {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-white svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.btn-pink {
    background: var(--pink-gradient);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-pink span {
    margin-left: 8px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 35px;
    background-color: #ffffff;
    border-radius: 10px;
}

/* Sparkles Decoration */
.sparkles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sparkle {
    position: absolute;
}

/* Using SVG for the background sparkles */
.sparkle svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(255,255,255,0.7);
    stroke-width: 1;
}

.s1 { top: 12%; left: 10%; width: 40px; height: 40px; }
.s2 { top: 48%; left: 8%; width: 20px; height: 20px; opacity: 0.5; }
.s3 { top: 68%; left: 16%; width: 30px; height: 30px; opacity: 0.8; }
.s4 { top: 22%; right: 15%; width: 25px; height: 25px; }
.s5 { top: 78%; right: 12%; width: 30px; height: 30px; opacity: 0.6; }
.s6 { top: 56%; right: 6%; width: 18px; height: 18px; }
/* Hen Haven Section */
.hen-haven {
    background-image: var(--pink-gradient);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hen-haven-icon {
    display: inline-block;
    margin-bottom: 20px;
}

.hen-haven-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

.hen-haven h2 {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hen-haven > p {
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.card-icon {
    background-color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    color: #ff54a1;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.feature-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    display: flex;
    gap: 5px;
}

.feature-decoration svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Packages Section */
.packages-section {
    background: var(--pink-gradient);
    padding: 40px 20px;
    position: relative;
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-header h2 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.packages-header p {
    font-size: 16px;
    font-weight: 500;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.package-card {
    background-color: #ffe5f0;
    border-radius: 20px;
    overflow: hidden;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.package-image {
    position: relative;
    height: 200px;
    width: 100%;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.package-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    z-index: 2;
}

.package-content {
    padding: 25px;
}

.package-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #d12c7d;
}

.package-title-row h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.package-title-row svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.package-content > p {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 40px;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 15px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.package-meta span {
    display: flex;
    align-items: center;
}

.package-meta svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    fill: currentColor;
}

.packages-footer {
    text-align: center;
}
.packages-footer .btn-white {
    color: #ff54a1;
}

/* Activities Section */
.activities-section {
    background: var(--pink-gradient);
    padding: 40px 20px;
    position: relative;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.activity-icon-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Apartments Section */
.apartments-section {
    background: var(--pink-gradient);
    padding: 40px 20px;
    position: relative;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.apt-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.apt-card > a {
    cursor: pointer;
    z-index: 10;
}

.apt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apt-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.apt-price {
    color: #cc2b7a;
    font-size: 13px;
    padding: 6px 12px;
}

.apt-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    color: #fff;
    z-index: 2;
}

.apt-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.apt-info p {
    font-size: 13px;
    opacity: 0.95;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    background: var(--pink-gradient);
    padding: 40px 20px;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 3px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ffe6f3;
    padding: 40px 20px;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 25px rgba(255,106,177,0.15);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: serif;
    font-size: 60px;
    color: #ffe6f3;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #ffe6f3;
    padding-top: 15px;
}

.author-icon {
    width: 30px;
    height: 30px;
    background-color: #ff54a1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.author-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #d12c7d;
    font-size: 16px;
}

.testimonial-sparkle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #ffb3d9;
}

/* Contact Section */
.contact-section {
    background: var(--pink-gradient);
    padding: 40px 20px;
    position: relative;
}

.contact-section .packages-header h2,
.contact-section .packages-header p {
    color: #fff;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 30px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    background-color: #fff0f7;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 15px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff54a1;
}

.btn-submit {
    background: var(--pink-gradient);
    color: #fff;
    width: 100%;
    border-radius: 30px;
    padding: 15px;
    font-size: 16px;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255,75,152,0.3);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    box-shadow: 0 15px 25px rgba(255,75,152,0.4);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background-color: #d80b67;
    color: #fff;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 1.5;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.brand-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 0.7;
}

.contact-col ul li svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255,255,255,0.3);
}

.social-icons svg {
    width: 16px;
    height: 16px;
}

.social-col p {
    font-size: 13px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}

/* Packages Page */
.packages-page-hero {
    background: var(--pink-gradient);
    padding: 120px 20px 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detailed-packages-section {
    background: var(--pink-gradient);
    padding: 60px 20px;
    position: relative;
}

.detailed-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-package-card {
    background-color: #ffe6f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(209,44,125,0.2);
    display: flex;
    flex-direction: column;
}

.dp-image {
    position: relative;
    height: 250px;
}

.dp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dp-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.dp-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
}

.dp-image-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
}

.dp-image-content p {
    font-size: 14px;
    opacity: 0.9;
}

.dp-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-meta {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(209,44,125,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.package-meta span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
}

.package-meta span svg {
    width: 16px;
    height: 16px;
    fill: #d12c7d;
    margin-right: 6px;
}

.dp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.dp-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.dp-features li svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}

.dp-view-btn {
    font-family: var(--font-heading);
    color: #d12c7d;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.dp-view-btn:hover {
    color: #ff54a1;
}

.packages-cta {
    background: var(--pink-gradient);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

/* Activities Page */
.detailed-activities-section {
    background: var(--pink-gradient);
    padding: 80px 20px;
    position: relative;
}

.detailed-activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.detailed-activity-card {
    background-color: #ffe6f3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255,84,161,0.2);
    display: flex;
    flex-direction: column;
}

.da-image {
    position: relative;
    height: 220px;
}

.da-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.da-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
}

.da-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
}

.da-image-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin: 0;
}

.da-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.da-details p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.da-meta {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.da-meta svg {
    width: 14px;
    height: 14px;
    fill: #d12c7d;
    margin-right: 5px;
}

.da-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #d12c7d;
    font-size: 18px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.da-view-btn {
    font-family: var(--font-heading);
    color: #cc2b7a;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.da-view-btn:hover {
    color: #ff4b98;
}

/* Responsive */
@media (max-width: 1200px) {
    .apartments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detailed-activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 60px; }
    .hero p { font-size: 18px; }
}

@media (max-width: 768px) {
    .detailed-packages-grid {
        grid-template-columns: 1fr;
    }
    .detailed-activities-grid {
        grid-template-columns: 1fr;
    }
    .package-meta {
        flex-direction: column;
        gap: 10px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 45px;
    }
    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ===== GLOBAL ICON ANIMATIONS ===== */
@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(15deg); }
}

@keyframes floatGlass {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Apply to SVGs inside hero icons across the site */
.hero-icons svg:nth-child(1), .hero-icons svg:nth-child(3),
.gal-hero-icons svg:nth-child(1), .gal-hero-icons svg:nth-child(3),
.act-cta-icons svg:nth-child(1), .act-cta-icons svg:nth-child(3),
.apt-hero-icons svg:nth-child(1), .apt-hero-icons svg:nth-child(3),
.enq-hero-icons svg:nth-child(1), .enq-hero-icons svg:nth-child(3) {
    animation: twinkle 3s ease-in-out infinite;
    transform-origin: center;
}

.hero-icons svg:nth-child(2),
.gal-hero-icons svg:nth-child(2),
.act-cta-icons svg:nth-child(2),
.apt-hero-icons svg:nth-child(2),
.enq-hero-icons svg:nth-child(2) {
    animation: floatGlass 4s ease-in-out infinite;
}

/* Apply to floating background elements */
.sparkle svg, .gal-sp, .esp, .gsp, .apt-dsp, .act-sp {
    animation: twinkle 3s ease-in-out infinite;
    transform-origin: center;
}

/* Apply staggered delays so they don't all twinkle at once */
.sparkle.s1 svg, .esp.e1, .gsp.gs1, .apt-dsp.dsp1, .act-sp.sp1 { animation-delay: 0s; }
.sparkle.s2 svg, .esp.e2, .gsp.gs2, .apt-dsp.dsp2, .act-sp.sp2 { animation-delay: 0.5s; }
.sparkle.s3 svg, .esp.e3, .gsp.gs3, .apt-dsp.dsp3, .act-sp.sp3 { animation-delay: 1s; }
.sparkle.s4 svg, .esp.e4, .gsp.gs4, .apt-dsp.dsp4, .act-sp.sp4 { animation-delay: 1.5s; }
.sparkle.s5 svg, .esp.e5, .gsp.gs5, .apt-dsp.dsp5, .act-sp.sp5 { animation-delay: 0.7s; }
.sparkle.s6 svg, .esp.e6, .gsp.gs6, .apt-dsp.dsp6, .act-sp.sp6 { animation-delay: 1.2s; }

/* Apply to heart icons */
.apt-heart, .heart-icon, .gal-heart {
    animation: pulseHeart 2s ease-in-out infinite;
    display: inline-block;
}

/* =========================================
   TOP CONTACT BAR
========================================= */
.top-bar {
    background: var(--pink-gradient);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    width: 100%;
    z-index: 10000;
    position: relative;
}
.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-contact, .top-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-contact a, .top-action a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}
.top-contact a:hover {
    color: #ffd6e7;
}
.top-whatsapp-btn {
    color: #fff !important;
    font-weight: 700;
}
.top-whatsapp-btn:hover {
    color: #ffd6e7 !important;
}

@media (max-width: 768px) {
    .top-bar-container {
        justify-content: center;
        text-align: center;
    }
    .top-email {
        display: none; /* Hide email on small screens to save space */
    }
}

/* =========================================
   HEADER & NAVIGATION
========================================= */

/* =========================================
   PACKAGE DETAILS PAGE
========================================= */
.pkg-detail-page {
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.pkg-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.pkg-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.pkg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.pkg-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    color: #d12c7d;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: -80px;
    left: 20px;
    transition: all 0.3s ease;
}
.pkg-back-btn:hover {
    background: white;
    transform: translateY(-2px);
}
.pkg-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.pkg-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.pkg-hero-price {
    display: inline-block;
    background: white;
    color: #d12c7d;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Main Content Grid */
.pkg-main-content {
    padding: 60px 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.pkg-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left Column Cards */
.pkg-left-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.pkg-glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.pkg-glass-card h2 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 25px;
    font-size: 26px;
    display: flex;
    align-items: center;
}

/* Overview Grid */
.pkg-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.overview-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview-text span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 3px;
}
.overview-text strong {
    display: block;
    font-size: 16px;
}

/* Included List */
.pkg-included-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.pkg-included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.check-circle {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pkg-description {
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
}

/* Right Column Floating Card */
.pkg-floating-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}
.floating-price-box {
    background: #d12c7d;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(209,44,125,0.3);
}
.floating-price-box h3 {
    font-size: 40px;
    margin-bottom: 5px;
}
.floating-price-box p {
    font-size: 14px;
    opacity: 0.9;
}
.floating-meta {
    margin-bottom: 25px;
}
.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.meta-row:last-child {
    border-bottom: none;
}
.meta-label {
    font-weight: 600;
}
.meta-val {
    font-weight: 700;
}
.btn-book-package {
    display: block;
    width: 100%;
    background: white;
    color: #d12c7d;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn-book-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.floating-contact h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}
.floating-contact p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}
.c-method {
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Related Packages Section */
.pkg-related-section {
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}
.related-header {
    text-align: center;
    margin-bottom: 40px;
}
.related-header h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 36px;
    margin-top: 15px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: block;
}
.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.related-img-box {
    position: relative;
    height: 200px;
}
.related-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: #d12c7d;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}
.related-card-content {
    padding: 25px;
}
.related-card-content h3 {
    font-family: var(--font-heading);
    color: #d12c7d;
    font-size: 20px;
    margin-bottom: 10px;
}
.related-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }
    .pkg-overview-grid {
        grid-template-columns: 1fr;
    }
    .pkg-included-list {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
    .pkg-hero-content h1 {
        font-size: 40px;
    }
}

.package-card { position: relative; }
.package-card:hover .card-link { z-index: 10; }


/* =========================================
   ACTIVITY DETAILS PAGE
========================================= */
.act-detail-page {
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.act-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.act-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.act-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.act-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    color: #d12c7d;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: -80px;
    left: 20px;
    transition: all 0.3s ease;
}
.act-back-btn:hover {
    background: white;
    transform: translateY(-2px);
}
.act-hero-badge {
    position: absolute;
    top: -80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.act-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.act-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.act-hero-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.act-hero-price {
    display: inline-block;
    background: white;
    color: #d12c7d;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.act-hero-duration {
    font-size: 18px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Main Content Grid */
.act-main-content {
    padding: 60px 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.act-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left Column Cards */
.act-left-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.act-glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.act-glass-card h2 {
    font-family: var(--font-heading);
    color: #d12c7d;
    margin-bottom: 25px;
    font-size: 26px;
    display: flex;
    align-items: center;
}
.act-glass-card:nth-child(2) h2 { color: #d12c7d; }
.act-glass-card:nth-child(3) h2 { color: #d12c7d; }

.act-description {
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
}

/* Included List */
.act-included-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.act-included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Good to Know List */
.good-to-know-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gtk-item {
    display: flex;
    gap: 15px;
}
.gtk-icon {
    margin-top: 2px;
}
.gtk-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: white;
}
.gtk-content p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Right Column Floating Card */
.act-floating-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}
.act-floating-card .floating-price-box {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: none;
}
.act-floating-card .floating-price-box h3 {
    font-size: 36px;
    margin-bottom: 5px;
}
.act-floating-card .floating-duration {
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

.floating-quick-info {
    margin-bottom: 25px;
}
.floating-quick-info h4 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: white;
}
.quick-info-list {
    list-style: none;
    padding: 0;
}
.quick-info-list li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn-book-activity {
    display: block;
    width: 100%;
    background: white;
    color: #d12c7d;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.btn-book-activity:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Related Activities Section */
.act-related-section {
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}
.act-related-section .related-header h2 {
    color: white;
}
.act-card-icon-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.related-act-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
    font-weight: bold;
    color: #d12c7d;
}
.related-act-meta .rel-duration {
    color: #666;
    font-weight: 500;
}

/* RESPONSIVENESS (Mobile/Tablet) */
@media (max-width: 991px) {
    .act-grid { grid-template-columns: 1fr; }
    .act-included-list { grid-template-columns: 1fr; }
    .act-floating-card { position: static; margin-top: 30px; }
    .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .act-hero-content h1 { font-size: 36px; }
    .act-hero-content p { font-size: 16px; }
    .act-hero-badge { top: -60px; right: 10px; width: 40px; height: 40px; }
    .act-back-btn { top: -60px; left: 10px; }
    .act-hero-meta-row { flex-direction: column; gap: 10px; }
    .related-grid { grid-template-columns: 1fr; }
}

/* =========================================
   ACTIVITY DETAILS PAGE
========================================= */
.act-detail-page {
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.act-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.act-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
}
.act-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}
.act-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    color: #d12c7d;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: -80px;
    left: 20px;
    transition: all 0.3s ease;
}
.act-back-btn:hover {
    background: white;
    transform: translateY(-2px);
}
.act-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.act-hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.act-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.act-hero-price {
    background: white;
    color: #d12c7d;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.act-hero-duration {
    font-size: 16px;
    font-weight: 500;
}

/* Main Content Grid */
.act-main-content {
    padding: 60px 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.act-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left Column Cards */
.act-left-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.act-glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.act-glass-card h2 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 25px;
    font-size: 26px;
    display: flex;
    align-items: center;
}
.act-description {
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255,255,255,0.95);
}

/* Included List */
.act-included-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.act-included-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.act-check-circle {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Good to Know List */
.act-good-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.good-item {
    display: flex;
    gap: 15px;
}
.good-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.good-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}
.good-text p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Right Column Floating Card */
.act-floating-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}
.act-floating-price-box {
    background: #d12c7d;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(209,44,125,0.3);
}
.act-floating-price-box h3 {
    font-size: 40px;
    margin-bottom: 5px;
}
.act-floating-price-box p {
    font-size: 14px;
    opacity: 0.9;
}
.act-quick-info {
    margin-bottom: 25px;
}
.act-quick-info h4 {
    font-size: 16px;
    margin-bottom: 15px;
}
.act-quick-info ul {
    list-style: none;
    padding: 0;
}
.act-quick-info ul li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}
.act-btn-book {
    display: block;
    width: 100%;
    background: white;
    color: #d12c7d;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.act-btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.act-floating-contact h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}
.act-floating-contact p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.9;
}
.act-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.act-c-method {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Related Activities Section */
.act-related-section {
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}
.act-related-header {
    text-align: center;
    margin-bottom: 40px;
}
.act-related-header h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 36px;
    margin-top: 15px;
}
.act-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.act-related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: block;
}
.act-related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.act-related-img-box {
    position: relative;
    height: 200px;
}
.act-related-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.act-related-card-content {
    padding: 25px;
}
.act-related-card-content h3 {
    font-family: var(--font-heading);
    color: #d12c7d;
    font-size: 20px;
    margin-bottom: 5px;
}
.act-related-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}
.act-related-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}
.act-related-meta .price {
    color: #d12c7d;
}

@media (max-width: 991px) {
    .act-grid {
        grid-template-columns: 1fr;
    }
    .act-included-list {
        grid-template-columns: 1fr;
    }
    .act-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .act-related-grid {
        grid-template-columns: 1fr;
    }
    .act-hero-content h1 {
        font-size: 40px;
    }
    .act-hero-meta {
        flex-direction: column;
        gap: 15px;
    }
}

.detailed-activity-card { position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.detailed-activity-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }


/* Fix back buttons */
.act-back-btn, .dp-back-btn { z-index: 9999 !important; pointer-events: auto !important; }
.act-hero-content, .packages-header { z-index: 999 !important; }


/* =========================================
   APARTMENT DETAILS PAGE
========================================= */
.apt-detail-page {
    background: var(--pink-gradient);
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.apt-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    padding-bottom: 60px;
}
.apt-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.apt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}
.apt-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    color: #d12c7d;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: absolute;
    top: -300px;
    left: 20px;
    transition: all 0.3s ease;
    z-index: 9999 !important;
    pointer-events: auto !important;
}
.apt-back-btn:hover {
    background: white;
    transform: translateY(-2px);
}
.apt-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.apt-hero-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.apt-hero-meta-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Main Content Section */
.apt-main-content {
    padding: 60px 20px 80px;
    position: relative;
}
.apt-bg-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.aheart {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.ah1 { top: 10%; left: 10%; }
.ah2 { top: 40%; right: 5%; }
.ah3 { bottom: 20%; left: 20%; }

.apt-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.apt-left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Solid White Cards */
.apt-solid-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pink-title {
    font-family: var(--font-heading);
    color: #d12c7d;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.text-gray {
    color: #4b5563;
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 15px;
}
.text-dark {
    color: #1f2937;
}

/* Amenities List */
.apt-amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.apt-amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
    font-size: 15px;
}
.apt-check-circle {
    width: 20px;
    height: 20px;
    background: #fdf2f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* The Space Grid */
.apt-space-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.apt-space-box {
    background: #fdf2f8;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.apt-space-box svg {
    margin-bottom: 10px;
}
.space-num {
    color: #d12c7d;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}
.space-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

/* Glassmorphism Floating Booking Card */
.apt-floating-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}
.apt-floating-price-box {
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
}
.apt-floating-price-box::after {
    content: '?';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
}
.apt-floating-price-box h3 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 800;
}
.apt-floating-price-box p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}
.apt-booking-fees {
    margin-bottom: 25px;
    font-size: 13px;
}
.fee-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    opacity: 0.9;
}
.apt-btn-book {
    display: block;
    width: 100%;
    background: #ffffff;
    color: #d12c7d;
    text-align: center;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.apt-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.apt-floating-contact h4 {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.apt-floating-contact p {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 15px;
}
.apt-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.apt-c-method {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

/* Related Apartments */
.apt-related-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    position: relative;
    z-index: 2;
}
.apt-related-header {
    text-align: center;
    margin-bottom: 40px;
}
.apt-related-header h2 {
    font-family: var(--font-heading);
    color: #d12c7d;
    font-size: 32px;
}
.apt-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.apt-related-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: block;
}
.apt-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.apt-related-img-box {
    height: 220px;
    position: relative;
}
.apt-related-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.apt-related-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    color: #d12c7d;
    font-size: 13px;
}
.apt-related-card-content {
    padding: 25px;
}
.apt-related-card-content h3 {
    font-family: var(--font-heading);
    color: #d12c7d;
    font-size: 20px;
    margin-bottom: 8px;
}
.apt-related-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.5;
}
.apt-related-meta {
    font-size: 13px;
    color: #4b5563;
    font-weight: 500;
}

@media (max-width: 991px) {
    .apt-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .apt-hero-content h1 {
        font-size: 40px;
    }
    .apt-hero-meta-row {
        flex-direction: column;
        gap: 10px;
    }
    .apt-amenities-list {
        grid-template-columns: 1fr;
    }
    .apt-space-grid {
        grid-template-columns: 1fr;
    }
    .apt-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix back buttons positioning and styling across all templates */
.dp-back-btn, .act-back-btn, .apt-back-btn { 
    position: absolute !important; 
    top: 15px !important; 
    left: -110px !important; 
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255,255,255,0.9) !important;
    color: #d12c7d !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important; 
    pointer-events: auto !important; 
}
.dp-back-btn:hover, .act-back-btn:hover, .apt-back-btn:hover {
    background: white !important;
    transform: translateY(-2px) !important;
}
.packages-page-hero, .pkg-hero, .act-hero, .apt-hero { position: relative; }
.act-hero-content, .pkg-hero-content, .apt-hero-content { display: inline-block; text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; padding: 0 20px; }

@media (max-width: 991px) {
    .dp-back-btn, .act-back-btn, .apt-back-btn {
        top: -50px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}



/* Hero Slider Arrows */
.hero-nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; color: #d12c7d; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: all 0.3s ease; }
.hero-nav-arrow:hover { background: #ffffff; transform: translateY(-50%) scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.prev-arrow { left: 30px; }
.next-arrow { right: 30px; }


/* Fix home page hero overlay to match image 1 */
.hero-overlay { background: linear-gradient(135deg, rgba(162, 28, 175, 0.6) 0%, rgba(219, 39, 119, 0.7) 100%) !important; }

/* WordPress Content & Image Grid Styling */
.act-description, .pkg-description, .apt-description {
    line-height: 1.8;
    color: #ffffff; /* User requested white text */
}

.act-description p, .pkg-description p, .apt-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Base Image Styling */
.act-description img, .pkg-description img, .apt-description img,
.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    display: block;
}

/* WordPress Native Gallery (Classic Editor) */
.gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 15px !important;
    margin: 25px 0 !important;
}

.gallery .gallery-item {
    margin: 0 !important;
    width: 100% !important;
}

.gallery .gallery-icon img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* WordPress Gutenberg Gallery Block */
.wp-block-gallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 15px !important;
    margin: 25px 0 !important;
    padding: 0 !important;
}

.wp-block-gallery .wp-block-image {
    margin: 0 !important;
    width: 100% !important;
}

.wp-block-gallery .wp-block-image img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin: 0 !important;
}

/* Strict 2-Column Grid for Content Images */
.act-description, .pkg-description, .apt-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.act-description > *:not(.wp-block-image):not(img):not(figure),
.pkg-description > *:not(.wp-block-image):not(img):not(figure),
.apt-description > *:not(.wp-block-image):not(img):not(figure) {
    grid-column: 1 / -1; /* Text spans full width */
}

.act-description > .wp-block-image, .act-description > img, .act-description > figure.wp-block-image,
.pkg-description > .wp-block-image, .pkg-description > img, .pkg-description > figure.wp-block-image,
.apt-description > .wp-block-image, .apt-description > img, .apt-description > figure.wp-block-image {
    grid-column: span 1; /* Images take half width */
    margin: 0;
}

.act-description img, .pkg-description img, .apt-description img {
    width: 100%;
    height: 250px !important; /* Force exact same height for all (fixed card size) */
    object-fit: cover !important; /* Image fills the entire card */
    border-radius: 16px !important; /* Nice round curved borders */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* Slight shadow to make it pop */
}

/* Custom Mosaic Gallery for Apartments */
.apt-mosaic-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}
.apt-mosaic-gallery .mosaic-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.apt-mosaic-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Default: if 3 items, make the first one full width, next two half width */
.apt-mosaic-gallery .item-1:first-child:nth-last-child(3) {
    grid-column: 1 / -1;
    height: 300px;
}
.apt-mosaic-gallery .item-2:nth-child(2):nth-last-child(2) {
    height: 200px;
}
.apt-mosaic-gallery .item-3:last-child {
    height: 200px;
}
/* Fallback if only 2 items */
.apt-mosaic-gallery .item-1:first-child:nth-last-child(2),
.apt-mosaic-gallery .item-2:last-child {
    grid-column: span 1;
    height: 250px;
}
/* Fallback if only 1 item */
.apt-mosaic-gallery .item-1:first-child:last-child {
    grid-column: 1 / -1;
    height: 350px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================================== */

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 25px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: white;
    margin: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Base Responsive Rules (Tablets max-width: 991px) */
@media (max-width: 991px) {
    /* Header & Navigation */
    .site-header {
        padding: 10px 20px !important;
        top: 37px !important; /* Position below top contact bar */
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: auto !important;
    }
    
    .logo-home, .logo-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
    }
    
    .logo-img-home {
        height: 65px !important;
        margin-right: 10px !important;
    }
    
    .logo-text {
        font-size: 16px !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        padding: 10px !important;
    }
    
    .main-nav {
        position: fixed !important;
        top: 85px !important; /* Slightly overlaps header to remove gap */
        right: -100% !important;
        width: 80% !important;
        max-width: 320px !important;
        height: auto !important;
        min-height: 50vh !important;
        background: var(--pink-gradient) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        z-index: 100000 !important;
        transition: right 0.4s ease !important;
        padding-top: 30px !important;
        padding-bottom: 40px !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-bottom-left-radius: 20px !important;
    }
    
    .main-nav.mobile-active {
        right: 0 !important;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 20px !important;
        width: 100% !important;
    }
    
    .main-nav ul li {
        width: 100% !important;
    }
    
    .main-nav ul li a {
        font-size: 18px !important;
        color: white !important;
        display: block !important;
        padding: 12px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        border-radius: 25px !important;
        transition: all 0.3s ease !important;
    }
    
    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background-color: rgba(255, 255, 255, 0.2) !important;
        color: white !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
        background-color: white !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
        background-color: white !important;
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center !important;
    }
    
    .footer-col {
        width: 100% !important;
    }
    
    .footer-col ul {
        align-items: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Typography Adjustments */
    .hero-title, .hero-title-large, .pkg-hero-title, .act-hero h1, .apt-hero h1 {
        font-size: 40px !important;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 18px !important;
    }

    /* Home Page */
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons, .hero-cta {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-images {
        display: none; /* Hide complex overlapping images on mobile */
    }
    
    .packages-grid, .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* Archive Grids (Packages, Activities, Apartments) */
    .pkg-grid-container {
        grid-template-columns: 1fr;
    }
    
    .act-grid-container {
        grid-template-columns: 1fr;
    }
    
    .apt-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .apt-card-solo {
        grid-column: auto;
    }

    /* Detail Pages (single-*.php) */
    .dp-container {
        grid-template-columns: 1fr;
    }
    
    .act-detail-page .act-container {
        grid-template-columns: 1fr;
    }
    
    .apt-detail-page .apt-container {
        grid-template-columns: 1fr;
    }

    /* Fix Hero Overlay & Padding on Detail Pages */
    .dp-hero, .act-hero, .apt-hero {
        min-height: 300px;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .dp-back-btn, .act-back-btn, .apt-back-btn {
        top: 20px !important; /* Move above mobile menu if possible, or hide */
        left: 20px !important;
    }
    
    .dp-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Content Layout Adjustments */
    .act-description, .pkg-description, .apt-description {
        grid-template-columns: 1fr; /* Stack images and text */
    }
    
    .act-description > .wp-block-image, .act-description > img, .act-description > figure.wp-block-image,
    .pkg-description > .wp-block-image, .pkg-description > img, .pkg-description > figure.wp-block-image,
    .apt-description > .wp-block-image, .apt-description > img, .apt-description > figure.wp-block-image {
        grid-column: 1 / -1; /* Images take full width on mobile */
        height: auto !important; /* Auto height to prevent stretching */
        max-height: 300px;
    }
}

/* Global fix for Apartment Cards to prevent blue links */
.apt-card {
    text-decoration: none !important;
    color: inherit;
    display: block;
}
.apt-card h3 {
    color: #333 !important;
    text-decoration: none;
}
.apt-card-meta {
    color: #666;
}

/* Guarantee Pink Gradient Background on all Details Pages */
.pkg-detail-page, .act-detail-page, .apt-detail-page {
    background: var(--pink-gradient) !important;
    position: relative;
    overflow-x: hidden;
}

/* Ensure Related Cards are Gorgeous, Visible and Highly Legible (No White-on-White, No Browser Blue Links) */
.related-card, .act-related-card, .apt-related-card {
    background: #ffffff !important;
    color: #333333 !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    display: block !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.related-card:hover, .act-related-card:hover, .apt-related-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

.related-card-content h3, .act-related-card-content h3, .apt-related-card-content h3 {
    color: #d12c7d !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 10px !important;
}

.related-card-content p, .act-related-card-content p, .apt-related-card-content p, .act-related-sub, .apt-related-sub {
    color: #555555 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.related-price-badge, .apt-related-price-badge {
    background: rgba(255,255,255,0.9) !important;
    color: #d12c7d !important;
    font-weight: bold !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
}


/* ==========================================================================
   PREMIUM GLASSMORPHIC REDESIGN & RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* 1. Dynamic Gradient Highlight */
.highlight-gradient {
    background: linear-gradient(45deg, #FF2E9F, #FFD000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

/* 2. Top Contact Bar Redesign - Pink Theme System */
.top-bar {
    background: var(--pink-gradient) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0 !important;
}

.top-contact a, 
.top-action a {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 6px 16px !important;
    border-radius: 30px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.top-contact a:hover, 
.top-action a:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.top-contact a svg, 
.top-action a svg {
    stroke-width: 2px;
}

/* Special Green WhatsApp Capsule */
.top-action .top-whatsapp-btn {
    background: rgba(0, 230, 118, 0.08) !important;
    border: 1px solid #00E676 !important;
    color: #00E676 !important;
    font-weight: 600 !important;
}

.top-action .top-whatsapp-btn:hover {
    background: rgba(0, 230, 118, 0.18) !important;
    border-color: #00ff88 !important;
    color: #00ff88 !important;
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.25);
}

/* 3. Floating Glassmorphic Header Capsule */
.site-header.header-home {
    background: linear-gradient(135deg, rgba(209, 44, 125, 0.95), rgba(176, 32, 106, 0.95)) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    transform: none !important;
    top: 0 !important;
    padding: 12px 40px !important;
    box-shadow: 0 15px 35px rgba(209, 44, 125, 0.3) !important;
    transition: all 0.3s ease !important;
}

.site-header.header-home:hover {
    background: linear-gradient(135deg, rgba(209, 44, 125, 0.98), rgba(176, 32, 106, 0.98)) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Logo Text Stack Styling */
.logo-text-stack {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
    font-family: var(--font-body);
}

.logo-line-1 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff !important;
}

.logo-line-2 {
    font-size: 24px;
    font-weight: 700;
    color: #ff54a1 !important;
    margin-top: 0;
    letter-spacing: 0.5px;
}

/* Inner Page Logo text styling */
.logo-inner .logo-line-1 { color: #d12c7d !important; }
.logo-inner .logo-line-2 { color: #ff54a1 !important; }

/* 4. Navigation Link Glass Hover System */
.header-home .main-nav ul li a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 10px 22px !important;
    border-radius: 25px !important;
    transition: all 0.25s ease !important;
    border: 1px solid transparent !important;
}

.header-home .main-nav ul li a:hover,
.header-home .main-nav ul li a.active {
    background: var(--pink-gradient) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

/* 5. Mobile Menu Toggle Redesign */
.mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    padding: 8px 12px !important;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease !important;
    gap: 4px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* 6. Hero Dynamic Height & Buttons Overlap Fix */
.hero {
    min-height: 100vh !important;
    height: auto !important;
    padding: 180px 20px 100px 20px !important; /* Spacious padding to clear floating header */
}

.hero h1 {
    font-size: 80px !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 25px !important;
}

.hero p {
    font-size: 22px !important;
    max-width: 750px !important;
    margin: 0 auto 35px auto !important;
}

/* Hero CTA Capsules */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.hero-buttons .btn {
    padding: 16px 44px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-buttons .btn-pink {
    background: linear-gradient(135deg, #FF2E9F 0%, #D91A7D 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(255, 46, 159, 0.35) !important;
    border: none !important;
}

.hero-buttons .btn-pink:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(255, 46, 159, 0.5) !important;
    filter: brightness(1.08);
}

.hero-buttons .btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.75) !important;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1) !important;
}

/* 7. Floating WhatsApp Widget */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.floating-whatsapp-widget:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    background-color: #22c35e;
}

.floating-whatsapp-widget svg {
    width: 30px;
    height: 30px;
}

/* 8. Apartment Card styling & Text legibility fixes */
.apt-card {
    text-decoration: none !important;
    color: #ffffff !important;
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apt-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.apt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.apt-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.apt-card:hover img {
    transform: scale(1.05);
}

.apt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%) !important;
    z-index: 1;
}

.apt-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #d12c7d !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.apt-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px !important;
    color: #ffffff !important;
    z-index: 2;
}

.apt-info h3 {
    font-family: var(--font-heading) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important; /* MUST BE WHITE FOR LEGIBILITY OVER DARK OVERLAY */
    margin-bottom: 8px !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    text-decoration: none !important;
}

.apt-info p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    margin: 0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Make sure .apartments-grid layout works with 4 columns */
.apartments-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS OVERRIDES (CRITICAL LAYOUT STABILITY)
   ========================================================================= */

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 1200px) {
    .apartments-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .site-header.header-home {
        position: relative !important;
        margin: 0 !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        padding: 10px 24px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .hero h1 {
        font-size: 55px !important;
    }
}

@media (max-width: 768px) {
    /* Responsive Top Bar Spacing */
    .top-bar-container {
        justify-content: center !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }
    
    .top-contact a, 
    .top-action a {
        padding: 5px 12px !important;
        font-size: 11px !important;
    }
    
    /* Header positioning */
    .site-header.header-home {
        border-radius: 0 !important;
    }
    
    .logo-img-home {
        height: 55px !important;
    }
    
    .logo-text-stack {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }
    
    .logo-line-1 { font-size: 18px !important; line-height: 1 !important; }
    .logo-line-2 { font-size: 18px !important; line-height: 1 !important; margin-top: 0 !important; }
    
    /* Mobile Hero Scroll Fix */
    .hero {
        padding: 180px 20px 60px 20px !important;
    }
    
    .hero h1 {
        font-size: 40px !important;
        margin-bottom: 20px !important;
    }
    
    .hero p {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-buttons {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn {
        width: auto !important;
        flex: 1;
        padding: 12px 10px !important;
        font-size: 11px !important;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .apartments-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .apt-card {
        height: 280px !important;
    }
}

/* User Fixes - apt card text color */
.apt-card h3, .apt-card .apt-card-meta, .apt-card .apt-card-meta span {
    color: #ffffff !important;
}

/* Nav CTA Button */
.nav-cta-item {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.nav-plan-btn {
    background: #d12c7d !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(209, 44, 125, 0.4);
    transition: all 0.3s ease !important;
}
.nav-plan-btn:hover {
    background: #ff54a1 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 44, 125, 0.6);
}

@media (max-width: 991px) {
    .nav-cta-item {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }
    .nav-plan-btn {
        width: 80%;
        text-align: center;
        padding: 15px !important;
    }
}

/* Desktop Nav Responsiveness Fix */
@media (min-width: 992px) and (max-width: 1400px) {
    .main-nav ul {
        gap: 10px !important;
    }
    .header-home .main-nav ul li a,
    .header-inner .main-nav ul li a {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
    .nav-plan-btn {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
    .nav-cta-item {
        margin-left: 5px !important;
    }
}

/* Mobile Top Bar Fixes */
@media (max-width: 768px) {
    .top-email {
        display: inline-flex !important;
    }
    .top-action {
        justify-content: center !important;
        width: 100% !important;
        gap: 15px !important;
    }
    .top-contact {
        justify-content: center !important;
        width: 100% !important;
        gap: 15px !important;
    }
}

/* Fix text wrapping issues */
.logo-text-stack {
    white-space: nowrap !important;
}

.main-nav ul li a {
    white-space: nowrap !important;
}

