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

:root {
    --primary-color: #478ac9;
    --secondary-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

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

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

.navbar {
    padding: 15px 0;
    background: white;
}

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

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

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    min-width: 150px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
}

/* Lifestyle Carousel */
.lifestyle-carousel {
    padding: 40px 0;
    background: #f9f9f9;
}

.carousel-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 0 20px;
}

.carousel-item {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    transition: background 0.3s;
}

.carousel-item:hover .carousel-overlay {
    background: rgba(0,0,0,0.5);
}

.carousel-label {
    color: white;
    font-family: 'Lobster', cursive;
    font-size: 32px;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.carousel-item:hover .carousel-label {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: white;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

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

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

/* Promotions Carousel */
.promotions-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    height: 100%;
}

.promo-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
    opacity: 0;
}

.promo-slide.active {
    opacity: 1;
}

.promo-content {
    text-align: right;
    color: white;
    padding: 40px;
    max-width: 600px;
}

.promo-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.promo-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.promo-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.6);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-images {
    display: flex;
    gap: 20px;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50px;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Statistics Section */
.statistics {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.stat-item p {
    font-size: 14px;
}

/* Service Providers */
.service-providers {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.service-providers h2 {
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Oswald', sans-serif;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.provider-logo {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.provider-logo img {
    max-width: 100%;
    max-height: 80px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s;
}

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

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.modal-content p {
    margin-bottom: 15px;
    color: #666;
}

.modal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-content li {
    margin-bottom: 10px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .carousel-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-item {
        height: 200px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-images {
        flex-direction: column;
    }

    .about-img {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-content {
        text-align: center;
        padding: 20px;
    }

    .promo-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
    }
}


/* ============================================
   PAGE TITLE SECTION
   ============================================ */

.page-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-title h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 18px;
    opacity: 0.9;
}

/* ============================================
   PAGE CONTENT
   ============================================ */

.page-content {
    padding: 60px 20px;
    min-height: 400px;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.content-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 250px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info h2,
.contact-form h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item p {
    color: #555;
    line-height: 1.8;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* ============================================
   FORM STYLING
   ============================================ */

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(71, 138, 201, 0.1);
}

/* ============================================
   RENTALS SECTION
   ============================================ */

.rentals-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.rentals-form {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.rentals-list {
    padding: 0;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.listing-card {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.listing-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.listing-card .price {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.listing-card .contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */

@media (max-width: 768px) {
    .contact-wrapper,
    .rentals-wrapper {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .content-section h3 {
        font-size: 16px;
    }

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

    .gallery-item {
        height: 200px;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .rentals-wrapper {
        gap: 20px;
    }
}

/* ============================================
   UPDATED FOOTER STYLING
   ============================================ */

.footer {
    background: #2d2d2d;
    color: #ccc;
    padding: 60px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: #d4a574;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

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

.social-icons-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #d4a574;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.social-icons-footer a:hover {
    background-color: #d4a574;
    color: #2d2d2d;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.footer-bottom a {
    color: #d4a574;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .social-icons-footer {
        justify-content: center;
    }
}

/* ============================================
   PREMIUM BUSINESS PAGE STYLING
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #d4a574;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #d4a574;
    background: linear-gradient(135deg, #f9f7f4 0%, #fff 100%);
    transform: scale(1.05);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a574;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
}

.pricing-card .price {
    font-size: 36px;
    color: #d4a574;
    font-weight: bold;
    margin: 10px 0;
}

.pricing-card .duration {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 20px 0;
    text-align: left;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.features-list li {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
}

.features-list li:before {
    content: "✓ ";
    color: #d4a574;
    font-weight: bold;
    margin-right: 10px;
}

.payment-section {
    background: #f9f7f4;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.payment-methods {
    margin: 20px 0;
}

.method-option {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.method-option:hover {
    border-color: #d4a574;
    background: white;
}

.method-option input[type="radio"] {
    margin-right: 15px;
    margin-top: 5px;
    cursor: pointer;
}

.method-option label {
    cursor: pointer;
    flex: 1;
}

.method-option label strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.method-option label p {
    margin: 3px 0;
    font-size: 13px;
    color: #666;
}

.business-form-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border: 2px solid #d4a574;
}

.business-form-section h3 {
    color: #333;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 12px;
}

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

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

.living-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
}

.benefit-card i {
    font-size: 32px;
    color: #d4a574;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {
    .living-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .living-benefits {
        grid-template-columns: 1fr;
    }
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
}

/* Active Navigation Highlighting */
.nav-menu a.active {
    color: #d4a574;
    font-weight: 600;
    border-bottom: 3px solid #d4a574;
    padding-bottom: 12px;
}

.nav-menu li a.active:hover {
    color: #d4a574;
}

/* Mobile active state */
@media (max-width: 768px) {
    .nav-menu a.active {
        background: #f5f5f5;
        border-bottom: none;
        border-left: 4px solid #d4a574;
        padding-left: 16px;
    }
}

/* Stripe Payment Styles */
.payment-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 30px auto;
}

.payment-header {
    margin-bottom: 30px;
    text-align: center;
}

.payment-header h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.payment-header p {
    color: #666;
    font-size: 14px;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-payment {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-payment label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-group-payment input,
.form-group-payment select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group-payment input:focus,
.form-group-payment select:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 5px rgba(212, 165, 116, 0.3);
}

#card-element {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

#card-errors {
    color: #fa755a;
    margin: 10px 0;
    font-size: 13px;
    display: none;
}

#payment-error {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
    display: none;
    border-left: 4px solid #c33;
}

#payment-success {
    background: #efe;
    color: #3c3;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
    display: none;
    border-left: 4px solid #3c3;
    text-align: center;
}

.payment-summary {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    border-left: 4px solid #d4a574;
}

.payment-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-summary-row:last-child {
    margin-bottom: 0;
    border-top: 1px solid #ddd;
    padding-top: 8px;
    font-weight: 600;
    color: #333;
}

.payment-summary-label {
    color: #666;
}

.payment-summary-value {
    color: #333;
    font-weight: 500;
}

.payment-button {
    background: #d4a574;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.payment-button:hover:not(:disabled) {
    background: #c9945f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.payment-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.payment-method {
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: #d4a574;
    background: #f9f9f9;
}

.payment-method.active {
    border-color: #d4a574;
    background: #f5f5f5;
}

.payment-method i {
    font-size: 24px;
    color: #d4a574;
    margin-bottom: 10px;
}

.payment-method-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .payment-container {
        padding: 20px;
        margin: 20px;
    }
    
    .payment-methods {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* New Header Design */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-top {
    background: #f5f5f5;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.location {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location i {
    color: #d4a574;
    font-size: 14px;
}

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

.social-icons a {
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #d4a574;
}

/* Navbar */
.navbar {
    background: white;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 15px 18px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
    color: #d4a574;
}

.nav-menu a.active {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '';
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    flex-direction: column;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 0;
    margin: 0;
    border-radius: 0 0 4px 4px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li a {
    padding: 12px 20px;
    border-bottom: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f9f9f9;
    color: #d4a574;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 5px;
    }
    
    .nav-menu a {
        padding: 15px 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .location {
        font-size: 12px;
    }
    
    .navbar .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f9f9f9;
    }
    
    .dropdown-menu.active {
        display: flex;
    }
    
    .dropdown-menu li a {
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 8px 0;
    }
    
    .location {
        font-size: 11px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        font-size: 14px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        font-size: 13px;
    }
}


/* Pricing Cards */
.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #d4a574;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #d4a574;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.2);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4a574;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-header h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    color: #d4a574;
    font-weight: 700;
    margin: 10px 0;
}

.duration {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #d4a574;
    margin-right: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Rotating Ad Banner */
#rotating-ads-container {
    width: 100%;
    margin: 30px 0;
}

.ad-banner {
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideIn 0.5s ease-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ad-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    color: white;
}

.ad-icon {
    font-size: 40px;
    min-width: 60px;
    text-align: center;
    opacity: 0.9;
}

.ad-text {
    flex: 1;
}

.ad-text h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.ad-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.ad-button {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
    white-space: nowrap;
}

.ad-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateX(5px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .ad-banner {
        padding: 20px;
        gap: 15px;
    }

    .ad-content {
        flex-direction: column;
        text-align: center;
    }

    .ad-icon {
        font-size: 32px;
    }

    .ad-text h3 {
        font-size: 18px;
    }

    .ad-text p {
        font-size: 13px;
    }

    .ad-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ad-banner {
        padding: 15px;
        gap: 10px;
    }

    .ad-content {
        gap: 10px;
    }

    .ad-icon {
        font-size: 28px;
        min-width: 50px;
    }

    .ad-text h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .ad-text p {
        font-size: 12px;
    }

    .ad-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Updated Dropdown Menu Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    flex-direction: column;
    list-style: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 0;
    margin: 0;
    border-radius: 4px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    border: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 2px solid #d4a574;
}

.dropdown-menu li a {
    display: block;
    padding: 16px 20px;
    border: none;
    font-size: 15px;
    color: #d4a574;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    background: white;
}

.dropdown-menu li a:hover {
    background: #f9f9f9;
    color: #c9945f;
    padding-left: 25px;
}

.dropdown-menu li:first-child a {
    border-radius: 4px 4px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 4px 4px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f9f9f9;
        border-radius: 0;
        min-width: 100%;
    }

    .dropdown-menu.active {
        display: flex;
    }

    .dropdown-menu li a {
        padding: 14px 20px;
        padding-left: 40px;
        font-size: 14px;
    }

    .dropdown-menu li a:hover {
        padding-left: 45px;
    }
}
