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

/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');
body {
    font-family: "Poppins", sans-serif;
    background-color: #000000;
}

.home {
    min-height: 100vh;
    position: relative;
    margin: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

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

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 120px;
    background-color: transparent;
    z-index: 1000;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sticky header states */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 120px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(237, 197, 104, 0.2);
}

.navbar.sticky-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.sticky-visible {
    transform: translateY(0);
    opacity: 1;
    animation: slideDownFade 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth slide down animation */
@keyframes slideDownFade {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo scaling in sticky mode */
.navbar.sticky .logo img {
    height: 4vh;
    transition: height 0.3s ease;
}

/* Responsive sticky header */
@media (max-width: 1200px) {
    .navbar.sticky {
        padding: 12px 40px;
    }
}

@media (max-width: 992px) {
    .navbar.sticky {
        padding: 12px 20px;
    }
    
    .navbar.sticky .logo img {
        height: 3.5vh;
    }
}

@media (max-width: 768px) {
    .navbar.sticky {
        padding: 10px 20px;
    }
    
    .navbar.sticky .logo img {
        height: 3vh;
    }
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 50;
}

.logo img {
    height: 5vh;
}

/* New right-side container for navigation and button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between nav links and button */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between individual links */
}

/* Enhanced premium navigation links with gold theme */
.nav-links a {
  color: #fff;
    text-decoration: none;
  /* margin: 0 10px; */
    font-size: 14px;
    font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: #EDC568;
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  width: 100%;
  box-shadow: 0 0 8px rgba(237, 197, 104, 0.6);
}

/* Premium gradient contact button */
.contact-btn {
  background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  background-size: 200% 200%;
  color: #2c2c2c;
    border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
    cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
  text-transform: uppercase;
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.contact-btn:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
  animation: shimmer 2s infinite;
}

.contact-btn:hover::before {
  left: 100%;
}

.contact-btn:active {
  transform: translateY(0) scale(1.02);
}

@keyframes shimmer {
  0%, 100% { background-position: left center; }
  50% { background-position: right center; }
}

/* Smooth Button Split Animations */
@keyframes slideToLeft {
    0% {
        transform: translateX(0) scale(1);
        border-radius: 50px;
    }
    50% {
        transform: translateX(-10px) scale(0.95);
        border-radius: 45px;
    }
    100% {
        transform: translateX(0) scale(1);
        border-radius: 50px;
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.7) rotateY(15deg);
        border-radius: 50px;
    }
    30% {
        opacity: 0.3;
        transform: translateX(30px) scale(0.8) rotateY(10deg);
    }
    60% {
        opacity: 0.7;
        transform: translateX(10px) scale(0.9) rotateY(5deg);
        border-radius: 45px;
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
        border-radius: 50px;
    }
}

.hero {
    min-height: calc(100vh - 100px);
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-line {
    display: block;
    white-space: nowrap;
}

/* Special styling for the "New Exclusive Xperience" line */
.hero-line-nexperience {
    white-space: nowrap; /* Keep on one line for medium+ screens */
}

.highlight-word {
    display: inline-block;
    white-space: nowrap;
}

.highlight-letter {
    font-size: 1.25em;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        #FFD700 0%,
        #EDC568 25%,
        #FFD700 50%,
        #F4E18C 75%,
        #FFD700 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline;
    text-shadow: 
        0 0 5px rgba(255, 215, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4)) 
            drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

.divider {
    width: 50px;
    height: 2px;
    background-color: white;
    margin: 20px auto;
}

.subtitle {
    font-size: 2rem;
    font-style: italic;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    color: white;
    cursor: pointer;
}

.scroll-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.chat-btn {
    background-color: white;
    color: black;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 20px 60px;
    }
    
    .contact-btn {
        right: 60px;
    }
    
    .hero {
        padding: 0 60px;
    }
}

/* Tablet responsive styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.2rem;
        gap: 0.3rem;
    }
    
    .hero-line {
        text-align: center;
    }
    
    .highlight-letter {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
    }
    
    .nav-right {
        display: none; /* Hide both nav links and button on mobile */
    }
    
    .hero {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        gap: 0.2rem;
    }
    
    .hero-line {
        text-align: center;
        display: block;
        white-space: nowrap;
        overflow: visible;
    }
    
    /* Allow the "New Exclusive Xperience" line to break on mobile */
    .hero-line-nexperience {
        white-space: normal; /* Allow line breaks on mobile */
        word-spacing: 0.2em; /* Add some spacing between words */
    }
    
    .highlight-word {
        display: inline-block;
        white-space: nowrap;
    }
    
    .highlight-letter {
        font-size: 1.15em;
        background: linear-gradient(
            135deg,
            #FFD700 0%,
            #EDC568 25%,
            #FFD700 50%,
            #F4E18C 75%,
            #FFD700 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 
            0 0 4px rgba(255, 215, 0, 0.3),
            0 0 8px rgba(255, 215, 0, 0.2),
            0 2px 4px rgba(0, 0, 0, 0.3);
        filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4)) 
                drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    }
    
    .background-video {
        min-height: 100vh;
    }
}

