@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Gilroy', sans-serif;
}
html{
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body{
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Image Loading Enhancement */
img {
    transition: opacity 0.3s ease-in-out;
}

img.loaded {
    opacity: 1;
}




.nav-bar{
    height: 12vh;
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center ;
    justify-content: space-between;
    padding: 0 7vh;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-bar.scrolled {
    background-color: #FAEBD7;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-bar.scrolled .links ul > li {
    color: #333 !important;
    text-shadow: none;
}

.nav-bar.scrolled .links ul > i {
    color: #333 !important;
}

.nav-bar.hidden {
    transform: translateY(-100%);
}
.nav-bar .logo>img{
    height: 10vh;
    cursor: pointer;
}
.links ul{
    display: flex;
    gap: 5rem;
    font-size: 1.3rem;

}
.links ul>li{
    list-style: none;
    cursor: pointer;
    color: white !important;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.links ul>li:hover{
    color: #9B773B;
}
.links ul>i{
    display: none;
}

/* Mobile Navigation */
#mobile-nav {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    transition: top 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12vh;
}

#mobile-nav.active {
    top: 0;
}



.mobile-nav-content {
    text-align: center;
    position: relative;
    width: 100%;
}

/* Hamburger to Close Animation */
.hamburger {
    transition: all 0.3s ease;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s ease forwards;
}

.mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu li:nth-child(4) { animation-delay: 0.4s; }

.mobile-menu a {
    color: #908380;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease;

}

.mobile-menu a:hover {
    color: #222;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .links ul>i {
        display: block;
        font-size:2rem;
        cursor: pointer;
        color: #333;
        transition: color 0.5s ease;
    }

    .links ul>i:hover {
        color: #000;
    }

    .links ul>li {
        display: none;
    }
}

@media (min-width: 769px) {
    #mobile-nav {
        display: none;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #FAEBD7 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23c9a96e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(155, 119, 59, 0.3);
}

.contact-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #9B773B;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Gilroy', sans-serif;
    overflow: hidden;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(155, 119, 59, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h3 {
    font-size: 2rem;
    color: #9B773B;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Gilroy', sans-serif;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Location Info Section */
.location-info {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(155, 119, 59, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.location-header {
    margin-bottom: 40px;
    text-align: center;
}

.location-header h3 {
    font-size: 2rem;
    color: #9B773B;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Gilroy', sans-serif;
    overflow: hidden;
}

.location-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-details {
    margin-bottom: 40px;
    flex-grow: 1;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(155, 119, 59, 0.05);
    border-radius: 12px;
    border-left: 4px solid #9B773B;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: rgba(155, 119, 59, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    background: #9B773B;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: #9B773B;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Map and Places Section */
.map-container {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.location-map-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.nearest-places {
    margin-top: 30px;
}

.nearest-places h3 {
    font-size: 1.5rem;
    color: #9B773B;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.places-list {
    display: grid;
    gap: 12px;
}

.place-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(155, 119, 59, 0.05);
    border-radius: 8px;
    border-left: 3px solid #9B773B;
    transition: all 0.3s ease;
}

.place-item:hover {
    background: rgba(155, 119, 59, 0.1);
    transform: translateX(3px);
}

.place-name {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.place-distance {
    font-weight: 600;
    color: #9B773B;
    font-size: 0.9rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    margin-bottom: 8px;
}

.form-input, .form-select {
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: 'Gilroy', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #9B773B;
    background: white;
    box-shadow: 0 0 0 3px rgba(155, 119, 59, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #999;
}

.submit-btn {
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(155, 119, 59, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(155, 119, 59, 0.4);
}

/* Why Choose Us */
.why-choose-us {
    padding: 20px;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #9B773B;
}

.why-choose-us > p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(155, 119, 59, 0.1);
    padding: 15px;
    border-radius: 10px;
    color: #9B773B;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #9B773B;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-header {
        margin-bottom: 60px;
    }

    .contact-main-title {
        font-size: 3rem;
    }

    .contact-container {
        gap: 60px;
        padding: 0 30px;
    }

    .contact-form-wrapper,
    .location-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0 15px 0;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-main-title {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-form-wrapper,
    .location-info {
        padding: 30px 25px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-header h3,
    .location-header h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 15px;
    }

    .location-header {
        text-align: center;
        margin-bottom: 35px;
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(155, 119, 59, 0.1);
    }

    .location-header p {
        font-size: 0.95rem;
        color: #666;
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-detail-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 20px 15px;
        margin-bottom: 20px;
        background: rgba(155, 119, 59, 0.03);
        border-radius: 12px;
        border-left: 3px solid #9B773B;
        transition: all 0.3s ease;
    }

    .contact-detail-item:hover {
        background: rgba(155, 119, 59, 0.08);
        transform: translateX(3px);
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .contact-text h4 {
        font-size: 1rem;
        margin-bottom: 5px;
        color: #9B773B;
        font-weight: 600;
    }

    .contact-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #555;
    }
    
    .form-input, .form-select {
        padding: 14px 15px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 10px 0;
    }

    .contact-header {
        margin-bottom: 30px;
    }

    .contact-container {
        gap: 25px;
    }

    .nearest-places {
        margin-top: 15px;
    }

    .location-map-image {
        height: 200px;
    }
    
    .contact-container {
        padding: 0 15px;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-input, .form-select {
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    .inquiry-form {
        gap: 18px;
    }
    
    .form-row {
        gap: 18px;
    }
}
/* Video Section */
.video-section {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero logo over video - size reduced */
.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center-logo {
    width: clamp(120px, 18vw, 240px);
    height: auto;
    opacity: 0.5;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .center-logo {
        margin-bottom: -5px;
    }
}

@media (max-width: 480px) {
    .center-logo {
        margin-bottom: -10px;
    }
}

.logo-line {
    width: 80px;
    height: 2px;
    background: white;
    margin-top: 15px;
    border-radius: 1px;
}

/* Hero Tagline */
.hero-tagline {
    text-align: center;
}

.hero-tagline p {
    font-size: 2rem;
    color: white;
    font-weight: 100;
    text-shadow: none;
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Gilroy', sans-serif;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-tagline p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-tagline p {
        font-size: 1.2rem;
    }
}

.highlight-text {
    color: #F5DEB3;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 5rem;
    white-space: nowrap;
    overflow: hidden;
}

.highlight-text span {
    display: inline-block;
    overflow: visible;
}

@media (max-width: 768px) {
    .highlight-text {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .highlight-text {
        font-size: 2.8rem;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .center-logo { width: 150px; }

    .hero-logo {
        margin-bottom: 15px;
    }

    .hero-tagline {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .center-logo { width: 120px; }

    .hero-logo {
        margin-bottom: 10px;
    }

    .hero-tagline {
        margin-top: 10px;
    }

    .hero-content-wrapper {
        padding: 0 15px;
    }
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-btn {
    background: #9B773B;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #7a5e2f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 119, 59, 0.4);
}

/* Main Mobile Responsive - 768px and below */
@media (max-width: 768px) {
    .nav-bar {
        padding: 0 3vh;
        height: 10vh;
    }

    .nav-bar .logo > img {
        height: 8vh;
    }

    .links ul > li {
        display: none;
    }

    .links ul > i {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        color: white;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .mySwiper {
        width: 95%;
        height: 350px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

#mobile-nav{
    height: 100%;
    width: 100% ;
    background-color: transparent;
    top: -100%;
    position: absolute;
}

@media (max-width: 600px) {
.nav-bar {
        padding: 0 3vh;
    }
    .nav-bar .logo>img {
        height: 8vh;
    }

    .links ul>li {
        display: none;
    }
    .links ul>i {
        display: initial;
        font-size: 2.2rem;
        color: white;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .nav-bar {
        padding: 0 2vh;
        height: 9vh;
    }

    .nav-bar .logo > img {
        height: 7vh;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1rem;
        margin: 15px 0;
    }

    .cta-btn {
        font-size: 0.9rem;
        padding: 10px 25px;
    }

    .satvik-container {
        padding: 0 15px;
    }

    .satvik-title {
        font-size: 2rem;
    }

    .satvik-description {
        font-size: 0.9rem;
    }

    .mySwiper {
        width: 100%;
        height: 300px;
        border-radius: 15px;
    }

    .slide-text {
        padding: 20px 15px 15px;
    }

    .slide-text h3 {
        font-size: 1.4rem;
    }

    .slide-text p {
        font-size: 0.9rem;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-container {
        padding: 0 15px;
    }
}
.about-page{
    min-height: 80vh;
    width: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url('images/webp/Tree.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    position: relative;
}
.about-page #image{
    width: 50%;
    height: auto;
    min-height: 500px;
    background: transparent;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}



@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-page #image img {
    width: 85%;
    height: auto;
    min-height: 450px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal;
}

@media (max-width: 768px) {
    .about-page #image img {
        width: 95%;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .about-page #image img {
        width: 100%;
        min-height: 300px;
    }
}

.bhk-info {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(155, 119, 59, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.bhk-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.bhk-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
}

.about-page #text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 0 80px 0 60px;
    text-align: left;
}
.about-page #text h2{
    font-size: 3rem;
    color: #9B773B !important;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center !important;
    font-family: 'Gilroy', sans-serif;
    white-space: nowrap;
    margin-right: 50%;
}



.about-page #text h2 span {
    display: inline-block;
    overflow: visible;
}

.about-page #text p{
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    text-transform: none;
    max-width: 500px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .about-page #text p {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .about-page #text p {
        max-width: 100% !important;
        width: 100% !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .about-page #text p {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .about-page #text p {
        max-width: 100% !important;
        width: 100% !important;
        font-size: 1rem !important;
    }
}

.about-page #text .stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-page #text .stat-item {
    background: transparent;
    padding: 25px 20px;
    border-radius: 12px;
    border: 2px solid #9B773B;
    text-align: center;
    flex: 1;
    box-shadow: 0 8px 20px rgba(155, 119, 59, 0.1);
    transition: transform 0.3s ease;
}

.about-page #text .stat-item:hover {
    transform: translateY(-5px);
    border-color: #B8860B;
}

.about-page #text .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #9B773B;
    display: block;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-page #text .stat-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-page #text .stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-page {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .about-page #image {
        width: 70%;
        height: 400px;
        margin-bottom: 40px;
    }

    .about-page #text {
        width: 100%;
        padding: 0;
    }

    .about-page #text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 20px 20px;
        flex-direction: column;
    }

    .about-page #image {
        width: 100%;
        height: auto;
        min-height: 450px;
        margin-bottom: 15px;
        padding: 5px;
    }

    .about-page #text h2 {
        font-size: 3rem;
        text-align: center !important;
    }

    .about-page #text p {
        font-size: 1.1rem;
        max-width: 100%;
        width: 100%;
        text-align: center !important;
    }

    .about-page #text .stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .about-page #text .stat-item {
        padding: 20px 15px;
    }

    .bhk-info {
        top: 20px;
        left: 20px;
        padding: 10px 14px;
    }

    .bhk-text {
        font-size: 1.3rem;
    }

    .bhk-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 15px 15px;
        min-height: auto;
    }

    .about-page #image {
        width: 100%;
        height: auto;
        min-height: 400px;
        margin-bottom: 10px;
        background: transparent;
        padding: 0;
    }

    .about-page #text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center !important;
        margin-left: 5.5%;
    }

    .about-page #text p {
        font-size: 1.2rem;
        max-width: 100%;
        width: 100%;
        line-height: 1.6;
        text-align: center !important;
    }
}

