/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-dark: #C19B2A;
    --black: #000000;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 64px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--black);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding-bottom: 1rem;
}

.mobile-link {
    color: var(--gold);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
    text-align: left;
}

.mobile-link:hover {
    color: var(--black);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(88, 86, 86, 0.8), rgba(12, 12, 12, 0.7), rgba(27, 32, 28, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 5rem;
    margin-top: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-secondary {
    border: 2px solid var(--gold);
    color: var(--white);
    background: rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-label {
    color: var(--black);
    font-weight: 500;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

/* Properties Section */
.properties-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

/* Brochure Section */
.brochure-section {
    padding: 5rem 0;
    background: var(--white);
}

.brochure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.brochure-preview {
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.brochure-preview:hover {
    transform: translateY(-5px);
}

.brochure-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.brochure-actions {
    display: flex;
    gap: 1rem;
}

.brochure-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
}

.download-icon {
    width: 24px;
    height: 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-icon {
    color: var(--gold);
}

.section-badge span {
    color: var(--gold);
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .properties-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1.5rem;
        height: 800px;
    }
    
    .property-card:first-child {
        grid-row: 1 / 3;
        grid-column: 1;
    }
    
    .property-card:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
    }
    
    .property-card:nth-child(3) {
        grid-row: 1;
        grid-column: 3;
    }
    
    .property-card:nth-child(4) {
        grid-row: 2;
        grid-column: 2;
    }
    
    .property-card:nth-child(5) {
        grid-row: 2;
        grid-column: 3;
    }
}

@media (min-width: 1280px) {
    .properties-grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

.property-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.6s ease forwards;
    padding: 0;
    margin: 0;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.property-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.property-card:hover .property-image {
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.property-card:hover .property-overlay {
    opacity: 0.8;
}

.property-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.featured-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.featured-badge svg {
    width: 16px;
    height: 16px;
}

.wishlist-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
    color: var(--gray-700);
}

.wishlist-btn:hover svg {
    color: var(--white);
}

.property-type-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.property-price-section {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.property-price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.property-price {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.view-btn {
    background: var(--white);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.view-btn svg {
    width: 20px;
    height: 20px;
}

.property-content {
    padding: 2rem;
}

.property-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.property-card:hover .property-title {
    color: var(--gold);
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.property-location svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.feature-value {
    color: var(--gray-900);
    font-weight: 600;
}

.feature-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.property-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-schedule {
    flex: 1;
    background: var(--gold);
    color: var(--black);
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-schedule:hover {
    background: var(--gold-dark);
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-details {
    padding: 1rem 1.5rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.02);
}

/* Virtual Site Tour Section */
.virtual-tour-section {
    padding: 2rem 0;
    background: var(--gray-50);
}

.virtual-tour-section .section-header {
    margin-bottom: 2rem;
}

.virtual-tour-section .properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .virtual-tour-section .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        height: auto;
    }
}

@media (min-width: 1024px) {
    .virtual-tour-section .properties-grid {
        height: auto;
    }
}

.video-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.video-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.video-card .property-image-container {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.property-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: var(--black);
    display: block;
}

.video-card:hover .property-video {
    transform: scale(1.02);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white), var(--gray-50), var(--white));
    position: relative;
    overflow: hidden;
}

.about-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.about-bg-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.about-para-highlighted {
    position: relative;
    padding-left: 1.5rem;
    border-left: 4px solid var(--gold);
}

.text-gold {
    color: var(--gold);
    font-weight: 600;
}

/* Subsection titles inside About / small sections */
.subsection-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.gold-title {
    color: var(--gold);
}

.amenities-list {
    margin: 0 0 1rem 1.25rem;
    color: var(--gray-700);
}

.amenities-list li {
    margin-bottom: 0.5rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    position: relative;
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.stat-box-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
}

.stat-box-content {
    display: flex;
    flex-direction: column;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.stat-value {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-text {
    color: var(--gray-700);
    font-weight: 500;
}

/* Why Choose Us */
.why-choose-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.why-choose-header svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.why-choose-header h3 {
    font-size: 2.25rem;
    color: var(--gold);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-gradient {
    opacity: 1;
}

.feature-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(to bottom right, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(6deg) scale(1.1);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--gold);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .check-icon {
    opacity: 1;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form-container,
.contact-info-box,
.social-media-box {
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--black);
    padding: 0.75rem 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.contact-item h4 {
    color: var(--black);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gold-dark);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

/* Footer */
.footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    text-align: center;
    color: var(--gray-600);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Integration Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.whatsapp-text {
    display: none;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Contact Links Styling */
.contact-link {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--gold-dark);
    text-decoration: none;
    transform: translateX(5px);
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:active {
    transform: scale(0.98);
}

/* Add WhatsApp icon indicator on hover */
.contact-link:hover::before {
    content: '💬 ';
    margin-right: 5px;
}

/* Responsive WhatsApp styles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

/* Mobile fixes for Contact section: stack columns, tighten spacing and prevent iOS auto-zoom */
@media (max-width: 600px) {
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-grid {
        display: block; /* stack */
        gap: 1.25rem;
    }

    .contact-form-container,
    .contact-info-box,
    .social-media-box {
        width: 100%;
        padding: 1rem; /* reduce padding for mobile fit */
        box-sizing: border-box;
        margin: 0 auto 1rem auto;
    }

    .contact-subtitle {
        font-size: 1.25rem;
    }

    /* Make form fields larger to prevent Safari auto-zoom on focus */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.75rem 0.75rem;
    }

    /* Reduce icon size and spacing to fit narrow widths */
    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-item {
        gap: 0.75rem;
    }

    /* Ensure boxes full width without extra borders causing overflow */
    .contact-form-container,
    .contact-info-box {
        border-left: none;
        border-right: none;
    }

    /* Make section header and content fit neatly */
    .section-header {
        margin-bottom: 1.5rem;
    }

    /* Avoid horizontal scroll caused by wide hero overlay or fixed elements */
    html, body {
        overflow-x: hidden;
    }
}