/* Small mobile responsive styles */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        gap: 0.1rem;
    }
    
    .hero-line {
        font-size: 0.95em;
    }
    
    /* Ensure proper spacing on small mobile */
    .hero-line-nexperience {
        white-space: normal;
        word-spacing: 0.15em;
        line-height: 1.3;
    }
    
    .highlight-letter {
        font-size: 1.1em;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-line {
        font-size: 0.9em;
    }
    
    /* Tighter spacing for very small screens */
    .hero-line-nexperience {
        white-space: normal;
        word-spacing: 0.1em;
        line-height: 1.2;
    }
    
    .highlight-letter {
        font-size: 1.05em;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 120px;
    background-color: #000000;
    color: #FFFFFF;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #FFFFFF;
    margin: 0;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.read-more-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 16px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    text-transform: uppercase;
    border: none;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
    animation: shimmer 2s infinite;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:active {
    transform: translateY(0) scale(1.02);
}

@media (max-width: 1200px) {
    .about-section {
        padding: 80px 60px;
    }
    
    .about-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 40px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-left, .about-right {
        width: 100%;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .read-more-btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* Why Choose Us Section Styles */
.why-choose-section {
    padding: 100px 0;
    background-color: #000000;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.section-header h2 {
    font-size: 42px;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.yellow-underline {
    width: 80px;
    height: 3px;
    background-color: #FFB800;
    margin: 0 auto;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 40px;
    flex: 1;
    align-items: stretch;
    min-height: 420px;
}

.why-choose-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style-type: disc;
    padding-left: 1.5em;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    justify-content: center;
}

.feature-list li {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
    list-style-position: outside;
}

.feature-list li strong {
    font-weight: 700;
    color: #fff;
}

.feature-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 18px;
    align-items: stretch;
    height: 100%;
    min-height: 320px;
    max-height: 420px;
    aspect-ratio: 3/2;
    justify-items: stretch;
}

.grid-item {
    border-radius: 12px;
    overflow: hidden;
    background: #1A1A1A;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Media Queries for Why Choose Us Section */
@media (max-width: 1200px) {
    .why-choose-container {
        padding: 0 20px;
        gap: 30px;
    }
    .feature-grid {
        min-height: 220px;
        max-height: 320px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        min-height: auto;
        padding: 60px 0;
    }
    .why-choose-container {
        flex-direction: column;
        align-items: stretch;
    }
    .feature-grid {
        width: 100%;
        min-height: 180px;
        max-height: 260px;
        aspect-ratio: 3/2;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .why-choose-container {
        padding: 0 10px;
    }
    .feature-list {
        font-size: 0.95rem;
        gap: 6px;
    }
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        min-height: 120px;
        max-height: 180px;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        aspect-ratio: 2/3;
        min-height: 100px;
        max-height: 140px;
    }
}

/* Achievements Styles */
.achievements-container {
    max-width: 1400px;
    margin: 100px auto 0;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.achievements-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.achievement-stat-box {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    height: 200px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 20px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 35px rgba(0,0,0,0.3), 0 2px 8px rgba(255,215,0,0.1);
    border: 2px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(10px);
}

.achievement-stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700, #B08D57);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.achievement-stat-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,215,0,0.25), 0 5px 15px rgba(0,0,0,0.4);
    border-color: #FFD700;
}

.achievement-stat-box:hover::before {
    opacity: 0.15;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.stat-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: all 0.3s ease;
}

.achievement-stat-box:hover .stat-icon img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(58%) saturate(348%) hue-rotate(12deg) brightness(101%) contrast(101%);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
    z-index: 2;
    position: relative;
    text-shadow: 0 2px 8px rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #F0F0F0;
    font-weight: 500;
    line-height: 1.2;
    z-index: 2;
    position: relative;
}

/* Media Queries for Achievements */
@media (max-width: 1200px) {
    .achievements-container {
        margin: 80px auto 0;
    }
    
    .achievements-row {
        gap: 25px;
    }
    
    .achievement-stat-box {
        min-width: 250px;
        max-width: 280px;
        height: 180px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 992px) {
    .achievements-row {
        gap: 20px;
    }
    
    .achievement-stat-box {
        flex: 0 0 calc(50% - 10px);
        min-width: 220px;
        max-width: none;
        height: 170px;
        padding: 15px 12px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .stat-icon img {
        width: 50px;
        height: 50px;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .achievements-container {
        margin-top: 60px;
        padding: 0 15px;
    }
    
    .achievements-row {
        gap: 15px;
    }
    
    .achievement-stat-box {
        flex: 0 0 calc(50% - 7px);
        min-width: 140px;
        height: 140px;
        padding: 10px 8px;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 5px;
    }
    
    .stat-icon img {
        width: 35px;
        height: 35px;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.1;
    }
}

@media (max-width: 480px) {
    .achievement-stat-box {
        flex: 0 0 calc(50% - 5px);
        min-width: 120px;
        height: 120px;
        padding: 8px 6px;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 4px;
    }
    
    .stat-icon img {
        width: 28px;
        height: 28px;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Featured Property Section */
.featured-property-section {
    padding: 100px 120px;
    background-color: #000000;
    text-align: center;
    position: relative;
}

.property-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.property-card {
    flex: 0 0 calc(33.33% - 20px);
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-details {
    padding: 20px;
    text-align: left;
}

.property-details h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.4;
}

.property-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.book-now-btn {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #2c2c2c;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    text-transform: uppercase;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.book-now-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
    animation: shimmer 2s infinite;
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:active {
    transform: translateY(0) scale(1.02);
}

/* Media Queries for Featured Property */
@media (max-width: 1200px) {
    .featured-property-section {
        padding: 80px 60px;
    }
    
    .property-grid {
        flex-wrap: wrap;
    }
    
    .property-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .featured-property-section {
        padding: 60px 30px;
    }
    
    .property-card {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .property-card:last-child {
        margin-bottom: 0;
    }
}

/* Our Project Section */
.our-project-section {
    padding: 100px 120px;
    background-color: #000000;
    text-align: center;
    position: relative;
}

.project-carousel-container {
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}



.project-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.project-card {
    flex: 0 0 calc(33.33% - 20px);
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details {
    padding: 20px;
    text-align: left;
}

.project-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-weight: 600;
}

.project-description {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.6;
}

/* Media Queries for Our Project Section */
@media (max-width: 1200px) {
    .our-project-section {
        padding: 80px 60px;
    }
    
    .project-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .our-project-section {
        padding: 60px 30px;
    }
    
    .project-carousel-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        width: 100%;
    }
    
    .project-carousel {
        flex-wrap: nowrap;
        width: fit-content;
        gap: 20px;
        overflow: visible;
    }
    
    .project-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
        margin-right: 20px;
    }
    
    .project-card:last-child {
        margin-right: 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 120px;
    background-color: #000000;
    text-align: center;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.33% - 20px);
    background-color: #1A1A1A;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.testimonial-text {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-footer {
    margin-top: auto;
}

.customer-name {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 5px;
}

.rating {
    color: #FFB800;
    font-size: 14px;
}



/* Media Queries for Testimonials */
@media (max-width: 1200px) {
    .testimonials-section {
        padding: 80px 60px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 30px;
    }
    
    .testimonials-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        width: 100%;
    }
    
    .testimonials-carousel {
        flex-wrap: nowrap;
        width: fit-content;
        gap: 20px;
        overflow: visible;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        min-width: 300px;
        scroll-snap-align: start;
        min-height: 300px;
        margin-right: 20px;
    }
    
    .testimonial-card:last-child {
        margin-right: 30px;
    }
}

/* Loan Partners Section */
.loan-partners-section {
    padding: 100px 120px;
    background-color: #000000;
    text-align: center;
}

.partners-carousel-container {
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.partners-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.partner-logo {
    flex: 0 0 calc(25% - 22.5px); /* Show 4 items at a time, accounting for gaps */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    min-height: 80px;
    min-width: 200px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.2);
    border: 2px solid #FFD700;
}

.partner-logo img {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0) brightness(1.1);
}

/* Media Queries for Loan Partners */
@media (max-width: 1200px) {
    .loan-partners-section {
        padding: 80px 60px;
    }
    
    .partners-carousel {
        gap: 25px;
    }
    
    .partner-logo {
        flex: 0 0 calc(25% - 18.75px);
        min-width: 180px;
        padding: 18px 25px;
    }
    
    .partner-logo img {
        max-width: 140px;
        max-height: 55px;
    }
}

@media (max-width: 992px) {
    .loan-partners-section {
        padding: 60px 40px;
    }
    
    .partners-carousel-container {
        overflow: visible;
        width: 100%;
    }
    
    .partners-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        transform: none !important;
        width: 100%;
        transition: none;
    }
    
    .partner-logo {
        flex: none;
        width: 100%;
        min-width: auto;
        padding: 15px 20px;
        min-height: 70px;
        margin-right: 0;
    }
    
    .partner-logo img {
        max-width: 120px;
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .loan-partners-section {
        padding: 50px 30px;
    }
    
    .partners-carousel-container {
        overflow: visible;
        width: 100%;
        padding-bottom: 0;
    }
    
    .partners-carousel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        transform: none !important;
        width: 100%;
        transition: none;
        flex-wrap: wrap;
        overflow: visible;
    }
    
    .partner-logo {
        flex: none;
        width: 100%;
        min-width: auto;
        padding: 12px 15px;
        min-height: 60px;
        scroll-snap-align: none;
        margin-right: 0;
    }
    
    .partner-logo:last-child {
        margin-right: 0;
    }
    
    .partner-logo img {
        max-width: 100px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .loan-partners-section {
        padding: 40px 20px;
    }
    
    .partners-carousel-container {
        overflow: visible;
        width: 100%;
    }
    
    .partners-carousel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        transform: none !important;
        width: 100%;
        transition: none;
    }
    
    .partner-logo {
        flex: none;
        width: 100%;
        min-width: auto;
        padding: 10px 12px;
        min-height: 50px;
        margin-right: 0;
    }
    
    .partner-logo img {
        max-width: 85px;
        max-height: 35px;
    }
}

/* Book Visit Section */
.book-visit-section {
    padding: 100px 120px;
}

.book-visit-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.book-visit-title {
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

.book-visit-content {
    display: flex;
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
}

.villa-image {
    flex: 1;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    position: relative;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.villa-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.book-visit-form {
    flex: 1;
    padding: 40px;
    background-color: #1A1A1A;
}

.book-visit-form h3 {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 500;
}

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

.form-group label {
    display: block;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #000000;
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #C29B3C;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #9A7A48;
}

/* Media Queries for Book Visit Section */
@media (max-width: 992px) {
    .book-visit-section {
        padding: 80px 60px;
    }
    
    .book-visit-content {
        flex-direction: column;
    }
    
    .villa-image {
        height: 300px;
        border-radius: 10px 10px 0 0;
    }
    
    .book-visit-form {
        border-radius: 0 0 10px 10px;
    }
}

@media (max-width: 768px) {
    .book-visit-section {
        padding: 60px 30px;
    }
    
    .book-visit-title {
        font-size: 28px;
    }
    
    .book-visit-form {
        padding: 30px 20px;
    }
}

/* Footer Styles - Updated with dark theme */
.main-footer {
    background-color: #1a1a1a;
    color: white;
    font-weight: 600;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    align-items: flex-start;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    background: linear-gradient(135deg, #FFD700, #B08D57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.footer-logo img {
    max-width: 300px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .footer-logo img {
        max-width: 180px;
    }
}

.footer-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    flex: 1;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    background: linear-gradient(135deg, #FFD700, #B08D57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(-5px);
}

.footer-address {
    max-width: 320px;
    text-align: right;
}

.footer-address a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.footer-address a:hover {
    color: #FFD700;
}

.footer-address a:hover i {
    color: #fff;
}

.footer-address i {
    font-size: 16px;
    margin-top: 5px;
    color: #FFD700;
    transition: color 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.social-icon:hover {
    color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(176, 141, 87, 0.2));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-info {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    color: white;
    font-size: 14px;
}

.dot-separator {
    margin: 0 10px;
}

.copyright {
    margin-left: auto;
}

/* Media Queries */
@media (max-width: 992px) {
    .partnership-content {
        flex-direction: column;
    }
    
    .partnership-text {
        padding: 40px;
    }
    
    .partnership-image {
        height: 300px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px 40px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    
    .copyright {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .partnership-text h2 {
        font-size: 28px;
    }
    
    .partnership-text p {
        font-size: 16px;
    }
    
    .footer-nav {
        gap: 15px;
    }
    
    .dot-separator {
        display: none;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

/* CSS-only hover support as fallback */
.dropdown-container:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-container:hover .dropdown-button {
    color: #EDC568;
    background: rgba(237, 197, 104, 0.15);
}

.dropdown-container:hover .dropdown-button::before {
    width: 100%;
}

.dropdown-container:hover .dropdown-button .arrow-icon {
    transform: rotate(-180deg);
}

/* Dropdown button premium styling */
.dropdown-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.dropdown-button:hover {
  color: #EDC568;
  background: rgba(237, 197, 104, 0.1);
  transform: translateY(-2px);
}

.dropdown-button:hover::before {
  width: 100%;
  box-shadow: 0 0 8px rgba(237, 197, 104, 0.6);
}

.dropdown-button.active {
  color: #EDC568;
  background: rgba(237, 197, 104, 0.15);
}

.dropdown-button.active::before {
  width: 100%;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.dropdown-button.active .arrow-icon {
  transform: rotate(-180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.dropdown-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-content a {
    color: white !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-right {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        gap: 0;
        z-index: 49;
    }

    .nav-right.active {
        left: 0;
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-btn {
        margin-top: 20px;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Dropdown adjustments for mobile */
    .dropdown-container {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        margin-top: 0;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 1;
        visibility: visible;
        border: none;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-content.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-button {
        justify-content: center;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content a {
        padding: 10px 20px;
        text-align: center;
        color: black !important;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .nav-right {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        gap: 0;
        z-index: 49;
    }

    .nav-right.active {
        left: 0;
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-btn {
        margin-top: 20px;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Dropdown adjustments for mobile */
    .dropdown-container {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        margin-top: 0;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        opacity: 1;
        visibility: visible;
        border: none;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .dropdown-content.show {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-button {
        justify-content: center;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-content a {
        padding: 10px 20px;
        text-align: center;
        color: black !important;
    }
}

/* Subscriptions Section */
.subscriptions-section {
    padding: 100px 0;
    background-color: #000000;
    text-align: center;
}

.subscriptions-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.subscription-box {
    flex: 1 1 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 20px;
    min-height: auto;
    height: fit-content;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3), 0 2px 8px rgba(255,215,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(10px);
}

.subscription-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700, #B08D57);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.subscription-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,215,0,0.25), 0 5px 15px rgba(0,0,0,0.4);
    border-color: #FFD700;
}

.subscription-box:hover::before {
    opacity: 0.15;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, transparent, #FFD700, transparent) bottom/100% 3px no-repeat;
    position: relative;
}

.plan-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #B08D57);
    border-radius: 2px;
}

.plan-header h3 {
    color: #FFD700;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(255,215,0,0.3);
}

.plan-price {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 2px 8px rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #C4C4C4;
    -webkit-text-fill-color: #C4C4C4;
}

.plan-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,215,0,0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,215,0,0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
    border-bottom-color: rgba(255,215,0,0.3);
}

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

.feature-label {
    color: #F0F0F0;
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

.feature-value {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: right;
    max-width: 45%;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(255,215,0,0.3);
}

.plan-highlight {
    margin-top: 25px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
    border-radius: 12px;
    border: 2px solid rgba(255,215,0,0.4);
    position: relative;
    overflow: hidden;
}

.plan-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.plan-highlight p {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(255,215,0,0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .subscriptions-row {
        gap: 20px;
        padding: 0 15px;
    }
    
    .subscription-box {
        padding: 25px 20px;
    }
    
    .plan-header h3 {
        font-size: 1.3rem;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .subscriptions-section {
        padding: 80px 0;
    }
    
    .subscriptions-row {
        flex-direction: column;
        align-items: center;
        max-width: 700px;
        gap: 30px;
        padding: 0 20px;
    }
    
    .subscription-box {
        padding: 35px 30px;
        transform: none !important;
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        height: fit-content !important;
    }
    
    .subscription-box:hover {
        transform: translateY(-8px) scale(1.01) !important;
    }
    
    .plan-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 25px;
        width: 100%;
    }
    
    .plan-header h3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .plan-price {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .plan-features {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        gap: 12px;
        flex: 1;
        width: 100%;
    }
    
    .feature-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,215,0,0.15);
        width: 100%;
    }
    
    .feature-item:hover {
        padding: 15px 10px;
        background: rgba(255,215,0,0.05);
        border-radius: 8px;
    }
    
    .feature-label {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: left;
        font-size: 0.9rem;
        color: #F0F0F0;
        width: 100%;
    }
    
    .feature-value {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: left;
        max-width: 100%;
        font-size: 0.85rem;
        color: #FFD700;
        width: 100%;
    }
    
    .plan-highlight {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 20px;
        width: 100%;
    }
    
    .plan-highlight p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .subscriptions-section {
        padding: 60px 0 !important;
        background-color: #000000 !important;
    }
    
    .subscriptions-row {
        padding: 0 15px !important;
        gap: 25px !important;
        flex-direction: column !important;
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .subscription-box {
        padding: 30px 25px !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%) !important;
        border-radius: 20px !important;
        border: 2px solid rgba(255,215,0,0.2) !important;
        box-shadow: 0 10px 35px rgba(0,0,0,0.3), 0 2px 8px rgba(255,215,0,0.1) !important;
        min-height: auto !important;
        height: fit-content !important;
        overflow: visible !important;
    }
    
    .plan-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 25px !important;
        padding-bottom: 20px !important;
        width: 100% !important;
        text-align: center !important;
        border-bottom: 3px solid transparent !important;
        background: linear-gradient(90deg, transparent, #FFD700, transparent) bottom/100% 3px no-repeat !important;
    }
    
    .plan-header h3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
        color: #FFD700 !important;
        font-weight: 800 !important;
        letter-spacing: 1.5px !important;
        text-shadow: 0 2px 4px rgba(255,215,0,0.3) !important;
    }
    
    .plan-price {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.8rem !important;
        flex-direction: column !important;
        gap: 5px !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ffffff !important;
        font-weight: 900 !important;
        background: linear-gradient(135deg, #ffffff, #FFD700) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .plan-price span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.9rem !important;
        color: #C4C4C4 !important;
        -webkit-text-fill-color: #C4C4C4 !important;
    }
    
    .plan-features {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        flex: 1 !important;
    }
    
    .feature-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 12px 15px !important;
        background: rgba(255,215,0,0.05) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255,215,0,0.2) !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: flex-start !important;
        width: 100% !important;
        border-bottom: none !important;
    }
    
    .feature-item:hover {
        background: rgba(255,215,0,0.1) !important;
        padding: 12px 15px !important;
        border-color: rgba(255,215,0,0.3) !important;
    }
    
    .feature-label {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #FFFFFF !important;
        text-align: left !important;
        width: 100% !important;
        line-height: 1.5 !important;
    }
    
    .feature-value {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.85rem !important;
        text-align: left !important;
        max-width: 100% !important;
        width: 100% !important;
        color: #FFD700 !important;
        font-weight: 700 !important;
        text-shadow: 0 1px 2px rgba(255,215,0,0.3) !important;
        line-height: 1.5 !important;
    }
    
    .plan-highlight {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 20px !important;
        padding: 15px 20px !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05)) !important;
        border-radius: 12px !important;
        border: 2px solid rgba(255,215,0,0.4) !important;
    }
    
    .plan-highlight p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        color: #FFD700 !important;
        font-weight: 700 !important;
        margin: 0 !important;
        text-align: center !important;
        text-shadow: 0 1px 3px rgba(255,215,0,0.3) !important;
    }
}

@media (max-width: 480px) {
    .subscriptions-section {
        padding: 50px 0 !important;
        background-color: #000000 !important;
    }
    
    .subscriptions-row {
        padding: 0 10px !important;
        gap: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .subscription-box {
        padding: 25px 20px !important;
        border-radius: 16px !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%) !important;
        border: 2px solid rgba(255,215,0,0.2) !important;
        box-shadow: 0 10px 35px rgba(0,0,0,0.3), 0 2px 8px rgba(255,215,0,0.1) !important;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .plan-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
        width: 100% !important;
        text-align: center !important;
        border-bottom: 3px solid transparent !important;
        background: linear-gradient(90deg, transparent, #FFD700, transparent) bottom/100% 3px no-repeat !important;
    }
    
    .plan-header h3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
        letter-spacing: 1px !important;
        color: #FFD700 !important;
        font-weight: 800 !important;
        text-shadow: 0 2px 4px rgba(255,215,0,0.3) !important;
        margin-bottom: 15px !important;
    }
    
    .plan-price {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.6rem !important;
        gap: 3px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ffffff !important;
        font-weight: 900 !important;
        background: linear-gradient(135deg, #ffffff, #FFD700) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .plan-price span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.8rem !important;
        color: #C4C4C4 !important;
        -webkit-text-fill-color: #C4C4C4 !important;
    }
    
    .plan-features {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        gap: 12px !important;
        flex-direction: column !important;
        width: 100% !important;
        flex: 1 !important;
        margin-bottom: 15px !important;
    }
    
    .feature-item {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 10px 12px !important;
        gap: 6px !important;
        background: rgba(255,215,0,0.05) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(255,215,0,0.2) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        border-bottom: none !important;
    }
    
    .feature-item:hover {
        background: rgba(255,215,0,0.1) !important;
        border-color: rgba(255,215,0,0.3) !important;
    }
    
    .feature-label {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.85rem !important;
        color: #FFFFFF !important;
        font-weight: 600 !important;
        text-align: left !important;
        width: 100% !important;
        line-height: 1.5 !important;
    }
    
    .feature-value {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.8rem !important;
        color: #FFD700 !important;
        font-weight: 700 !important;
        text-align: left !important;
        width: 100% !important;
        text-shadow: 0 1px 2px rgba(255,215,0,0.3) !important;
        line-height: 1.5 !important;
    }
    
    .plan-highlight {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 12px 15px !important;
        margin-top: 15px !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05)) !important;
        border-radius: 12px !important;
        border: 2px solid rgba(255,215,0,0.4) !important;
    }
    
    .plan-highlight p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.8rem !important;
        color: #FFD700 !important;
        font-weight: 700 !important;
        margin: 0 !important;
        text-align: center !important;
        text-shadow: 0 1px 3px rgba(255,215,0,0.3) !important;
        line-height: 1.4 !important;
    }
}

.achievements-container .section-header,
.achievements-container .section-header h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Floating Geometric Shapes Background */
.why-choose-section,
.achievements-container,
.our-project-section,
.book-visit-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.floating-shape {
    position: absolute;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    animation: float-shape 12s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.floating-shape.circle {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.3));
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.floating-shape.square {
    background: linear-gradient(135deg, rgba(30, 21, 80, 0.6), rgba(30, 21, 80, 0.2));
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(30, 21, 80, 0.15);
}

.floating-shape.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(255, 184, 0, 0.5);
    background: none;
    opacity: 0.2;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.2));
}

.floating-shape.diamond {
    background: linear-gradient(135deg, rgba(176, 141, 87, 0.6), rgba(176, 141, 87, 0.2));
    transform: rotate(45deg);
    border-radius: 4px;
    box-shadow: 0 0 18px rgba(176, 141, 87, 0.15);
}

/* Desktop positioning - premium layout */
.floating-shape.shape1 {
    width: 120px; 
    height: 120px; 
    left: 5%; 
    top: 15%;
    animation-delay: 0s;
}

.floating-shape.shape2 {
    width: 80px; 
    height: 80px; 
    left: 78%; 
    top: 25%;
    animation-delay: 2s;
}

.floating-shape.shape3 {
    width: 140px; 
    height: 140px; 
    left: 45%; 
    top: 8%;
    animation-delay: 1s;
}

.floating-shape.shape4 {
    width: 90px; 
    height: 90px; 
    left: 82%; 
    top: 65%;
    animation-delay: 3s;
}

.floating-shape.shape5 {
    width: 70px; 
    height: 70px; 
    left: 15%; 
    top: 70%;
    animation-delay: 1.5s;
}

.floating-shape.triangle.shape6 {
    left: 65%; 
    top: 35%;
    animation-delay: 2.5s;
}

.floating-shape.diamond.shape7 {
    width: 100px; 
    height: 100px; 
    left: 25%; 
    top: 45%;
    animation-delay: 0.5s;
}

@keyframes float-shape {
    0% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        opacity: 0.35;
    }
    100% { 
        transform: translateY(-30px) rotate(5deg) scale(1.05);
        opacity: 0.15;
    }
}

/* Tablet responsive design */
@media (max-width: 1200px) {
    .floating-shape {
        opacity: 0.2;
    }
    
    .floating-shape.shape1 {
        width: 100px; 
        height: 100px; 
        left: 8%; 
        top: 20%;
    }
    
    .floating-shape.shape2 {
        width: 70px; 
        height: 70px; 
        left: 75%; 
        top: 30%;
    }
    
    .floating-shape.shape3 {
        width: 110px; 
        height: 110px; 
        left: 40%; 
        top: 12%;
    }
    
    .floating-shape.shape4 {
        width: 75px; 
        height: 75px; 
        left: 80%; 
        top: 70%;
    }
    
    .floating-shape.shape5 {
        width: 60px; 
        height: 60px; 
        left: 18%; 
        top: 75%;
    }
    
    .floating-shape.triangle.shape6 {
        left: 62%; 
        top: 40%;
    }
    
    .floating-shape.diamond.shape7 {
        width: 80px; 
        height: 80px; 
        left: 28%; 
        top: 50%;
    }
    
    .floating-shape.triangle {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid rgba(255, 184, 0, 0.25);
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    .floating-shapes-bg {
        height: 100%;
        overflow: hidden;
    }
    
    .floating-shape {
        opacity: 0.15;
        animation-duration: 15s;
    }
    
    .floating-shape.shape1 {
        width: 60px; 
        height: 60px; 
        left: 10%; 
        top: 10%;
    }
    
    .floating-shape.shape2 {
        width: 45px; 
        height: 45px; 
        left: 70%; 
        top: 20%;
    }
    
    .floating-shape.shape3 {
        width: 75px; 
        height: 75px; 
        left: 35%; 
        top: 5%;
    }
    
    .floating-shape.shape4 {
        width: 50px; 
        height: 50px; 
        left: 75%; 
        top: 60%;
    }
    
    .floating-shape.shape5 {
        width: 40px; 
        height: 40px; 
        left: 20%; 
        top: 65%;
    }
    
    .floating-shape.triangle.shape6 {
        left: 55%; 
        top: 35%;
    }
    
    .floating-shape.diamond.shape7 {
        width: 55px; 
        height: 55px; 
        left: 30%; 
        top: 45%;
    }
    
    .floating-shape.triangle {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid rgba(255, 184, 0, 0.2);
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .floating-shape {
        opacity: 0.12;
        animation-duration: 18s;
    }
    
    .floating-shape.shape1 {
        width: 40px; 
        height: 40px; 
        left: 15%; 
        top: 15%;
    }
    
    .floating-shape.shape2 {
        width: 35px; 
        height: 35px; 
        left: 65%; 
        top: 25%;
    }
    
    .floating-shape.shape3 {
        width: 50px; 
        height: 50px; 
        left: 40%; 
        top: 8%;
    }
    
    .floating-shape.shape4 {
        width: 38px; 
        height: 38px; 
        left: 70%; 
        top: 65%;
    }
    
    .floating-shape.shape5 {
        width: 32px; 
        height: 32px; 
        left: 25%; 
        top: 70%;
    }
    
    .floating-shape.triangle.shape6 {
        left: 50%; 
        top: 40%;
    }
    
    .floating-shape.diamond.shape7 {
        width: 42px; 
        height: 42px; 
        left: 35%; 
        top: 50%;
    }
    
    .floating-shape.triangle {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 20px solid rgba(255, 184, 0, 0.15);
    }
}

/* Ensure section content is above the shapes */
.why-choose-section > *,
.achievements-container > *,
.our-project-section > *,
.book-visit-section > * {
    position: relative;
    z-index: 1;
}
/* But not the .floating-shapes-bg itself */
.why-choose-section > .floating-shapes-bg,
.achievements-container > .floating-shapes-bg,
.our-project-section > .floating-shapes-bg,
.book-visit-section > .floating-shapes-bg {
    z-index: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #1A1A1A;
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal .book-visit-form {
    background: none;
    padding: 0;
}

.modal .book-visit-form h3 {
    color: #EDC568;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal .form-group label {
    display: block;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.modal .form-group input:focus {
    outline: none;
    border-color: #EDC568;
}

.modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal .submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #EDC568;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.modal .submit-btn:hover {
    background-color: #C29B3C;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal .book-visit-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Hidden items functionality */
.hidden-item {
    display: flex !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subscription-box.expanded .hidden-item {
    opacity: 1;
    max-height: 100px;
    padding-top: 12px;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

/* Read More Button Container with Premium Split Animation */
.read-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,215,0,0.2);
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.button-group.split {
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.button-group.split .read-more-btn {
    flex: 1;
    max-width: 140px;
    transform: translateX(0) scale(1);
    margin: 0;
    animation: slideToLeft 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.button-group.split .book-now-feature-btn {
    flex: 1;
    max-width: 140px;
    transform: translateX(0) scale(1);
    margin: 0;
    animation: slideFromRight 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.read-more-btn {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #2c2c2c;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 120px;
    will-change: transform, border-radius;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.read-more-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
    animation: shimmer 2s infinite;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:active {
    transform: translateY(0) scale(1.02);
}

.read-more-btn.expanded {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #2c2c2c;
}

.read-more-btn.expanded:hover {
    background-position: right center;
    animation: shimmer 2s infinite;
}

.button-group.split .read-more-btn:hover {
    transform: translateY(-2px) scale(1.05);
}
/* Book Now Feature Button with Premium Split Animation */
.book-now-feature-btn {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    background-size: 200% 200%;
    color: #2c2c2c;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
    text-transform: uppercase;
    white-space: nowrap;
    min-width: 120px;
    display: none;
    opacity: 0;
    transform: translateX(50px) scale(0.7) rotateY(15deg);
    will-change: transform, opacity;
}

.button-group.split .book-now-feature-btn {
    display: inline-block !important;
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
}

.book-now-feature-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.book-now-feature-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
    animation: shimmer 2s infinite;
}

.button-group.split .book-now-feature-btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    background-position: right center;
    box-shadow: 0 8px 25px rgba(191, 149, 63, 0.4);
}

.book-now-feature-btn:hover::before {
    left: 100%;
}

.book-now-feature-btn:active {
    transform: translateY(0) scale(1.02);
}

.price-item .feature-value {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Mobile responsive styles for new elements */
@media (max-width: 768px) {
    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .book-now-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .book-now-feature-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .button-group {
        max-width: 260px;
    }
    
    .button-group.split {
        gap: 12px;
        align-items: center;
        justify-content: space-between;
    }
    
    .button-group.split .read-more-btn,
    .button-group.split .book-now-feature-btn {
        max-width: 110px;
        font-size: 0.8rem;
        padding: 10px 16px;
        margin: 0;
        flex: 1;
    }
    
    .price-item .feature-value {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .button-group {
        max-width: 220px;
    }
    
    .button-group.split {
        gap: 10px;
    }
    
    .button-group.split .read-more-btn,
    .button-group.split .book-now-feature-btn {
        max-width: 95px;
        font-size: 0.75rem;
        padding: 8px 12px;
        min-width: 95px;
    }
    
    .read-more-btn {
        min-width: 110px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .book-now-feature-btn {
        min-width: 110px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

