/* ================= VARIABLES ================= */
:root {
  /* --- Premium Nature Palette (No Black) --- */
  --primary-color: #1a472a;      /* Deep Emerald Green (Nature & Trust) */
  --primary-dark: #0d2618;       /* Very Dark Forest (Footer/Overlays) */
  
  --secondary-color: #c5a059;    /* Champagne Gold (Luxury) */
  --secondary-hover: #b08d4b;    
  
  --text-main: #2c3e50;          /* Midnight Slate (High contrast, no black) */
  --text-light: #546e7a;         /* Soft Blue-Grey */
  
  --bg-white: #ffffff;
  --bg-cream: #fdfbf7;           /* Warm luxury background */
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Colored Shadows (More expensive look than black shadows) */
  --shadow: 0 15px 40px rgba(26, 71, 42, 0.15); 
}

/* ================= RESET & BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { width: 100%; height: auto; display: block; }

/* ================= UTILITIES ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding { padding: 90px 0; }
.center { text-align: center; }
.gold-text { color: var(--secondary-color); }

.divider-gold {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 20px auto 0;
}

/* ================= NAVBAR ================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
  /* Dark Green Gradient instead of Black */
  background: linear-gradient(to bottom, rgba(13, 38, 24, 0.9), transparent);
}

header.scrolled {
  background: var(--bg-white);
  box-shadow: 0 4px 20px rgba(26, 71, 42, 0.1);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 55px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bg-white);
  letter-spacing: 1px;
}

.logo-text small {
  font-size: 0.65rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Change logo color on scroll */
header.scrolled .logo-text span { color: var(--primary-color); }

nav { display: flex; align-items: center; gap: 35px; }

nav a {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0%; height: 2px;
    background: var(--secondary-color);
    transition: 0.3s;
}

nav a:hover::after { width: 100%; }

header.scrolled nav a { color: var(--text-main); }
header.scrolled nav a:hover { color: var(--secondary-color); }

.btn-nav {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color) !important;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-nav:hover {
    background: var(--secondary-color);
    color: var(--bg-white) !important;
}

.mobile-menu-icon { display: none; color: var(--bg-white); font-size: 1.5rem; cursor: pointer;}
header.scrolled .mobile-menu-icon { color: var(--primary-color); }

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
}

.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(13, 38, 24, 0.65); 
  z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: var(--bg-white);
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(13, 38, 24, 0.3);
}

.hero-content h1 span { color: var(--secondary-color); font-style: italic; }

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 4px;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--bg-white);
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
  margin-left: 15px;
}

.btn-outline:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

/* ================= ABOUT SECTION ================= */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    border: 0;
    position: relative;
    border-radius: 8px;
    overflow: visible;
    
    /* --- NEW: Controls the size --- */
    max-width: 350px;  /* Adjust this number to make it bigger/smaller */
    margin: 0 auto;    /* Centers the image in the column */
    display: block;
}

.image-frame img {
    width: 100%;       /* Fills the smaller container */
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 50%; height: 50%;
    border-right: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
    z-index: -1;
    border-radius: 0 0 8px 0;
}

.heading {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.text-col h2 { font-size: 3rem; margin-bottom: 25px; }
.text-col p { margin-bottom: 20px; color: var(--text-light); font-size: 1.05rem; }

/* ================= HIGHLIGHTS (Dark) ================= */
.dark-bg { background-color: var(--primary-color); color: var(--bg-white); }
.dark-bg h2 { color: var(--bg-white); }

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.highlight-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    border-radius: 8px;
}

.highlight-card:hover {
    background: var(--bg-white);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.highlight-card:hover h3, 
.highlight-card:hover p { color: var(--primary-color); }
.highlight-card:hover i { color: var(--secondary-color); }

.highlight-card i {
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    transition: 0.3s;
}

.highlight-card h3 { color: var(--bg-white); font-size: 1.4rem; margin-bottom: 10px; }
.highlight-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ================= AMENITIES (Grid Layout) ================= */
.bg-cream { background-color: var(--bg-cream); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-box {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border-bottom: 3px solid transparent;
}

.amenity-box:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(26, 71, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.amenity-box:hover .icon-box {
    background: var(--primary-color);
    color: var(--bg-white);
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: 0.4s;
}

.amenity-box:hover .icon-box i { color: var(--bg-white); }
.amenity-box h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary-color); font-weight: 700; }
.amenity-box p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ================= PROJECTS ================= */
.projects-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}

.project-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.project-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.project-card:hover .project-img img { transform: scale(1.05); }

.status-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.project-info { padding: 40px; }
.project-info h3 { font-size: 2rem; margin-bottom: 5px; }
.project-info .location { color: var(--secondary-color); font-weight: 600; margin-bottom: 20px; font-size: 0.9rem; text-transform: uppercase; }

.project-info .desc { font-size: 1rem; color: var(--text-light); margin-bottom: 20px; }

.amenities-list {
    list-style: none;
    margin-top: 25px;
    display: flex;
    gap: 25px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}
.amenities-list li { font-size: 0.9rem; color: var(--text-main); font-weight: 500; display: flex; align-items: center; }
.amenities-list i { color: var(--primary-color); margin-right: 8px; font-size: 1.1rem; }

.past-projects {
    background: #f1f5f9;
    padding: 40px;
    border-radius: 8px;
    border-top: 5px solid var(--primary-color);
}

.past-projects h3 { margin-bottom: 20px; }
.past-list-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }

.past-item {
    background: var(--bg-white);
    padding: 15px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(26, 71, 42, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}
.past-item::after {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary-color);
}