/* Global image background removal */
img {
    background: transparent !important;
    background-color: transparent !important;
}

/* Remove background from all images */
.mySwiper img,
.swiper-slide img,
.location-map-image {
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: multiply;
}

/* Logo images - separate styling to avoid darkening */
.navbar-logo img,
.footer-logo img {
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal !important;
}

/* Specific background removal for logo images */
.center-logo,
.navbar-logo img,
.footer-logo img {
    background: transparent !important;
    background-color: transparent !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    mix-blend-mode: normal !important;
}

/* Remove background from slider images */
.swiper-slide img {
    background: transparent !important;
    background-color: transparent !important;
    object-fit: cover;
    border-radius: 15px;
}

/* Property card images */
.property-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 250px;
    display: block;
    position: relative;
}

/* Map image */
.location-map-image {
    background: transparent !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    }



    .about-page #text .stats {
        margin-top: 25px;
        gap: 12px;
    }

    .about-page #text .stat-item {
        padding: 15px 10px;
    }

    .about-page #text .stat-number {
        font-size: 1.8rem;
    }

    .bhk-info {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
    }

    .bhk-text {
        font-size: 1.1rem;
    }

    .bhk-label {
        font-size: 0.65rem;
    }


/* Satvik Villa Main Section */
.satvik-villa-section {
    padding: 120px 0;
    background: #F5F5DC;
    color: #333;
    position: relative;
    overflow: hidden;
}

