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

@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;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Navigation Styles */
.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;
}

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

.logo img {
    height: 5vh;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    /* margin: 0 20px; */
    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);
}

.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; }
}

/* Plan Content Styles */
.plan-content {
    padding: 80px 120px;
}

.plan-hero {
    text-align: center;
    margin-bottom: 80px;
}

.plan-header h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.subtitle {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #EDC568;
    margin: 0 auto;
}

.plan-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.plan-overview h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.plan-subtitle {
    font-size: 1.2rem;
    color: #CCCCCC;
    font-style: italic;
    font-weight: 400;
}

.ideal-for-section {
    margin-top: 30px;
}

.ideal-for-section h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 600;
}

.ideal-for-section p {
    font-size: 1.1rem;
    color: #CCCCCC;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: #1A1A1A;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #EDC568;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #CCCCCC;
}

/* Investment CTA */
.investment-cta {
    text-align: center;
    padding: 60px 0;
    background-color: #1A1A1A;
    border-radius: 12px;
}

.investment-cta h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.investment-cta p {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.invest-now-btn {
    background-color: #EDC568;
    color: #000000;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.invest-now-btn:hover {
    background-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 197, 104, 0.3);
}

/* 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 (max-width: 992px) {
    .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;
        align-items: center;
    }

    .footer-nav .social-icons {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .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) {
    .footer-nav {
        gap: 15px;
    }
    
    .dot-separator {
        display: none;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .plan-content {
        padding: 60px 60px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 40px;
    }
    
    .plan-header h1 {
        font-size: 2.8rem;
    }
    
    .features-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .plan-content {
        padding: 40px 20px;
    }
    
    .plan-header h1 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-contact {
        align-items: center;
    }
}

/* Dropdown and Hamburger Menu 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 {
    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);
  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);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.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;
    }

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

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

    .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);
    }
}

/* 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: #FFFFFF;
    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;
    }
}

/* 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;
    }
}