/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img { height: 100%; object-fit: cover; transition: 0.6s; }
.gallery-item:hover img { transform: scale(1.1); filter: contrast(1.1); }

/* ================= LOCATION HIGHLIGHTS (Timeline Style) ================= */
.location-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.loc-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateX(10px);
    border-color: rgba(197, 160, 89, 0.3);
}

.time-badge {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 10px;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    border: 2px solid var(--secondary-color);
    flex-shrink: 0; /* Prevents shrinking on mobile */
}

.time-badge span {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 4px;
}

.loc-details h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.loc-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* ================= CONTACT ================= */
.contact-section { 
    background-color: var(--primary-color); 
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white); 
}
.contact-section h2 { color: var(--bg-white); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.info-item h4 { font-family: var(--font-body); font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-bottom: 5px; }
.info-item p { margin: 0; font-size: 1.1rem; font-weight: 500; }

.contact-form-container {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    color: var(--text-main);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.contact-form-container h3 { color: var(--primary-color); margin-bottom: 25px; font-size: 1.8rem; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-main); }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    background: #f9fafb;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    background: var(--bg-white);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.full-width { width: 100%; text-align: center; border: none; font-size: 1rem; padding: 16px; margin-top: 10px; }

/* ================= FOOTER ================= */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer p { margin-bottom: 10px; }
footer strong { color: var(--bg-white); font-family: var(--font-heading); letter-spacing: 1px; }

/* ================= ANIMATIONS ================= */
.reveal, .reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: all 1s ease-out; }
.reveal.active { opacity: 1; }
.reveal-up { transform: translateY(50px); }
.reveal-up.active { transform: translateY(0); opacity: 1; }
.reveal-left { transform: translateX(-50px); }
.reveal-left.active { transform: translateX(0); opacity: 1; }
.reveal-right { transform: translateX(50px); }
.reveal-right.active { transform: translateX(0); opacity: 1; }

/* ================= MOBILE RESPONSIVE ================= */
/* ================= RESPONSIVE MEDIA QUERIES ================= */

/* TABLET & SMALL LAPTOPS (Max Width: 1024px) */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .two-col-grid { gap: 30px; }
    .contact-wrapper { gap: 30px; }
}

/* MOBILE DEVICES (Max Width: 768px) */
@media (max-width: 768px) {
    
    /* 1. Global Spacing Adjustments */
    .section-padding { padding: 60px 0; }
    h2 { font-size: 2rem; }
    .text-col h2 { font-size: 2rem; }
    .sub-heading { font-size: 0.75rem; letter-spacing: 2px; }

    /* 2. Navbar & Mobile Menu */
    .mobile-menu-icon {
        display: block;
        z-index: 1001; /* Above the overlay */
        cursor: pointer;
    }
    
    /* Fix logo size on mobile */
    .logo img { height: 40px; }
    .logo-text span { font-size: 1.1rem; }
    .logo-text small { font-size: 0.55rem; }

    /* The Mobile Dropdown Menu */
    nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color); /* Deep Green Background */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%); /* Hidden by default */
        transition: 0.4s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    nav.active {
        transform: translateY(0); /* Slide down */
        opacity: 1;
        pointer-events: all;
    }

    nav a {
        font-size: 1.2rem;
        color: var(--bg-white) !important; /* Force white text */
    }

    .btn-nav {
        border-color: var(--bg-white);
        color: var(--bg-white) !important;
    }

    /* 3. Hero Section */
    .hero-content h1 { font-size: 2.5rem; line-height: 1.2; }
    .hero-content p { font-size: 1rem; margin-bottom: 30px; }
    .btn { padding: 12px 25px; font-size: 0.8rem; width: 100%; margin-bottom: 10px; }
    .btn-outline { margin-left: 0; } /* Stack buttons */
    .hero-buttons { display: flex; flex-direction: column; gap: 10px; width: 100%; }

    /* 4. Grids (Stacking Everything) */
    .two-col-grid, 
    .projects-wrapper, 
    .contact-wrapper,
    .amenities-grid,
    .highlights-grid { 
        grid-template-columns: 1fr; /* Force single column */
        gap: 40px;
    }

    /* 5. Projects */
    .project-img { height: 250px; }
    .project-info h3 { font-size: 1.5rem; }
    .amenities-list { flex-wrap: wrap; gap: 15px; } /* Wrap icons if space is tight */

    /* 6. Location Highlights */
    .loc-item {
        padding: 15px;
        gap: 15px;
        flex-direction: row; /* Keep badge and text side-by-side */
        align-items: flex-start;
    }
    .time-badge {
        width: 60px; height: 60px;
        font-size: 1.2rem;
        flex-shrink: 0; /* Prevent squishing */
    }

    /* 7. Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Smaller grid for mobile */
        gap: 15px;
    }
    .gallery-item { height: 150px; }

    /* 8. Contact Form */
    .contact-form-container { padding: 30px 20px; }
    
    /* 9. Images */
    .image-frame::after { display: none; } /* Remove decorative box on mobile to save space */
}
/* ================= COMPANY PROFILE STYLES ================= */

/* Mission Quote Box */
.mission-box {
    background: var(--bg-cream);
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    position: relative;
    border-radius: 0 8px 8px 0;
}

.mission-box p {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-desc {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Mobile Adjustment */
@media screen and (max-width: 768px) {
    .stats-row {
        gap: 20px;
        justify-content: space-between;
    }
    .stat-num { font-size: 2rem; }
}