.satvik-villa-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23c9a96e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.satvik-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.satvik-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.satvik-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(155, 119, 59, 0.3);
}

.satvik-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #9B773B;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Gilroy', sans-serif;
}

.satvik-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6b5b47;
    margin-bottom: 40px;
    max-width: 500px;
}

.satvik-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #9B773B;
}

.satvik-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.explore-btn, .contact-btn {
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.explore-btn {
    background: #9B773B;
    color: white;
}

.explore-btn:hover {
    background: #775d30;
    transform: translateY(-2px);
}

.contact-btn {
    background: transparent;
    color: #9B773B;
    border: 2px solid #9B773B;
}

.contact-btn:hover {
    background: #9B773B;
    color: white;
    transform: translateY(-2px);
}

.satvik-villa-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23c9a96e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.satvik-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 60px !important;
    position: relative !important;
    z-index: 20 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
}

.satvik-content {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 60px !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 30 !important;
    width: 100% !important;
    height: auto !important;
}

.satvik-left {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 40 !important;
    width: 100% !important;
    height: auto !important;
}

.satvik-right {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 40 !important;
    width: 100% !important;
    height: auto !important;
}

.satvik-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #1B1918;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Gilroy', sans-serif;
}

.satvik-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6b5b47;
    margin-bottom: 40px;
    max-width: 500px;
}

.satvik-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #9B773B;
}

