/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #ffffff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background-color: #266b40;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.logo h1 {
    color: #1b3d2b;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.logo h1 span {
    color: #3e9a60;
    font-weight: 700;
}

.logo .tagline {
    color: #cda85a;
    font-size: 12px;
    font-style: italic;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #3e9a60;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3e9a60;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-btn {
    color: #1b3d2b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #3e9a60;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s;
}

.phone-btn i {
    color: #3e9a60;
    font-size: 16px;
}

.phone-btn:hover {
    background: #f0fdf4;
}

.enquire-btn {
    background: #1a4a2e;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

@keyframes blinkWarning {
    0% { background-color: #1a4a2e; color: #fff; transform: scale(1); box-shadow: 0 0 0 rgba(58, 170, 107, 0); }
    50% { background-color: #3aaa6b; color: #fff; transform: scale(1.05); box-shadow: 0 10px 25px rgba(58, 170, 107, 0.5); }
    100% { background-color: #1a4a2e; color: #fff; transform: scale(1); box-shadow: 0 0 0 rgba(58, 170, 107, 0); }
}

.enquire-btn:hover {
    animation: blinkWarning 0.8s infinite;
}

.mobile-menu-btn {
    display: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background: #ffd700;
    color: #1e3c72;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #ffed4a;
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* Enquiry Form */
.enquiry-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 0;
}

.enquiry-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.enquiry-form h3 {
    text-align: center;
    color: #1e3c72;
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-btn {
    background: #1e3c72;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.form-btn:hover {
    background: #2a5298;
}

/* Project Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 22px;
}

.project-info .tagline {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 15px;
}

.project-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.project-info .location {
    color: #333;
    font-weight: 500;
}

.project-btn {
    display: inline-block;
    background: #1e3c72;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s;
}

.project-btn:hover {
    background: #2a5298;
}

/* Project Details Page */
.project-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    color: #fff;
}

.project-hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.project-hero .tagline {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 20px;
}

.project-details {
    padding: 60px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.detail-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.detail-card i {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 15px;
}

.detail-card h4 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 18px;
}

.detail-card p {
    color: #666;
    font-size: 14px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.amenity-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-item i {
    color: #1e3c72;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #1b3d2b;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #3e9a60;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section .tagline {
    color: #cda85a;
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-section .address,
.footer-section .contact-info {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section .address i,
.footer-section .contact-info i {
    color: #3e9a60;
    margin-right: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3e9a60;
}

.footer-section ul li i {
    color: #3e9a60;
    margin-right: 10px;
}

.footer-enquiry input,
.footer-enquiry textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.footer-enquiry button {
    background: #3e9a60;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.footer-enquiry button:hover {
    background: #266b40;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 14px;
}

/* Admin Panel Styles */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c361e 0%, #1a4a2e 100%);
}

.admin-login-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.admin-login-form h2 {
    text-align: center;
    color: #1a4a2e;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.admin-dashboard {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: #0c361e;
    color: #fff;
    padding: 20px;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.admin-sidebar h2 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #c8a04a;
    font-family: 'Playfair Display', serif;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar ul li {
    margin-bottom: 10px;
}

.admin-sidebar ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.admin-sidebar ul li a:hover,
.admin-sidebar ul li a.active {
    background: rgba(255,255,255,0.1);
    color: #c8a04a;
}

.admin-content {
    flex: 1;
    padding: 30px;
    background: #f5f5f5;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    color: #1a4a2e;
    font-family: 'Playfair Display', serif;
}

.admin-mobile-toggle {
    display: none;
    font-size: 24px;
    color: #1a4a2e;
    cursor: pointer;
    background: none;
    border: none;
}

.admin-table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.admin-table th {
    background: #1a4a2e;
    color: #fff;
    font-weight: 500;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

.action-btn {
    padding: 5px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 5px;
}

.edit-btn {
    background: #c8a04a;
    color: #fff;
    text-decoration: none;
}

.delete-btn {
    background: #dc3545;
    color: #fff;
}

.upload-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.upload-form h3 {
    color: #1a4a2e;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* Circular Floating Menu */
.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 10000;
}

.social-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-socials .menu-item {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.floating-socials .main-button {
    z-index: 10;
}

/* Invisible hit area to prevent losing hover when moving mouse across gaps */
.floating-socials::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s;
}

.floating-socials:hover::after {
    width: 200px;
    height: 200px;
}

.floating-socials:hover .main-button {
    transform: scale(1.1);
}

.floating-socials:hover .menu-item {
    opacity: 1;
    pointer-events: auto;
}

/* Radial Positioning on Hover */
.floating-socials:hover .phone-float {
    transform: translateY(-90px);
}
.floating-socials:hover .fb-float {
    transform: translate(-45px, -78px);
}
.floating-socials:hover .insta-float {
    transform: translate(-78px, -45px);
}
.floating-socials:hover .yt-float {
    transform: translateX(-90px);
}

.whatsapp-float {
    background-color: #25d366;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.fb-float {
    background-color: #1877f2;
}
.fb-float:hover {
    background-color: #145dbf;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.insta-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.insta-float:hover {
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.yt-float {
    background-color: #ff0000;
}
.yt-float:hover {
    background-color: #cc0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.phone-float {
    background-color: #6c5ce7;
}
.phone-float:hover {
    background-color: #5b4bc4;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

/* Clean UI Mockup Styles */
.clean-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    text-align: center;
}
.clean-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.icon-top-center {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #1a4a2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 15px rgba(26, 74, 46, 0.2);
    border: 4px solid #fff;
    z-index: 2;
}

.dashed-timeline {
    position: absolute;
    left: 25px;
    top: 20px;
    bottom: 20px;
    width: 0;
    border-left: 2px dashed #1a4a2e;
    z-index: 0;
}
.timeline-step-icon {
    width: 50px;
    height: 50px;
    background: #1a4a2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 1;
    position: relative;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.core-icon-float {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #1a4a2e;
    font-size: 30px;
    transition: all 0.3s;
}
.core-icon-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Why Choose Us Mockup Cards */
.choose-section-bg {
    background: linear-gradient(180deg, #fdfdfd 0%, #f7f9f7 100%);
    position: relative;
    overflow: hidden;
}

.choose-section-bg::before {
    content: '\f06c'; /* fa-leaf */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 300px;
    color: rgba(26, 74, 46, 0.02);
    transform: rotate(45deg);
    z-index: 0;
    pointer-events: none;
}

.choose-section-bg::after {
    content: '\f1ad'; /* fa-building */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 400px;
    color: rgba(26, 74, 46, 0.02);
    z-index: 0;
    pointer-events: none;
}

.choose-card-vertical {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.choose-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 74, 46, 0.08);
}

.choose-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #f0f4ed; /* Very light subtle green/gold mix */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #1a4a2e;
    transition: all 0.4s ease;
}

.choose-card-vertical:hover .choose-icon-circle {
    background: #1a4a2e;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.choose-card-title {
    font-size: 16px;
    color: #1a4a2e;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.choose-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.choose-card-horizontal {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.choose-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 74, 46, 0.08);
}

.choose-card-horizontal .choose-icon-circle {
    margin-bottom: 0;
    flex-shrink: 0;
}

.choose-card-horizontal:hover .choose-icon-circle {
    background: #1a4a2e;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Hero Section Specific Styles */
.hero-svg-curve {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-stats-row {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .hero-svg-curve {
        display: none;
    }
    .hero-bg-container {
        display: none;
    }
    .hero-modern-section {
        background: #fdfdfd !important;
    }
    .hero-stats-row {
        gap: 8px;
    }
}

/* Trust / Contact Section Mockup Styles */
.trust-panels-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}
.trust-panel-top {
    background: #ffffff;
    border: 1px solid #c8a04a;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}
.trust-panel-bottom {
    background: rgba(245, 247, 245, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    padding: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -10px; /* Pull up underneath top panel */
    padding-top: 35px; /* Adjust padding for overlap */
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

.trust-divider {
    width: 1px;
    align-self: stretch;
    background: #e5e5e5;
    margin: 0 20px;
}

.trust-icon-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px dashed #c8a04a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}
.trust-icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1a4a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a04a;
    font-size: 24px;
}

.trust-feature-box {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    font-size: 20px;
    color: #1a4a2e;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.02);
}

@media (max-width: 992px) {
    .trust-panel-top, .trust-panel-bottom {
        flex-direction: column;
        gap: 30px;
    }
    .trust-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }
}

/* Core Area Cards (Exact Image Mockup Style) */
.hero-svg-curve {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-stats-row {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .hero-svg-curve {
        display: none;
    }
    .hero-bg-container {
        display: none;
    }
    .hero-modern-section {
        background: #fdfdfd !important;
    }
    .hero-stats-row {
        gap: 8px;
    }
}

/* Core Area Cards (Exact Image Mockup Style) */
.choose-section-bg {
    background: linear-gradient(180deg, #fdfdfd 0%, #f7f9f7 100%);
    position: relative;
    overflow: hidden;
}

/* Project Details Page Redesign Styles */
.proj-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}
.proj-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 54, 30, 0.95) 0%, rgba(12, 54, 30, 0.7) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.proj-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.proj-badge {
    display: inline-block;
    background: #1a4a2e;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}
.proj-title {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.proj-subtitle {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: #c8a04a;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.proj-subtitle::after {
    content: '';
    width: 60px;
    height: 1px;
    background: #c8a04a;
}
.proj-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #f0f0f0;
}

.proj-section-bg {
    background: #fafaf8;
    position: relative;
}
.proj-overview-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.proj-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 74, 46, 0.08);
}
.proj-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #1a4a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 6px;
}
.proj-icon-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f4f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4a2e;
    font-size: 26px;
}

.proj-content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}
.proj-content-card::before {
    content: '\f06c'; /* fa-leaf */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: -20px;
    font-size: 200px;
    color: rgba(26, 74, 46, 0.02);
    transform: rotate(-45deg);
    z-index: 0;
    pointer-events: none;
}
.proj-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #1a4a2e;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.proj-feature-item {
    text-align: center;
}
.proj-feature-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a4a2e;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}
.proj-feature-item:hover .proj-feature-icon {
    background: #1a4a2e;
    color: #ffffff;
    border-color: #1a4a2e;
    transform: translateY(-5px);
}
.proj-feature-text {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.proj-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.proj-list-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1a4a2e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}
.proj-list-icon-pin {
    background: transparent;
    color: #c8a04a;
    font-size: 18px;
}

.proj-enquiry-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
}
.proj-enquiry-left {
    background: #123821;
    padding: 60px 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.proj-enquiry-left::before {
    content: '\f06c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 300px;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    transform: rotate(45deg);
}
.proj-enquiry-right {
    padding: 60px 50px;
    background: #ffffff;
}

@media (max-width: 992px) {
    .proj-title { font-size: 50px; }
    .proj-enquiry-wrapper { grid-template-columns: 1fr; }
    .proj-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

.choose-section-bg::before {
    content: '\f06c'; /* fa-leaf */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 300px;
    color: rgba(26, 74, 46, 0.02);
    transform: rotate(45deg);
    z-index: 0;
    pointer-events: none;
}

.choose-section-bg::after {
    content: '\f1ad'; /* fa-building */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 400px;
    color: rgba(26, 74, 46, 0.02);
    z-index: 0;
    pointer-events: none;
}

.choose-card-vertical {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.choose-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 74, 46, 0.08);
}

.choose-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #f0f4ed; /* Very light subtle green/gold mix */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #1a4a2e;
    transition: all 0.4s ease;
}

.choose-card-vertical:hover .choose-icon-circle {
    background: #1a4a2e;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.choose-card-title {
    font-size: 16px;
    color: #1a4a2e;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.choose-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.choose-card-horizontal {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.choose-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 74, 46, 0.08);
}

.choose-card-horizontal .choose-icon-circle {
    margin-bottom: 0;
    flex-shrink: 0;
}

.choose-card-horizontal:hover .choose-icon-circle {
    background: #1a4a2e;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

/* Core Area Cards (Exact Image Mockup Style) */
.core-mockup-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.core-mockup-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(26, 74, 46, 0.12);
}

.core-mockup-card .card-icon {
    font-size: 45px;
    color: #1a4a2e;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.core-mockup-card:hover .card-icon {
    transform: scale(1.1);
    color: #c8a04a;
}

.core-mockup-card .card-title {
    font-size: 15px;
    color: #1a4a2e;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

/* Animated Goal Cards */
.animated-goal-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(58, 170, 107, 0.1);
    z-index: 1;
}

.animated-goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a4a2e 0%, #3aaa6b 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.animated-goal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 74, 46, 0.2);
    border-color: transparent;
}

.animated-goal-card:hover::before {
    opacity: 1;
}

.animated-goal-card .goal-number-wm {
    font-size: 80px;
    font-weight: 900;
    color: rgba(26, 74, 46, 0.05);
    position: absolute;
    top: -20px;
    right: 10px;
    transition: all 0.5s ease;
    z-index: -1;
    line-height: 1;
}

.animated-goal-card:hover .goal-number-wm {
    color: rgba(255, 255, 255, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.animated-goal-card h4 {
    font-size: 18px;
    color: #1a4a2e;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.5s ease;
}

.animated-goal-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    transition: color 0.5s ease;
}

.animated-goal-card:hover h4,
.animated-goal-card:hover p {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Tablet breakpoints */
    .hero-grid, .project-details-split {
        grid-template-columns: 1fr !important;
    }
    
    .badges-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .details-grid-new {
        grid-template-columns: 1fr !important;
    }
    
    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .enquiry-split {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff !important;
        flex-direction: column;
        padding: 15px 20px;
        gap: 8px;
        z-index: 1000;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-top: 1px solid #eaeaea;
        border-bottom: 2px solid #3e9a60;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 10px 15px;
        border-radius: 8px;
        width: 100%;
        color: #333;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link::after {
        display: none !important;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background-color: #f0fdf4;
        color: #3e9a60 !important;
        padding-left: 20px;
    }

    .mobile-menu-btn {
        display: block;
        color: #1a4a2e;
        font-size: 24px;
        cursor: pointer;
    }

    .header-contact {
        display: none !important;
    }

    /* Grid fallbacks */
    .badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-grid-new {
        grid-template-columns: 1fr !important;
    }
    
    .nearby-flex, .trust-flex {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }
    
    .nearby-items {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .floating-socials {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .social-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .floating-socials:hover .phone-float { transform: translateY(-75px); }
    .floating-socials:hover .fb-float { transform: translate(-38px, -65px); }
    .floating-socials:hover .insta-float { transform: translate(-65px, -38px); }
    .floating-socials:hover .yt-float { transform: translateX(-75px); }
    
    .nearby-title {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
        padding-right: 0 !important;
        padding-bottom: 10px !important;
        width: 100%;
    }

    /* Typography and Padding fixes */
    .hero-content h1, section h1 {
        font-size: 40px !important;
    }
    
    .logo-text h1 {
        font-size: 18px !important;
        white-space: normal !important;
        line-height: 1.2;
    }

    .header .logo {
        max-width: calc(100% - 50px);
        overflow: hidden;
    }

    .header-content {
        justify-content: space-between;
        gap: 10px;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    .hero-content h1 {
        font-size: 42px !important;
    }
    .badges-wrapper {
        margin-top: 20px !important;
    }
    
    .admin-sidebar {
        position: fixed;
        left: -250px;
        height: 100vh;
        z-index: 1001;
    }
    
    .admin-sidebar.active {
        transform: translateX(250px);
    }
    
    .admin-mobile-toggle {
        display: block;
    }
    
    .admin-header {
        flex-direction: row;
    }
    
    .admin-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .badges-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-content h1 {
        font-size: 32px !important;
    }
    
    .trust-flex > div {
        width: 100%;
    }
}
