/* Paradise Project Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Premium Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(18, 18, 18, 0.95);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(189, 167, 128, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    position: relative;
}

/* Mobile Layout: Hamburger - Logo - Call Button */
@media (max-width: 991px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        order: 1;
        flex: 0 0 auto;
    }
    
    .nav-logo {
        order: 2;
        flex: 1;
        justify-content: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-call-btn {
        order: 3;
        flex: 0 0 auto;
    }
    
    .nav-menu {
        order: 4;
    }
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

/* Mobile Call Button */
.nav-call-btn {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: #121212;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(189, 167, 128, 0.3);
    z-index: 1001;
}

.nav-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(189, 167, 128, 0.4);
}

@media (max-width: 991px) {
    .nav-call-btn {
        display: flex;
    }
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0 3rem 0 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'GFS Didot', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #bda780, #d4c4a0);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #bda780;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: #ffffff;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: #bda780;
}

/* Navigation CTA Buttons */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: #121212;
    text-decoration: none;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(189, 167, 128, 0.3);
}

.btn-phone i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 167, 128, 0.4);
}

.btn-phone:hover i {
    transform: scale(1.1);
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enquire:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.navbar.scrolled .btn-enquire {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .btn-enquire:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.navbar.scrolled .bar {
    background: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .nav-links {
        gap: 1.8rem;
    }
    
    .nav-cta {
        gap: 1rem;
    }
    
    .btn-phone,
    .btn-enquire {
        padding: 0.55rem 1.3rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {
    .nav-container {
        padding: 0 2rem;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #121212;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 2.5rem 2.5rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin: 0 0 2.5rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .nav-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-phone,
    .btn-enquire {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(4px, -1px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(4px, 1px);
    }
    
    .navbar.scrolled .hamburger .bar {
        background: #ffffff;
    }
}

@media (max-width: 575px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar.scrolled .logo-img {
        height: 45px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 0;
    }
}

/* Animation for phone icon */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Enhanced Footer Styles */
/* Modern Footer Redesign */
.footer {
    background: #121212;
    color: #a0a0a0; /* Lighter gray for readability */
    padding: 6rem 0 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr); /* Prevent overflow from children */
    gap: 5rem; /* Increased breathing space */
    align-items: start;
}

/* Footer Left Side */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-left,
.footer-right {
    min-width: 0; /* Allow grid items to shrink properly */
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 45px;
}

.footer-brand-name {
    font-family: 'GFS Didot', serif;
    font-size: 1.8rem;
    color: #fff; /* White for brand name */
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 450px;
}

.footer-sections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff; /* White for titles */
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #bda780; /* Accent color on hover */
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.contact-item-footer i {
    color: #bda780;
    font-size: 1rem;
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #bda780, #c9b388);
    color: #121212;
    text-decoration: none;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid rgba(189, 167, 128, 0.5);
    box-shadow: 0 6px 18px rgba(189, 167, 128, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-phone-link:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 28px rgba(189, 167, 128, 0.35);
    filter: brightness(1.02);
}

/* Footer Right Side (Contact Form) */
.footer-right {
    position: sticky;
    top: 4rem;
}

.footer-contact-form {
    background: #1c1c1c;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #333;
    overflow: hidden; /* keep rounded corners clean */
    box-sizing: border-box;
    width: 100%;
}

.form-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 1rem 1rem 1rem 3rem; /* Add padding for the icon */
    border: 1px solid #444;
    border-radius: 12px; /* Rounded fields */
    background: #121212;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* prevent overflow */
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #a0a0a0;
    pointer-events: none; /* Make sure the icon isn't clickable */
    transition: color 0.3s ease;
}

.form-group input:focus + .form-icon {
    color: #bda780; /* Highlight icon on focus */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bda780;
    box-shadow: 0 0 0 3px rgba(189, 167, 128, 0.2);
}

.footer-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #bda780, #c9b388); /* Gold -> Bronze */
    color: #121212;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-submit-btn:hover {
    transform: scale(1.03); /* Scale-up effect */
    box-shadow: 0 10px 25px rgba(189, 167, 128, 0.3); /* Glow effect */
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #222;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1); /* Glow effect */
    color: #fff;
}

.social-link.facebook:hover { background-color: #1877F2; border-color: #1877F2; }
.social-link.instagram:hover { background: #d6249f; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); border: none; }
.social-link.linkedin:hover { background-color: #0A66C2; border-color: #0A66C2; }
.social-link.twitter:hover { background-color: #1DA1F2; border-color: #1DA1F2; }
.social-link.youtube:hover { background-color: #FF0000; border-color: #FF0000; }

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid #333; /* Thin divider */
    margin-top: 4rem;
    padding: 2rem;
    text-align: center; /* Center-aligned */
}

.footer-bottom p {
    font-size: 0.85rem; /* Smaller typography */
    color: #777; /* Lighter typography */
    margin: 0;
}

.brand-name {
    color: #bda780;
    font-weight: 500;
}

/* Tablet Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem 0 2rem;
    }

    .footer-right {
        order: -1;
        position: static;
    }

    .footer-sections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Responsive logo size for tablet */
    .logo-img {
        height: 48px;
        max-height: 48px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Responsive logo size for mobile */
    .logo-img {
        height: 40px;
        max-height: 40px;
    }

    .btn-phone-primary {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn-phone-primary span {
        display: none;
    }

    .btn-phone-primary i {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1rem 0 1rem;
    }

    .footer-right {
        order: -1;
        position: static;
    }

    .footer-contact-form {
        padding: 2rem;
    }

    .footer-sections-grid {
        display: none; /* Hide footer sections on mobile for cleaner look */
    }

    .footer-section {
        padding: 0.5rem;
    }

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

    .footer-brand-name {
        font-size: 1.5rem;
    }

    .footer-logo-img {
        height: 40px;
    }
    
    /* Video Walkthrough Mobile Styles */
    .video-walkthrough {
        height: 50vh;
        min-height: 400px;
        margin-bottom: 2rem;
    }
    
    .video-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Project Pages Styles */
.project-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: 3px;
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-weight: 300;
}

.hero-location {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: 'GFS Didot', serif;
    font-size: 2.5rem;
    color: #bda780;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

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

/* Project Concept Section */
.project-concept-section {
    padding: 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.concept-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    min-height: 700px;
}

.concept-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    align-items: center;
}

/* Left Side - Architectural Image */
.concept-image-side {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: #ffffff;
}

.architectural-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.concept-building-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.architectural-showcase:hover .concept-building-image {
    transform: scale(1.05);
}

/* Right Side - Content */
.concept-content-side {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem 2rem 2rem;
    background: #ffffff;
    position: relative;
}

.concept-content-side::before {
    content: '';
    display: none; /* removed vertical divider */
}

.luxury-logo-container {
    margin-bottom: 2rem;
}

.premium-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.concept-text-content {
    margin-bottom: 2rem;
}

.revolution-heading {
    font-family: 'GFS Didot', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    line-height: 1.2;
    font-weight: 400;
}

.concept-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* Lifestyle Icons */
.lifestyle-icons-container {
    margin-top: 2rem;
}

.lifestyle-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 400px;
}

.lifestyle-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lifestyle-icon:hover .icon-circle::before {
    opacity: 0.1;
}

.lifestyle-icon:hover .icon-circle {
    transform: translateY(-3px);
    border-color: #f4d03f;
}

.icon-circle i {
    font-size: 1.4rem;
    color: #d4af37;
    transition: color 0.3s ease;
}

.lifestyle-icon:hover .icon-circle i {
    color: #f4d03f;
}

.icon-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #999999;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.lifestyle-icon:hover .icon-label {
    color: #d4af37;
}

/* Highlights Carousel Section */
.highlights-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.highlights-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlights-header {
    text-align: center;
    margin-bottom: 4rem;
}

.highlights-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.highlights-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.8rem;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.highlight-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.card-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent; /* bottom overlay handled by overlay-content */
    padding: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.card-title {
    font-family: 'GFS Didot', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* keep full card transparent */
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    padding: 0;
}

.overlay-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.0) 100%);
    padding: 2rem;
    min-height: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.overlay-title {
    font-family: 'GFS Didot', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    position: relative;
    padding-bottom: 1rem;
}

.overlay-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.highlight-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

.highlight-card:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover .card-title {
    opacity: 0;
    transform: translateY(-20px);
}

.highlight-card:hover .card-content {
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.highlight-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.highlight-details li {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-left: 0;
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    line-height: 1.5;
    font-weight: 300;
}

.highlight-card:hover .highlight-details li {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover .highlight-details li:nth-child(1) { transition-delay: 0.15s; }
.highlight-card:hover .highlight-details li:nth-child(2) { transition-delay: 0.25s; }
.highlight-card:hover .highlight-details li:nth-child(3) { transition-delay: 0.35s; }
.highlight-card:hover .highlight-details li:nth-child(4) { transition-delay: 0.45s; }

.highlight-details li:last-child {
    margin-bottom: 0;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

/* Responsive Design for Highlights */
@media (max-width: 1200px) {
    .highlight-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .highlights-title {
        font-size: 2.4rem;
    }
    
    .card-image {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .highlights-section {
        padding: 5rem 0;
    }
    
    .highlight-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .highlight-card:hover .card-title {
        opacity: 0;
        transform: translateY(-15px);
    }
    
    .overlay-title {
        font-size: 1.6rem;
    }
    
    .overlay-title::after {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .highlights-section {
        padding: 4rem 0;
    }
    
    .highlights-container {
        padding: 0 1rem;
    }
    
    .highlight-card {
        flex: 0 0 100%;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .highlights-title {
        font-size: 2rem;
    }
    
    .card-image { height: 400px; } /* Increased height for tablet */
    .overlay-content { min-height: 58%; padding: 1.5rem; }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .highlight-card:hover .card-title {
        opacity: 0;
        transform: translateY(-15px);
    }
    
    .overlay-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .overlay-title::after {
        width: 45px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .highlight-details li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .highlights-section {
        padding: 3rem 0;
    }
    
    .highlights-header {
        margin-bottom: 3rem;
    }
    
    .highlights-title {
        font-size: 1.8rem;
    }
    
    .card-image {
        height: 380px; /* Increased height for mobile */
    }
    
    .card-content {
        padding: 1.5rem 1rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .highlight-card:hover .card-title {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .overlay-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.8rem;
    }
    
    .overlay-title::after {
        width: 40px;
        height: 1.5px;
    }
    
    .highlight-details li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        padding-left: 1.5rem;
    }
    
    .overlay-content {
        width: 95%;
        min-height: 65%; /* Increase min-height for better content display */
        padding: 1.5rem 1rem; /* Better padding */
    }
    
    .carousel-nav {
        display: none;
    }
    
    /* Touch-friendly hover effects for mobile */
    .highlight-card.mobile-active .card-overlay,
    .highlight-card:active .card-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .highlight-card.mobile-active .overlay-content,
    .highlight-card:active .overlay-content {
        opacity: 1;
        transform: translateY(0);
    }
    
    .highlight-card.mobile-active .card-title,
    .highlight-card:active .card-title {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .highlight-card.mobile-active .highlight-details li,
    .highlight-card:active .highlight-details li {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Gallery Section */
.gallery-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #9a8f78;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.gallery-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.gallery-hero-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 12vw);
    gap: 1.5rem;
}

.gallery-hero-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-hero-item.hero {
    grid-column: 2 / 4;
    grid-row: 1 / 5;
}

.gallery-hero-item.thumb {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-hero-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.gallery-hero-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(8px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    user-select: none;
    -webkit-user-select: none;
    z-index: 1002;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(189, 167, 128, 0.9);
    border-color: rgba(189, 167, 128, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(189, 167, 128, 0.4);
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .gallery-hero-layout {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(5, 15vw);
    }
    .gallery-hero-item.hero {
        grid-column: 1 / 4;
        grid-row: 1 / 4;
    }
}

@media (max-width: 768px) {
    .gallery-hero-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-hero-item.hero {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        height: 60vw;
    }
    .gallery-hero-item.thumb {
        height: 45vw;
    }
    
    /* Mobile Lightbox Fixes */
    .lightbox {
        padding: 10px;
    }
    
    .lightbox-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    /* Fix highlight carousel last card positioning */
    .carousel-track {
        padding-right: 1rem; /* Add padding to prevent last card cutoff */
    }
    
    .highlight-card {
        min-width: calc(100% - 2rem); /* Ensure proper width */
        margin-right: 0;
    }
}

/* Key Features Section Reimagined */
.key-features-reimagined {
    padding: 7rem 5%;
    background: #f8f6f2;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.features-concept {
    position: relative;
    padding-right: 3rem;
}

.features-concept::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.features-main-title {
    font-family: 'GFS Didot', serif;
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.features-main-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-list-icon {
    width: 40px;
    height: auto;
    margin-top: 5px;
    /* filter: grayscale(100%) brightness(0.8) contrast(1.2); */
    opacity: 0.6;
}

.feature-list-text {
    flex: 1;
}

.feature-list-title {
    font-family: 'GFS Didot', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-list-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
}

.feature-list-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Key Features */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .features-concept::after {
        display: none;
    }
    .features-concept {
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Location Advantage Section */
.location-advantage {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #fdfcfb 0%, #f8f6f4 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #9a8f78;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.location-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.4rem;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.location-benefits {
    list-style: none;
    padding: 0;
}

/* Video Walkthrough Section */
.video-walkthrough {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../paradise/image1.webp') no-repeat center center/cover;
    margin-bottom: 4rem;
}

.video-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.video-content {
    max-width: 800px;
    margin: 0 auto;
}

.video-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.play-button:hover {
    transform: scale(1.1);
    background: #d4af37;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #d4af37;
}

.location-benefits li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(189,167,128,0.2);
    color: #333;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.location-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #bda780;
    font-weight: bold;
}

.map-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Design & Visuals Section */
.design-visuals {
    padding: 6rem 5%;
    background: #fff;
}

.design-header {
    text-align: center;
    margin-bottom: 4rem;
}

.design-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #9a8f78;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.design-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.4rem;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.design-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Legal Information Section */
.legal-info {
    padding: 4rem 5%;
    background: #f8f6f4;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-title {
    font-family: 'GFS Didot', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

.legal-item:last-child {
    border-bottom: none;
}

.legal-disclaimer {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.legal-disclaimer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'GFS Didot', serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: #bda780;
    width: 20px;
}

.enquiry-form {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.enquiry-form h3 {
    font-family: 'GFS Didot', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.enquiry-form textarea {
    height: 100px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #bda780, #d4c4a0);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(189,167,128,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Responsive Project Concept */
@media (max-width: 1200px) {
    .concept-container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .concept-content-side {
        padding: 3rem 2rem 3rem 3rem;
    }
    
    .revolution-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .concept-split-layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }
    
    .concept-image-side {
        height: 50vh;
        min-height: 400px;
        padding: 2rem;
        order: 1;
    }
    
    .concept-content-side {
        height: auto;
        padding: 4rem 2rem;
        order: 2;
        text-align: center;
    }
    
    .concept-content-side::before {
        display: none;
    }
    
    .architectural-showcase {
        max-width: 400px;
        height: 300px;
    }
    
    .revolution-heading {
        font-size: 2.2rem;
    }
    
    .lifestyle-icons {
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero-title { font-size: 3rem; }
    .hero-headline { font-size: 2rem; }
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .concept-container {
        height: auto;
        min-height: auto;
    }
    
    .concept-image-side {
        height: 40vh;
        min-height: 300px;
        padding: 1.5rem;
    }
    
    .concept-content-side {
        padding: 3rem 1.5rem;
    }
    
    .architectural-showcase {
        height: 250px;
    }
    
    .revolution-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .concept-description {
        font-size: 1rem;
    }
    
    .premium-logo {
        height: 60px;
    }
    
    .lifestyle-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 250px;
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-headline { font-size: 1.6rem; }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .concept-content-side {
        padding: 2rem 1rem;
    }
    
    .revolution-heading {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .concept-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .lifestyle-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .icon-circle i {
        font-size: 1.2rem;
    }
    
    .icon-label {
        font-size: 0.75rem;
    }
}