.satvik-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.explore-btn, .contact-btn {
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.explore-btn {
    background: #9B773B;
    color: white;
}

.explore-btn:hover {
    background: #775d30;
    transform: translateY(-2px);
}

.contact-btn {
    background: transparent;
    color: #9B773B;
    border: 2px solid #9B773B;
}

.contact-btn:hover {
    background: #9B773B;
    color: white;
    transform: translateY(-2px);
}
/* Satvik Villa Section Responsive */
@media (max-width: 1024px) {
    .satvik-villa-section {
        padding: 80px 0;
    }

    .satvik-container {
        padding: 0 40px;
    }

    .satvik-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .satvik-title {
        font-size: 4rem;
    }

    .satvik-description {
        max-width: 600px;
        margin: 0 auto 40px;
    }

    .satvik-features {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .satvik-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .satvik-villa-section {
        padding: 80px 0 60px;
    }

    .satvik-container {
        padding: 0 20px;
    }

    .satvik-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
        align-items: stretch !important;
    }

    .satvik-left {
        order: 1 !important;
        width: 100% !important;
    }

    .satvik-right {
        order: 2 !important;
        width: 100% !important;
    }

    .satvik-badge {
        font-size: 11px;
        padding: 8px 20px;
        margin-bottom: 25px;
        display: inline-block;
    }

    .satvik-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 25px;

    }

    .satvik-description {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 35px;
    }

    .satvik-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        max-width: 100% !important;
        margin-bottom: 40px !important;
        justify-content: center !important;
    }

    .feature-item {
        padding: 15px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .satvik-cta {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        margin-bottom: 30px !important;
        width: 100% !important;
    }

    .explore-btn, .contact-btn {
        width: 100% !important;
        max-width: 300px !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }

    .simple-slider {
        max-width: 100%;
        padding: 0;
    }

    .mySwiper {
        height: 450px;
        width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .satvik-villa-section {
        padding: 60px 0 40px !important;
    }

    .satvik-container {
        padding: 0 15px !important;
    }

    .satvik-content {
        gap: 30px !important;
    }

    .satvik-badge {
        font-size: 10px !important;
        padding: 6px 16px !important;
        margin-bottom: 20px !important;
    }

    .satvik-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .satvik-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }

    .satvik-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-bottom: 35px !important;
        max-width: 100% !important;
    }

    .feature-item {
        font-size: 0.9rem !important;
        gap: 12px !important;
        padding: 12px !important;
        text-align: center !important;
        flex-direction: column !important;
    }

    .feature-item i {
        font-size: 1.2rem !important;
    }

    .satvik-cta {
        gap: 12px !important;
        margin-bottom: 25px !important;
    }

    .explore-btn, .contact-btn {
        font-size: 0.9rem !important;
        padding: 14px 20px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .simple-slider {
        padding: 0 !important;
    }

    .mySwiper {
        height: 300px !important;
        border-radius: 12px !important;
    }

    .slide-text {
        padding: 20px 15px 15px;
    }

    .slide-text h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .slide-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

    .slide-text h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .slide-text p {
        font-size: 1rem;
    }


/* Additional Mobile Landscape Responsive */
@media (max-width: 640px) and (orientation: landscape) {
    .satvik-villa-section {
        padding: 40px 0;
    }

    .satvik-content {
        gap: 30px;
    }

    .satvik-title {
        font-size: 2.2rem;
    }

    .mySwiper {
        height: 280px;
    }
}

/* Base Satvik Elements - Force Visibility */
.satvik-badge {
    display: inline-block !important;
    background: linear-gradient(45deg, #9B773B, #c9a96e) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 15px rgba(155, 119, 59, 0.3) !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.satvik-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
    transform: none !important;
    animation: none !important;
}

.satvik-description {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.satvik-features {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.feature-item {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.satvik-cta {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.explore-btn, .contact-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.simple-slider {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.mySwiper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.satvik-title {
    font-size: 5rem;
    font-weight: 700;
    color: #9B773B;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Gilroy', sans-serif;
    text-shadow: none;
    overflow: hidden;
    display: block;
    visibility: visible;
    opacity: 1;
    transform: none !important;
    animation: none !important;
}

.satvik-title span {
    display: inline-block;
    overflow: visible;
}

.satvik-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.satvik-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-weight: 500;
}

.feature-item i {
    color: #9B773B;
    font-size: 1.2rem;
}

.satvik-cta {
    display: flex;
    gap: 20px;
}

.explore-btn, .contact-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explore-btn {
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(155, 119, 59, 0.3);
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(155, 119, 59, 0.4);
}

.contact-btn {
    background: transparent;
    color: #c9a96e;
    border: 2px solid #c9a96e;
}

.contact-btn:hover {
    background: #c9a96e;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.satvik-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.satvik-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.satvik-image-container:hover .satvik-main-image {
    transform: scale(1.05);
}

.satvik-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.price-tag {
    background: rgba(155, 119, 59, 0.95);
    backdrop-filter: none;
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.price-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

/* Pride Section - Responsive Design */
.pride-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.pride-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.pride-header {
    margin-bottom: 60px;
}

.pride-subtitle {
    font-size: 12px;
    color: #c9a96e;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pride-main-title {
    font-size: 4rem;
    color: #9B773B;
    font-weight: 600;
    margin: 0;
    font-family: 'Gilroy', sans-serif;
    overflow: hidden;
    line-height: 1.2;
}

.pride-main-title span {
    display: inline-block;
    overflow: visible;
}

.properties-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

.property-status {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.property-status.completed {
    background: #16a34a;
    color: white;
    border: none;
}

.property-status.ongoing {
    background: #ea580c;
    color: white;
    border: none;
}

.property-info {
    padding: 20px;
    text-align: left;
}

.property-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Gilroy', sans-serif;
    line-height: 1.3;
}

.property-location {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.property-location::before {
    content: '';
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 20.9l4.95-4.95a7 7 0 1 0-9.9 0L12 20.9zm0 2.828l-6.364-6.364a9 9 0 1 1 12.728 0L12 23.728zM12 13a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 2a4 4 0 1 1 0-8 4 4 0 0 1 0 8z"/></svg>') no-repeat center;
    background-size: contain;
    margin-right: 6px;
    display: inline-block;
    flex-shrink: 0;
}

.property-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(155, 119, 59, 0.1);
    gap: 10px;
}

.property-type {
    font-size: 12px;
    color: #9B773B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(155, 119, 59, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(155, 119, 59, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

.property-year {
    font-size: 13px;
    color: #555;
    font-weight: 700;
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.view-all-btn {
    text-align: center;
}

.view-projects-btn {
    background: transparent;
    border: 1px solid #c9a96e;
    color: #c9a96e;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
}

.view-projects-btn:hover {
    background: #c9a96e;
    color: white;
}

/* Pride Section Responsive */
@media (max-width: 1200px) {
    .properties-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .property-image {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .pride-section {
        padding: 80px 0;
    }
    
    .pride-main-title {
        font-size: 3.5rem;
    }
    
    .properties-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-info {
        padding: 18px;
    }
    
    .property-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .pride-section {
        padding: 60px 0;
    }
    
    .pride-container {
        padding: 0 15px;
    }
    
    .pride-header {
        margin-bottom: 40px;
    }
    
    .pride-main-title {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    
    .properties-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .property-card {
        border-radius: 10px;
    }
    
    .property-image {
        height: 180px;
    }
    
    .property-info {
        padding: 15px;
    }
    
    .property-name {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .property-location {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .property-details {
        margin-top: 12px;
        padding-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .property-type,
    .property-year {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .pride-section {
        padding: 50px 0;
    }
    
    .pride-container {
        padding: 0 15px;
    }
    
    .pride-header {
        margin-bottom: 30px;
    }
    
    .pride-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .pride-main-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .properties-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .property-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-info {
        padding: 18px;
    }
    
    .property-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .property-location {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .property-details {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .property-type,
    .property-year {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .view-projects-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}


.showcase-item:hover .showcase-bg {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

.showcase-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
}

.showcase-location {
    font-size: 12px;
    color: #c9a96e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.showcase-name {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.2;
}

.showcase-price {
    font-size: 14px;
    font-weight: 300;
}

/* Pandit Javdekar Style Navbar */
.pandit-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1001;
    transition: all 0.3s ease;
}

.pandit-navbar.scrolled {
    background-color:#F5DFBA !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pandit-navbar.scrolled .whatsapp-btn img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(1000%) hue-rotate(15deg) brightness(95%) contrast(85%) !important;
}

.pandit-navbar.scrolled .whatsapp-btn span {
    color: #9A793B !important;
    text-shadow: none !important;
}

.pandit-navbar.scrolled .line {
    background: #9A793B !important;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4rem;
    margin: 0 auto;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.line {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.hamburger-menu.active .line1 {
    transform: rotate(45deg) translate(3.5px, 3.5px);
}

.hamburger-menu.active .line2 {
    transform: rotate(-45deg) translate(3.5px, -3.5px);
}

.navbar-logo img {
    height: 80px;
    width: auto;
}

.logo-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

.whatsapp-btn span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.get-in-touch-btn {
    background: #9B773B;
    color: white;
    border: none;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.get-in-touch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 119, 59, 0.3);
    background: #775d30;
}

.mobile-menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    background: rgba(245, 223, 186, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1002;
    border-top: 1px solid rgba(155, 119, 59, 0.2);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 80px;
    padding-top: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    color: #908380;
}

.mobile-menu-item {
    color: #6b5b47;
    position: relative;
    text-decoration: none;
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.2;
    transition: all 0.3s ease;
    font-family: 'Gilroy', sans-serif;
    opacity: 1;
    padding: 0;
    text-align: left;
    left: 15%;
    margin-top: 5px;
}

.mobile-menu-item:hover {
    color:#1B1918;
    transition: all 0.3s ease;
}




.mobile-contact-section {
    padding: 20px 0;
    margin: 30px 0 50px 0;
}

.mobile-contact-section h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 0;
    background: none;
}

.contact-item img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(1000%) hue-rotate(15deg) brightness(95%) contrast(85%);
}

.contact-item h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.phone-numbers {
    display: block;
}

.phone-numbers .contact-item {
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .mobile-contact-section {
        margin-bottom: 60px;
    }
}

/* Desktop-only styles for mobile-contact-section */
@media (min-width: 1025px) {
    .mobile-contact-section {
        padding: 25px 0;
        margin: 30px 0 50px 0;
        max-width: 500px;
        position: relative;
        left: 15%;
    }
    
    .mobile-contact-section h3 {
        color: #333;
        font-size: 20px;
        margin-bottom: 15px;
        text-align: left;
        font-weight: 700;
        padding-left: 0;
    }
    
    .contact-item {
        margin-bottom: 8px;
        padding: 0;
        background: none;
        align-items: flex-start;
    }
    
    .contact-item img {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .contact-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        line-height: 1.4;
        margin: 0;
        text-align: left;
    }
    
    .contact-item a {
        color: #333;
        font-weight: 600;
        text-decoration: none;
    }
    
    .phone-numbers {
        display: block;
    }
    
    .phone-numbers .contact-item {
        margin-bottom: 6px;
    }
    
    .mobile-get-in-touch-btn {
        display: block;
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        background: #9B773B;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        margin-top: 15px;
    }
    
    .mobile-get-in-touch-btn:hover {
        background: #775d30;
    }
}

@media (max-width: 480px) {
    .mobile-contact-section {
        margin-bottom: 70px;
    }
    
    .contact-item h4 {
        font-size: 13px;
    }
}

.mobile-bottom{
width: 80%;
height: auto;
display: flex;
align-items: left;
justify-content: center;
gap: 10vh;
margin-top: 10%;
text-align: left;
}
.mobile-bottom h4{
    color: #222;
    font-weight:600;
}
.email{
display: flex;
width: 30%;
}
.number {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Desktop-only styles for mobile-bottom section */
@media (min-width: 1025px) {
    .mobile-bottom {
        width: 90%;
        gap: 5vh;
        margin-top: 5%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-bottom h4 {
        color: #333;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.4;
    }
    
    .email {
        width: 40%;
        align-items: flex-start;
        gap: 12px;
    }
    
    .number {
        gap: 8px;
    }
    
    .number .contact-item {
        margin-bottom: 5px;
    }
    
    .location-icon, .phone-icon {
        width: 18px;
        height: 18px;
        filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(1000%) hue-rotate(15deg) brightness(95%) contrast(85%);
    }
    
    .mobile-get-in-touch-btn {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 15px auto 0;
        padding: 12px 20px;
        background: #9B773B;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .mobile-get-in-touch-btn:hover {
        background: #775d30;
        transform: translateY(-2px);
    }
}

/* Contact Form Textarea */
textarea {
    resize: none;
}



@media (max-width: 1024px) {
    .navbar-container {
        padding: 6px 2rem;
    }

    .navbar-logo img {
        height: 60px;
    }



    .get-in-touch-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Desktop only elements */
.desktop-only {
    display: block;
}

/* Mobile get in touch button */
.mobile-get-in-touch-btn {
    background: #9B773B;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: none;
    width: 100%;
}

.mobile-get-in-touch-btn:hover {
    background: #775d30;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pandit-navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: none;
        box-shadow: none;
        height: 100px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .mobile-menu {
        top: 0;
        height: 100vh;
        padding-top: 100px;
        background: rgba(245, 223, 186, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .pandit-navbar.scrolled {
        background: #F5DFBA !important;
    }

    .pandit-navbar.scrolled .whatsapp-btn img {
        filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(1000%) hue-rotate(15deg) brightness(95%) contrast(85%) !important;
    }

    .pandit-navbar.scrolled .whatsapp-btn span {
        color: #9A793B !important;
        text-shadow: none !important;
    }

    .pandit-navbar.scrolled .line {
        background: #9B773B !important;
    }

    .navbar-container {
        padding: 8px 1rem !important;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100px;
    }

    .navbar-logo {
        display: flex !important;
        z-index: 1003;
        position: relative;
        padding: 0;
    }

    .navbar-logo img {
        height: 50px;
        width: auto;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-get-in-touch-btn {
        display: block;
    }

    .navbar-actions {
        display: flex !important;
        align-items: center;
        gap: 15px;
        z-index: 9999;
        position: relative;
    }

    .whatsapp-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        padding: 10px !important;
        border-radius: 8px;
        z-index: 9999;
        position: relative;
        min-width: 45px;
        height: 45px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: scale(1.05);
    }

    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn img {
        width: 26px !important;
        height: 26px !important;
        filter: brightness(0) invert(1);
    }

    .hamburger-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        background: transparent !important;
        border-radius: 8px;
        cursor: pointer;
        z-index: 9999;
        position: relative;
        gap: 5px;
        transition: all 0.3s ease;
        border: none;
    }

    .hamburger-menu:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: scale(1.05);
    }

    .line {
        background: #fff !important;
        width: 28px !important;
        height: 3px !important;
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block !important;
    }

    .pandit-navbar.scrolled .hamburger-menu .line {
        background: #9B773B !important;
    }

    /* Ensure mobile navbar is always visible */
    .pandit-navbar {
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Fix any potential conflicts */
    .navbar-actions > * {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Additional mobile navbar fixes */
@media (max-width: 768px) {
    /* Force mobile navbar elements to be visible */
    .navbar-actions .whatsapp-btn,
    .navbar-actions .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Ensure proper stacking */
    .navbar-actions {
        z-index: 10000 !important;
    }

    .properties-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .pandit-navbar {
        height: 80px;
    }
    
    .mobile-menu {
        top: 0;
        height: 100vh;
        padding-top: 80px;
    }
    
    .navbar-container {
        padding: 8px 15px;
        background: rgba(0, 0, 0, 0.9);
    }

    .navbar-logo img {
        height: 60px;
    }

    .navbar-actions {
        gap: 8px;
        z-index: 9999;
        position: relative;
        background: transparent !important;
        padding: 6px;
        border-radius: 10px;
    }

    .whatsapp-btn {
        padding: 8px;
        z-index: 9999;
        position: relative;
        display: flex !important;
        background: transparent;
        border-radius: 8px;
    }

    .whatsapp-btn img {
        width: 26px !important;
        height: 26px !important;
        display: block !important;
        filter: brightness(0) invert(1) !important;
    }

    .get-in-touch-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .hamburger-menu {
        width: 40px;
        height: 40px;
        z-index: 9999;
        position: relative;
        display: flex !important;
        background: transparent;
        border-radius: 8px;
    }

    .line {
        width: 24px !important;
        height: 3px !important;
        display: block !important;
        background: #fff !important;
    }

    .properties-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Menu Responsive */
@media (max-width: 768px) {
    .mobile-contact-section {
        margin-bottom: 50px;
    }
    
    .contact-item h4 {
        font-size: 14px;
    }
    
    .contact-item img {
        width: 18px;
        height: 18px;
    }

    .mobile-menu-content {
        padding: 40px 40px;
        height: calc(100% - 50px);
    }

    .mobile-menu-item {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin: 8px 0 !important;
        position: relative !important;
        left: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        font-weight: 300 !important;
    }

    .mobile-bottom {
        width: 95% !important;
        gap: 20px !important;
        flex-direction: column !important;
        margin-top: 5% !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
    }

    .email {
        width: 100% !important;
        margin-bottom: 15px !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    
    .mobile-bottom h4 {
        font-size: 13px !important;
        line-height: 1.4 !important;
        font-weight: 500 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }
    
    .number {
        width: 100% !important;
        gap: 8px !important;
    }
    
    .contact-item {
        margin-bottom: 8px !important;
    }
    
    .location-icon, .phone-icon {
        width: 18px !important;
        height: 18px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }
}

@media (max-width: 480px) {
    .mobile-contact-section {
        padding: 20px 15px;
        margin-bottom: 60px;
    }
    
    .mobile-contact-section h3 {
        font-size: 18px;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item h4 {
        font-size: 13px;
    }
    
    .contact-item img {
        width: 16px;
        height: 16px;
        margin-right: 12px;
    }
    
    .phone-numbers {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-content {
        padding: 30px 20px;
        height: calc(100% - 80px);
    }

    .mobile-menu-item {
        font-size: 1.8rem !important;
        line-height: 1.0 !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
        font-weight: 300 !important;
    }

    .mobile-bottom {
        width: 100% !important;
        gap: 15px !important;
        margin-top: 4% !important;
        flex-direction: column !important;
        padding: 12px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
    }

    .mobile-bottom h4 {
        font-size: 12px !important;
        line-height: 1.4 !important;
        font-weight: 500 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
    }
    
    .email {
        margin-bottom: 12px !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }
    
    .number {
        width: 100% !important;
        gap: 6px !important;
    }
    
    .contact-item {
        margin-bottom: 6px !important;
    }
    
    .location-icon, .phone-icon {
        width: 16px !important;
        height: 16px !important;
        margin-top: 1px !important;
        flex-shrink: 0 !important;
    }
}

/* Navbar Hide/Show Animation */
.pandit-navbar.menu-open {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.pandit-navbar {
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.location-icon, .phone-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0px;
    margin-right: 10px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(15%) saturate(1000%) hue-rotate(15deg) brightness(95%) contrast(85%);
}

.email {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.email h4, .number h4 {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Simple Clean Slider Styles */
.simple-slider {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Desktop - Full width slider */
@media (min-width: 1025px) {
    .simple-slider {
        max-width: none !important;
        margin: 0 !important;
        width: 100% !important;
    }
}

.mySwiper {
    width: 100%;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(155, 119, 59, 0.1);
    position: relative;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.swiper-slide {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    image-rendering: optimizeQuality;
}

/* Slide Text Overlay */
.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: left;
    z-index: 3;
}

.slide-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #F5F5DC;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.slide-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #F5F5DC;
    margin: 0;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s, opacity 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s;
    will-change: transform, opacity;
}

/* Active slide animation with smooth easing */
.swiper-slide-active .slide-text h3 {
    transform: translateY(0);
    opacity: 1;
}

.swiper-slide-active .slide-text p {
    transform: translateY(0);
    opacity: 1;
}

/* Swiper wrapper ultra-smooth transitions */
.swiper-wrapper {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Additional smoothness optimizations */
.swiper-container {
    overflow: hidden;
    position: relative;
}

.swiper-slide-transition {
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Prevent any flickering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Additional smoothness for slide transitions */
.swiper-slide-transition-start .slide-text h3,
.swiper-slide-transition-start .slide-text p {
    transform: translateY(50px);
    opacity: 0;
}

/* Premium Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #9B773B !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    margin-top: -27px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    z-index: 10 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: white !important;
    transform: scale(1.1) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 600 !important;
}

/* Pagination removed as requested */

/* Mobile Responsive */
@media (max-width: 768px) {
    .simple-slider {
        max-width: 100%;
        padding: 0 20px;
    }

    .mySwiper {
        height: 400px;
    }

    .slide-text {
        padding: 30px 20px 20px;
    }

    .slide-text h3 {
        font-size: 1.8rem;
    }

    .slide-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .simple-slider {
        padding: 0 15px;
    }

    .mySwiper {
        height: 350px;
        border-radius: 15px;
    }

    .slide-text {
        padding: 25px 15px 15px;
    }

    .slide-text h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .slide-text p {
        font-size: 1rem;
    }
}

/* Critical Mobile Navbar Fix - Override all conflicts */
@media screen and (max-width: 768px) {
    .pandit-navbar .navbar-actions .whatsapp-btn {
        display: flex !important;
        background: transparent !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    .pandit-navbar .navbar-actions .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    .pandit-navbar .navbar-actions .hamburger-menu .line {
        display: block !important;
        background: #fff !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* FLAGSHIP PROJECT - Emergency Fix */
.satvik-villa-section,
.satvik-container,
.satvik-content,
.satvik-left,
.satvik-right,
.satvik-badge,
.satvik-title,
.satvik-description,
.satvik-features,
.feature-item,
.satvik-cta,
.explore-btn,
.contact-btn,
.simple-slider,
.mySwiper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999 !important;
}

.satvik-content {
    display: grid !important;
}

.satvik-features {
    display: grid !important;
}

.satvik-cta {
    display: flex !important;
}

.feature-item {
    display: flex !important;
}

.explore-btn, .contact-btn {
    display: inline-block !important;
}

/* FLAGSHIP PROJECT SECTION - PROPER RESPONSIVE */
.satvik-villa-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #FAEBD7 100%);
    position: relative;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.satvik-villa-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23c9a96e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.satvik-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    border-radius: 30px !important;
    backdrop-filter: none !important;
}

.satvik-content {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    gap: 80px !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    padding: 60px 0 !important;
}

.satvik-left {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 3 !important;
    width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    height: 500px !important;
    padding: 0 20px !important;
}

.satvik-right {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 3 !important;
    width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
    height: 500px !important;
}

.satvik-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(155, 119, 59, 0.3);
}

.satvik-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #9B773B;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Gilroy', sans-serif;
    overflow: visible;
}

.satvik-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6b5b47;
    margin-bottom: 40px;
    max-width: 500px;
}

.satvik-features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 500px !important;
}

.feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 15px 18px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 12px !important;
    font-weight: 500 !important;
    color: #333 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(155, 119, 59, 0.1) !important;
    backdrop-filter: none !important;
    font-size: 0.9rem !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(155, 119, 59, 0.3) !important;
}

.feature-item i {
    font-size: 1.2rem !important;
    color: #9B773B !important;
    flex-shrink: 0 !important;
}

.satvik-cta {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.explore-btn, .contact-btn {
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.explore-btn {
    background: #9B773B !important;
    color: white !important;
}

.explore-btn:hover {
    background: #775d30 !important;
    transform: translateY(-2px) !important;
}

.contact-btn {
    background: transparent !important;
    color: #9B773B !important;
    border: 2px solid #9B773B !important;
    width: 100% !important;
}

.contact-btn:hover {
    background: #9B773B !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.simple-slider {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

/* CRITICAL MOBILE NAVBAR FIX */
@media (max-width: 768px) {
    /* Force transparent background for mobile navbar */
    .pandit-navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    /* Only add background when scrolled */
    .pandit-navbar.scrolled {
        background: rgba(245, 223, 186, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: none !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        outline: none !important;
    }
    
    /* Fix mobile menu background */
    .mobile-menu {
        background: rgba(245, 223, 186, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    }
    
    /* Ensure proper navbar container */
    .navbar-container {
        background: transparent !important;
        padding: 8px 1rem !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    /* Fix scrolled navbar container */
    .pandit-navbar.scrolled .navbar-container {
        background: transparent !important;
        border: none !important;
        border-bottom: none !important;
        border-top: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    .simple-slider {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
}

.mySwiper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 500px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
}

/* PREMIUM SPECIFICATIONS RESPONSIVE */
.premium-specs-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.specs-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.specs-badge {
    display: inline-block;
    background: linear-gradient(45deg, #9B773B, #c9a96e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.specs-main-title {
    font-size: 3.5rem;
    color: #9B773B;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Gilroy', sans-serif;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: none;
}

.specs-hero-desc {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.specs-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.specs-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.spec-tab {
    padding: 12px 24px;
    border: 2px solid #9B773B;
    background: transparent;
    color: #9B773B;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spec-tab.active,
.spec-tab:hover {
    background: #9B773B;
    color: white;
}

.spec-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.spec-card-luxury {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(155, 119, 59, 0.1);
    transition: all 0.3s ease;
}

.spec-card-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.spec-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-icon-premium {
    width: 50px;
    height: 50px;
    background: rgba(155, 119, 59, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9B773B;
    font-size: 1.5rem;
}

.spec-card-header h3 {
    font-size: 1.2rem;
    color: #9B773B;
    font-weight: 600;
    margin: 0;
}

.spec-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.spec-item:last-child {
    border-bottom: none;
}

/* FLAGSHIP PROJECT RESPONSIVE */
@media (max-width: 1024px) {
    .satvik-villa-section {
        padding: 80px 0 !important;
    }

    .satvik-container {
        padding: 0 40px !important;
    }

    .satvik-content {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center !important;
    }

    .satvik-title {
        font-size: 4rem !important;
    }

    .satvik-description {
        max-width: 600px !important;
        margin: 0 auto 40px !important;
    }

    .satvik-features {
        max-width: 500px !important;
        margin: 0 auto 50px !important;
    }

    .satvik-cta {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .mySwiper {
        height: 450px !important;
    }

    .specs-main-title {
        font-size: 3rem;
        line-height: 1.3;
    }

    .spec-grid-premium {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .satvik-villa-section {
        padding: 60px 0 !important;
    }

    .satvik-container {
        padding: 0 20px !important;
    }

    .satvik-content {
        gap: 40px !important;
    }

    .satvik-title {
        font-size: 2.8rem !important;
        margin-bottom: 25px !important;
    }

    .satvik-description {
        font-size: 1.1rem !important;
        margin-bottom: 35px !important;
        max-width: 100% !important;
    }

    .satvik-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-bottom: 40px !important;
        max-width: 100% !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .feature-item {
        padding: 15px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .satvik-cta {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .explore-btn, .contact-btn {
        width: 100% !important;
        max-width: 300px !important;
        padding: 16px 24px !important;
        font-size: 1rem !important;
    }

    .mySwiper {
        height: 400px !important;
        border-radius: 15px !important;
    }

    .premium-specs-section {
        padding: 60px 0;
    }

    .specs-main-title {
        font-size: 2.5rem;
        line-height: 1.3;
        white-space: nowrap;
    }

    .specs-hero-desc {
        font-size: 1rem;
    }

    .specs-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .spec-tab {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .spec-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spec-card-luxury {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .satvik-villa-section {
        padding: 50px 0 !important;
    }

    .satvik-container {
        padding: 0 15px !important;
    }

    .satvik-content {
        gap: 30px !important;
    }

    .satvik-badge {
        font-size: 10px !important;
        padding: 6px 16px !important;
        margin-bottom: 20px !important;
    }

    .satvik-title {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
    }

    .satvik-description {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .satvik-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-bottom: 35px !important;
        width: 100% !important;
        max-width: none !important;
        justify-content: space-between !important;
    }

    .feature-item {
        font-size: 0.85rem !important;
        padding: 10px !important;
        gap: 6px !important;
        flex-direction: column !important;
        text-align: center !important;
        min-height: 75px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .feature-item i {
        font-size: 1.2rem !important;
    }

    .satvik-cta {
        gap: 12px !important;
    }

    .explore-btn, .contact-btn {
        font-size: 0.9rem !important;
        padding: 14px 20px !important;
        max-width: 100% !important;
    }

    .mySwiper {
        height: 300px !important;
        border-radius: 12px !important;
    }

    .slide-text {
        padding: 20px 15px 15px !important;
    }

    .slide-text h3 {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
    }

    .slide-text p {
        font-size: 0.9rem !important;
    }

    .premium-specs-section {
        padding: 40px 0;
    }

    .specs-hero {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .specs-badge {
        font-size: 10px;
        padding: 6px 16px;
    }

    .specs-main-title {
        font-size: 2rem;
        line-height: 1.3;
        white-space: nowrap;
    }

    .specs-hero-desc {
        font-size: 0.9rem;
    }

    .specs-showcase {
        padding: 0 15px;
    }

    .spec-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .spec-card-luxury {
        padding: 20px 15px;
    }

    .spec-card-header h3 {
        font-size: 1rem;
    }

    .spec-icon-premium {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .spec-item {
        font-size: 0.85rem;
        padding: 10px 0;
    }
}

/* Force remove glass effects - Override all previous rules */
.pandit-navbar,
.nav-bar.scrolled,
.pandit-navbar * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Force darker video overlay */
.video-overlay {
    background: rgba(0, 0, 0, 0.75) !important;
}

/* Mobile Properties Grid Override */
@media (max-width: 768px) {
    .properties-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .property-image {
        height: 220px !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

@media (max-width: 480px) {
    .properties-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .property-image {
        height: 250px !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

/* Contact Section Equal Heights */
.contact-container {
    align-items: stretch !important;
}

.contact-form-wrapper,
.location-info {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.contact-details {
    flex-grow: 1 !important;
}

/* Mobile Hamburger Color Fix - Most Specific Rule */
@media (max-width: 768px) {
    .pandit-navbar.scrolled .navbar-actions .hamburger-menu .line {
        background: #9B773B !important;
    }
}

/* Force 2x2 Feature Grid Layout - Production Fix */
.satvik-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto 40px !important;
}

.feature-item {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    flex: none !important;
}

/* Ensure 2x2 grid on all devices */
@media (min-width: 320px) {
    .satvik-features {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
    }
}

/* Mobile Navbar Black Line Fix - Final Override */
@media (max-width: 768px) {
    .pandit-navbar,
    .pandit-navbar.scrolled,
    .navbar-container,
    .pandit-navbar *,
    .navbar-container * {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: none !important;
        outline: none !important;
        text-decoration: none !important;
    }
    
    /* Remove any pseudo-elements that might create lines */
    .pandit-navbar::before,
    .pandit-navbar::after,
    .navbar-container::before,
    .navbar-container::after {
        display: none !important;
        content: none !important;
        border: none !important;
        background: none !important;
    }
}

/* Font Awesome icons loaded from CDN */

/* ✅ FIXED: Image Optimization CSS - Add this to your existing CSS */

/* Image Performance Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Compress images with CSS (helps with large images) */
.hero-image, 
.main-villa-image {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

/* WebP format support with fallback */
.modern-browser img[src$=".webp"] {
    image-rendering: -webkit-optimize-contrast;
}

/* ✅ FIXED: SEO Hidden Elements (maintains UI) */
.seo-hidden {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Internal Links (hidden but accessible to search engines) */
.internal-links {
    display: none;
    visibility: hidden;
}

/* Schema.org microdata styling (invisible to users) */
[itemscope] {
    position: relative;
}

/* ✅ PERFORMANCE: Critical CSS for above-the-fold content */
@media (max-width: 768px) {
    img {
        width: 100%;
        height: auto;
    }
}

/* End of CSS file */

/* Clickable Phone and Email Links */
a[href^="tel:"], a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

a[href^="tel:"]:hover, a[href^="mailto:"]:hover {
    color: #9B773B;
    text-decoration: underline;
}

/* Footer contact links */
.footer .contact-item a[href^="tel:"], 
.footer .contact-item a[href^="mailto:"] {
    color: #fff;
}

.footer .contact-item a[href^="tel:"]:hover, 
.footer .contact-item a[href^="mailto:"]:hover {
    color: #F5F5DC;
}

/* Mobile menu contact links */
.mobile-bottom a[href^="tel:"], 
.mobile-bottom a[href^="mailto:"] {
    color: inherit;
}

.mobile-bottom a[href^="tel:"]:hover, 
.mobile-bottom a[href^="mailto:"]:hover {
    color: #9B773B;
}

/* Address tag styling */
address {
    font-style: normal;
    color: inherit;
    line-height: inherit;
}