:root {
    --primary-color: #972e23;
    /* Deep rustic red for accents/icons/buttons */
    --secondary-color: #972e23;
    /* Red for buttons */
    --text-color: #000000;
    /* True black for readability */
    --text-light: #fff;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --light-bg: #f8fafc;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

i {
    color: var(--primary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #7d261d;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.full-width {
    width: 100%;
    display: block;
}

.btn i {
    color: inherit;
    margin-right: 8px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.header .btn {
    color: #ffffff;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/banner.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-top: 90px;
    /* Offset fixed header with more space */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Subtle dark tint */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.45);
    /* Semi-transparent card background */
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

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

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

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

/* Overview */
.overview-main {
    display: flex;
    align-items: center;
    gap: 50px;
}

.overview-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.overview-main:hover .overview-image img {
    transform: scale(1.05);
}

.overview-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .overview-main {
        flex-direction: column;
    }

    .overview-image {
        width: 100%;
        max-height: 400px;
    }

    .overview-grid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

.overview-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.overview-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--secondary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: var(--transition);
}

.icon-box i {
    color: #fff;
}

.overview-card:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(151, 46, 35, 0.3);
}

.overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.pricing-card.featured {
    position: relative;
    z-index: 2;
}



.card-header {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.card-header h3 {
    color: #fff;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.price .small {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    opacity: 0.9;
}

.card-body {
    padding: 30px;
}

.card-body ul {
    margin-bottom: 30px;
}

.card-body li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
}

/* Amenities */
.amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.amenity-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.amenity-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.amenity-item i {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.amenity-item:hover i {
    background: #fff;
    color: var(--primary-color);
}

.amenity-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.amenity-item p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Gallery */
/* Gallery Slider */
.gallery-slider-container {
    position: relative;
    padding: 0 40px;
    margin-bottom: 40px;
}

.gallery-slider-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .gallery-item {
        flex: 0 0 100%;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #ffffff !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn i {
    font-size: 1.2rem;
    color: #ffffff !important;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.slider-btn:hover {
    background: #7d261d;
    transform: translateY(-50%) scale(1.1);
}

/* Gallery Hover Effect */
.gallery-item {
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Specific Items */
.item-1 {
    background-image: url('images/1.jpg');
}

.item-2 {
    background-image: url('images/2.jpg');
}

.item-3 {
    background-image: url('images/3.jpg');
}

.item-4 {
    background-image: url('images/4.jpg');
}

/* Location */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.location-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.location-list i {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-placeholder {
    height: 100%;
    min-height: 450px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* FAQ */
.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.accordion-body {
    padding: 0 20px 20px 20px;
    display: none;
    color: #555;
    line-height: 1.6;
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active i {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: #ffffff;
    color: var(--text-color);
    padding: 80px 0 20px 0;
    border-top: 1px solid #eee;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.footer-logo {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
}

.social-links a:hover i {
    color: #fff;
}

.footer-col h4 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 15px;
    color: var(--text-color);
    opacity: 0.9;
    display: flex;
    gap: 10px;
}

.footer-bottom {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.footer-disclaimer-box {
    text-align: center;
    border-top: 1px dashed #ddd;
    padding-top: 20px;
}

.footer-disclaimer-box p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-disclaimer-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.whatsapp-float,
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float {
    bottom: 30px;
    right: 30px;
    background: #25d366;
}

.call-float {
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
}

.call-float i {
    color: #fff;
}

.whatsapp-float:hover,
.call-float:hover {
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-float i {
    color: #fff;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-logo {
    height: 60px;
    margin-bottom: 25px;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(151, 46, 35, 0.1);
}

.modal .btn-primary {
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    body.home-page {
        padding-bottom: 60px;
        /* Space for fixed action bar */
    }

    .header-container {
        padding: 0 20px;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        border-left: none;
        border-top: 4px solid var(--secondary-color);
        padding-top: 20px;
        padding-left: 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .gallery-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }

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

    .developer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
    }

    .map-placeholder {
        height: 400px;
        min-height: 400px;
    }

    /* Mobile Action Bar - Classic Industry Standard */
    .home-page .mobile-action-bar {
        display: flex !important;
        /* Force visibility */
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        /* Ensure it stays on top */
        border-top: 1px solid #eee;
    }

    .action-item {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 18px 5px;
        color: #000000;
        text-decoration: none;
        font-family: 'Outfit', sans-serif;
        font-size: 0.9rem;
        font-weight: 800;
        gap: 10px;
        text-transform: uppercase;
        border-right: 1px solid #eee;
        transition: background 0.2s;
    }

    .action-item:last-child {
        border-right: none;
    }

    .action-item i {
        font-size: 1.1rem;
        color: #000000;
    }

    .action-item.call,
    .action-item.whatsapp,
    .action-item.enquire {
        background: #ffffff;
        color: #000000;
        border-radius: 0;
        border: none;
        border-right: 1px solid #eee;
    }

    .action-item:last-child {
        border-right: none;
    }

    .action-item:active {
        background: #f5f5f5;
    }

    .whatsapp-float,
    .call-float {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        /* Slightly smaller for very small screens */
        line-height: 1.1;
    }

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

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 50px 0;
    }

    .hero-content {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 15px;
    }

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

    .blog-title {
        font-size: 1.1rem;
    }

    /* Responsive for blog listing page */
    .blog-header h1 {
        font-size: 1.8rem !important;
    }

    /* Responsive for single blog posts */
    .blog-single-header h1 {
        font-size: 1.8rem !important;
    }
}

/* Global hidden state for bar - overridden by .home-page specificity in media query */
.mobile-action-bar {
    display: none;
}