/* ===========================
   GENERAL STYLES
   =========================== */

:root {
    --primary-color: #8B7355;
    --secondary-color: #D4A574;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F9F7F4;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header-main {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.social-link {
    display: inline-block;
    margin: 0 0.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-link img {
    width: 30px;
    height: 30px;
}

.book-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.3;
}

/* ===========================
   INTRODUCTION SECTION
   =========================== */

.intro-section {
    background-color: var(--bg-light);
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.intro-section img {
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-section img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   BUTTONS
   =========================== */

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonial-row {
    margin-bottom: 4rem;
}

.testimonial-name {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-title {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 0;
    margin: 0;
    border-left: none;
}

.testimonial-quote h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-card {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 15px;
}

.testimonial-row img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-row img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ===========================
   FREE GUIDE SECTION
   =========================== */

.free-guide-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.guide-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.free-guide-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.free-guide-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.free-guide-section .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===========================
   ACKNOWLEDGEMENT SECTION
   =========================== */

.acknowledgement-section {
    background-color: var(--bg-light);
}

.acknowledgement-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   FOOTER
   =========================== */

.footer-main {
    background-color: var(--text-dark);
    color: var(--white);
}

.footer-main p {
    margin: 0;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-social {
    margin-top: 1rem;
}

.footer-main .social-link {
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-main .social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 991px) {
    .hero-subtitle {
        font-size: 1.4rem;
    }

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

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

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

    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: var(--shadow);
    }
}

@media (max-width: 768px) {
    .hero-image {
        height: 50vh;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-row {
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-image {
        height: 40vh;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .navbar-brand .logo {
        height: 50px;
    }

    .book-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

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

.intro-section,
.testimonials-section,
.free-guide-section {
    animation: fadeInUp 0.8s ease-out;
}

/* ===========================
   ACCESSIBILITY
   =========================== */

a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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












/* ===========================
   ABOUT PAGE SPECIFIC STYLES
   =========================== */

.about-hero .hero-subtitle {
    font-size: 3rem;
    font-weight: 300;
    text-transform: lowercase;
}

.gallery-section {
    background-color: var(--bg-light);
}

.gallery-img {
    width: 100%;
    height: 261px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    cursor: pointer;
}

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

.help-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.help-section h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.4;
}

.help-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-img {
        height: 180px;
    }
    
    .about-hero .hero-subtitle {
        font-size: 2rem;
    }
}











/* ===========================
   INTRODUCTION PAGE STYLES
   =========================== */

.intro-hero-section {
    position: relative;
    margin-top: 0;
}

.intro-hero-section .hero-image {
    height: 80vh;
}

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

.intro-hero-subtitle {
    font-size: 3rem;
    font-weight: 400;
}

.section-label {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: 2px;
}

.intro-content {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.property-section {
    background-color: var(--bg-light);
}

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

.beaches-section {
    background-color: var(--bg-light);
}

/* Social Gallery Masonry Grid */
.social-gallery-section {
    background-color: var(--white);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 15px;
    grid-auto-flow: dense;
}

.masonry-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    cursor: pointer;
}

/* Hire CTA Section */
.hire-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
}

.hire-cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
}

.hire-cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

/* Testimonial Label */
.testimonial-label {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    text-transform: lowercase;
    margin-bottom: 0.5rem;
}

/* Social CTA Section */
.social-cta-section {
    background-color: var(--bg-light);
}

.social-cta-section h4 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
}

.social-links-large img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links-large a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-hero-title {
        font-size: 1.8rem;
    }
    
    .intro-hero-subtitle {
        font-size: 2rem;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        grid-gap: 10px;
    }
}








/* ===========================
   SERVICES PAGE STYLES
   =========================== */

.services-hero-section {
    position: relative;
    margin-top: 0;
}

.services-hero-section .hero-image {
    height: 60vh;
    overflow: hidden;
}

.services-hero-section .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
}

.services-grid-section {
    background-color: var(--bg-light);
}

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: var(--shadow-hover);
}

.service-label {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    text-transform: lowercase;
    letter-spacing: 1px;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-pricing {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
}

.service-item img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.02);
}

/* Services Gallery */
.services-gallery-section {
    background-color: var(--white);
}

.services-gallery-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-gallery-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
    .service-item .row {
        flex-direction: column-reverse;
    }
    
    .service-item .col-lg-5 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero-subtitle {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .services-gallery-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .services-hero-section .hero-image {
        height: 40vh;
    }
    
    .services-hero-subtitle {
        font-size: 1.4rem;
    }
}





/* ===========================
   TESTIMONIALS PAGE STYLES
   =========================== */

.testimonials-hero-section {
    position: relative;
    margin-top: 0;
}

.testimonials-hero-section .hero-image {
    height: 65vh;
    overflow: hidden;
}

.testimonials-hero-section .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-intro-section {
    background-color: var(--bg-light);
}

.testimonials-main-title {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: 1px;
}

.all-testimonials-section {
    background-color: var(--white);
}

.testimonial-row {
    padding: 2rem 0;
}

.testimonial-row img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-row:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-hero-section .hero-image {
        height: 50vh;
    }

    .testimonials-main-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .testimonials-hero-section .hero-image {
        height: 40vh;
    }

    .testimonials-main-title {
        font-size: 1.3rem;
    }
}


/* ===========================
   ENHANCED FOOTER STYLES
   =========================== */

.footer-main {
    background-color: var(--text-dark);
    color: var(--white);
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social .social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-social .social-link img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social .social-link:hover img {
    opacity: 1;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-main {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
        display: block;
    }

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

    .footer-social {
        justify-content: center;
    }
}





