:root {
    --bg-cream: #FCFAF5;
    --bg-cream-alt: #F4EFE6;
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    --text-main: #2C3329;
    --text-muted: #5C6656;
    --white: #FFFFFF;

    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.08);

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 24px;
    --border-radius-pill: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.text-gold {
    color: var(--gold-primary);
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Navigation - transparent style */
.navbar.relative-transparent {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 100;
    transition: var(--transition-smooth);
    animation: navBounce 3s ease-in-out infinite;
}

@keyframes navBounce {

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

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

.navbar.relative-transparent.scrolled {
    top: 0.5rem;
    animation: none;
    /* Stop bounce when scrolling down to maintain usability */
}

.nav-container.blur-transparent {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius-pill);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-gold {
    color: var(--gold-primary);
}

/* Interactive Pill Navigation */
.nav-links-wrapper {
    position: relative;
    padding: 0.5rem;
    display: flex;
}

.nav-hover-pill {
    position: absolute;
    background: var(--bg-cream-alt);
    height: calc(100% - 1rem);
    top: 0.5rem;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-smooth);
    z-index: 1;
    opacity: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.nav-links li {
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.nav-links li.active a,
.nav-links li:hover a {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-pill {
    border-radius: var(--border-radius-pill);
    background: var(--text-main);
    color: var(--white);
}

.btn-pill:hover {
    background: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--bg-cream-alt);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('background.png') center/cover no-repeat;
}

/* Background overlay to ensure text is readable */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 250, 245, 0.95) 0%, rgba(252, 250, 245, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.hero p {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    width: 100%;
}

/* Services Section */
.services-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream-alt);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Base 3D transform container effect for services */
.interactive-card {
    transition: transform 0.1s;
    transform-style: preserve-3d;
}

/* About Us Section */
.about-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-item {
    margin-bottom: 2rem;
}

.section-pill {
    display: inline-block;
    padding: 0.6rem 2.5rem;
    background: var(--bg-cream-alt);
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    margin-bottom: 1.5rem;
}

.section-pill:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--gold-primary);
}

.about-content {
    padding: 1rem 2rem;
}

.about-content p {
    font-size: 1.1rem;
    max-width: 1000px;
    color: var(--text-main);
}

.vision-mission-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.vision-title,
.mission-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.1);
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.about-list {
    list-style: none;
    margin-top: 1rem;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Founders Section */
.founders-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.founders-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.founder-card {
    min-width: 250px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.founder-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--white);
    transition: var(--transition-smooth);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.founder-card:hover .founder-avatar {
    transform: scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem 8rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    text-align: center;
}

.contact-details {
    list-style: none;
    margin-top: 2rem;
}

.contact-details li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

/* Contact Forms Styles (SMS & Email) */
.contact-forms-container {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.form-wrapper {
    background: var(--bg-cream-alt);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-wrapper h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--gold-dark);
}

.contact-action-form,
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-cream-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.instagram:hover {
    background: #E4405F;
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-pill);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.email-textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 100px;
}

.mb-sm {
    margin-bottom: 0.5rem;
}

.form-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-btn {
    padding: 0.8rem 1.5rem;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-forms-container {
        grid-template-columns: 1fr;
    }
}

/* Footer & Rating */
.footer-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.rating-box h3 {
    margin-bottom: 1rem;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.rating-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.rating-message.success {
    color: var(--gold-dark);
    font-weight: 600;
}

.copyright {
    font-size: 0.85rem;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-hover {
    box-shadow: var(--shadow-hover);
    transition: var(--transition-smooth);
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

.rounded-xl {
    border-radius: 40px;
}

.bg-white {
    background-color: var(--white);
}

.p-lg {
    padding: 3rem 2rem;
}

.p-xl {
    padding: 4rem 2rem;
}

.mt-md {
    margin-top: 1.5rem;
}

.pt-lg {
    padding-top: 2rem;
}

/* Floating Social Media */
.floating-social-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

.floating-icon {
    width: 48px;
    height: 48px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    animation: floatIcon 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.floating-icon.whatsapp {
    background-color: #25D366;
    animation-delay: 0s;
}

.floating-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    animation-delay: 0.5s;
}

.floating-icon.facebook {
    background-color: #1877F2;
    animation-delay: 1s;
}

.floating-icon:hover {
    animation-play-state: paused;
    transform: scale(1.12) translateX(5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    filter: brightness(1.08);
}

@keyframes floatIcon {

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

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

/* Animations - Alive & Moving Elements */
@keyframes float {

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

    50% {
        transform: translateY(-15px) translateZ(120px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

.el-2 {
    animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    .nav-links-wrapper {
        display: none;
        /* In production, add a mobile menu */
    }
}

/* Residential fields wrapper */
#residential-fields-wrapper {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#residential-fields-wrapper.show {
    display: block;
    opacity: 1;
}

/* Additional styling for residential form groups */
#residential-fields-wrapper .form-group {
    margin-bottom: 1rem;
}

#residential-fields-wrapper .form-input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-pill);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
}

#residential-fields-wrapper .form-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* make text inside the residential inputs grey */
#residential-fields-wrapper .form-input {
    color: var(--text-muted);
}