
/* ===================== GOA NAVBAR START ===================== */

.goa-navbar {
    background: #ffd700;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.goa-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.goa-logo {
    font-size: 26px;
    font-weight: 900;
    color: #ff8a00;
}

/* Telegram */
.goa-center {
    display: flex;
    align-items: center;
}

/* Telegram Button */
.goa-telegram-btn {
    padding: 8px 22px;
    background: #fff;
    color: #ff8a00;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* Desktop Menu */
.goa-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.goa-menu li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

/* Burger Hidden on Desktop */
.goa-burger {
    display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .goa-nav-container {
        position: relative;
    }

    .goa-burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .goa-burger span {
        width: 26px;
        height: 3px;
        background: #000;
        border-radius: 2px;
    }

    .goa-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        padding: 20px;
        display: none;
    }

    .goa-menu.active {
        display: flex;
    }

    .goa-menu li {
        padding: 10px 0;
    }
}

/* ===================== GOA NAVBAR END ===================== */


/* ===================== GOA HERO SECTION START ===================== */

.goa-hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url(../images/banner\ city.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.goa-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(255,0,80,0.2), transparent 60%);
}

.goa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.goa-hero-title {
    font-size: 55px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.goa-hero-title span {
    color: #ff2e63;
}

.goa-hero-subtitle {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.goa-offer-box {
    background: linear-gradient(135deg, #ffd700, #ff8a00);
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 30px;
    color: #fff;
}

.goa-offer-box span {
    font-size: 14px;
    display: block;
    opacity: 0.8;
}

.goa-offer-box h2 {
    margin: 5px 0 0;
    font-size: 28px;
    font-weight: 700;
}

.goa-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.goa-btn-primary {
    padding: 12px 30px;
    background: #ff8a00;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.goa-btn-primary:hover {
    background: #e6004c;
}

.goa-btn-outline {
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.goa-btn-outline:hover {
    background: #fff;
    color: #000;
}

/* ========== MOBILE ========== */

@media (max-width: 768px) {

    .goa-hero-title {
        font-size: 36px;
    }

    .goa-offer-box h2 {
        font-size: 22px;
    }

    .goa-hero-buttons {
        flex-direction: column;
    }
}

/* ===================== GOA HERO SECTION END ===================== */




/* ===================== GOA DARK CONTENT SECTION START ===================== */

.Goa-dark-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.Goa-dark-container {
    /* max-width: 1100px; */
    margin: auto;
    border-left: 5px solid #ff8a00;   /* CHANGE: Accent Border */
    padding-left: 30px;
}

.Goa-dark-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 30px;
}

.Goa-dark-title span {
    color: #ff8a00;
}

.Goa-dark-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .Goa-dark-title {
        font-size: 28px;
    }

    .Goa-dark-container {
        padding-left: 20px;
    }
}

/* ===================== GOA DARK CONTENT SECTION END ===================== */


/* ===================== GOA INFO SECTION START ===================== */

.Goa-info-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #ffd700, #ffd700);
}

.Goa-info-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.Goa-info-image {
    flex: 1;
    min-width: 300px;
}

.Goa-info-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(43, 31, 31, 0.2);
}

.Goa-info-content {
    flex: 1;
    min-width: 300px;
}

.Goa-info-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.Goa-info-title span {
    color: #ff8a00;
}

.Goa-info-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.Goa-info-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff8a00;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.Goa-info-btn:hover {
    background: #e65100;
}

@media (max-width: 768px) {
    .Goa-info-container {
        flex-direction: column;
    }

    .Goa-info-title {
        font-size: 28px;
    }
}

/* ===================== GOA INFO SECTION END ===================== */


/* ===================== GOA SERVICE CARDS SECTION START ===================== */

.Goa-service-section {
    background: #0f0f0f;
}

.Goa-service-card {
    background: #1a1a1a;
    border: none;
    border-top: 4px solid #ff8a00; /* CHANGE: Top Accent Border */
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    color: #fff;
}

.Goa-service-card:hover {
    transform: translateY(-10px);
}

.Goa-card-img-wrapper {
    padding: 30px 0 10px;
}

.Goa-card-img-wrapper img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff8a00;
}

.Goa-service-card .card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.Goa-service-card .card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

/* ===================== GOA SERVICE CARDS SECTION END ===================== */


/* ===================== GOA LUXURY PROFILE SECTION START ===================== */

.Goa-luxury-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.Goa-luxury-card {
    position: relative;
    background: #111;
    border: 2px solid #ffd700;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s ease;
}

.Goa-luxury-card:hover {
    box-shadow: 0 0 25px rgba(255,138,0,0.4);
    transform: translateY(-8px);
}

/* Angled Image */
.Goa-luxury-img {
    height: 300px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.Goa-luxury-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.Goa-luxury-title {
    font-weight: 800;
    color: #ffd700;
    font-size: 24px;
}

.Goa-luxury-tags {
    margin-top: 10px;
}

.Goa-luxury-tags span {
    display: inline-block;
    background: rgba(255,138,0,0.2);
    color: #ff8a00;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 13px;
}

/* Neon Buttons */
.Goa-neon-btn {
    margin-right: 10px;
    margin-bottom: 10px;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    border-radius: 30px;
    padding: 8px 20px;
    transition: 0.3s;
}

.Goa-neon-btn:hover {
    background: linear-gradient(90deg, #ff0080, #7928ca);
    border-color: transparent;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .Goa-luxury-img {
        height: 220px;
    }

    .Goa-luxury-buttons {
        display: flex;
        flex-direction: column;
    }

    .Goa-neon-btn {
        width: 100%;
    }
}

/* ===================== GOA LUXURY PROFILE SECTION END ===================== */



/* ===================== GOA PIXEL BANNER START ===================== */

.Goa-pixel-banner {
    position: relative;
    width: 100%;
    min-height: 80vh;   
    font-family: Georgia, serif;
    border: 6px solid hsl(51, 100%, 50%);
    box-shadow: 0 0 40px #ffd700;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.Goa-full-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
}

.Goa-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Goa-top-strip {
    background: #0f1b2d;
    color: #fff;
    font-size: 52px;
    padding: 20px 50px;
    z-index: 2;
}

.Goa-middle-section {
    flex: 1;
    background: #f5c400;
    display: flex;
    align-items: center;
}

.Goa-left {
    width: 60%;
    padding: 60px;
    z-index: 2;
}

.Goa-subtitle {
    font-size: 45px;
    margin-bottom: 10px;
}

.Goa-title {
    font-size: 130px;
    font-weight: 900;
    margin-bottom: 25px;
}

.Goa-btn {
    background: #0f1b2d;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.Goa-badge {
    position: absolute;
    top: 45%;
    left: -60px;
    width: 120px;
    height: 120px;
    background: #f5c400;
    border-radius: 50%;
    border: 12px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 900;
}

.Goa-badge span {
    font-size: 32px;
}

.Goa-bottom-strip {
    background: #0f1b2d;
    color: #fff;
    font-size: 60px;
    padding: 25px 50px;
    z-index: 2;
}

@media (max-width: 992px) {

    .Goa-full-image {
        width: 100%;
        position: relative;
        height: 300px;
    }

    .Goa-left {
        width: 100%;
    }

    .Goa-title {
        font-size: 70px;
    }
}

/* ===================== GOA PIXEL BANNER END ===================== */


/* ===================== GOA CONTENT SECTION START ===================== */

.Goa-content-section {
    background: linear-gradient(135deg, #0a0a0a, #111827);
    color: #e5e7eb;
}

.Goa-content-block {
    /* max-width: 950px; */
}

/* Title */
.Goa-content-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #f3f4f6;
    line-height: 1.3;
}

/* Highlighted City */
.Goa-content-title span {
    background: linear-gradient(90deg, #f5c400, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.Goa-content-section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #d1d5db;
}

/* Hover subtle effect */
.Goa-content-block:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {

    .Goa-content-title {
        font-size: 26px;
    }

    .Goa-content-section p {
        font-size: 15px;
    }

}

/* ===================== GOA CONTENT SECTION END ===================== */




/* ===================== GOA PROFILE GRID SECTION START ===================== */

.Goa-modern-grid {
    background: linear-gradient(135deg, #f5c400, #f5c400);
}

.Goa-modern-card {
    background: rgba(51, 18, 18, 0.985);
    border: 2px solid #ff8a00;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.Goa-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255,138,0,0.4);
}

/* Image Box */
.Goa-img-box {
    position: relative;
}

.Goa-img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Online Badge */
.Goa-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, #ff0080, #ff8a00);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Body */
.Goa-name {
    color: #ffd700;
    font-weight: 700;
}

.Goa-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ddd;
}

.Goa-info-row i {
    margin-right: 5px;
    color: #ff8a00;
}

/* Button */
.Goa-view-btn {
    background: linear-gradient(90deg, #ff8a00, #ff8a00);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.Goa-view-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .Goa-img-box img {
        height: 220px;
    }
}

/* ===================== GOA PROFILE GRID SECTION END ===================== */





/* ===================== GOA WHY CHOOSE SECTION START ===================== */

.Goa-why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #120b15, #1e0c21);
    color: #fff;
}

.Goa-why-title {
    font-size: 42px;
    font-weight: 800;
}

.Goa-why-sub {
    color: #ddd;
    font-size: 17px;
    line-height: 1.7;
}

/* Feature Card */
.Goa-feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,138,0,0.3);
    border-radius: 20px;
    padding: 25px;
    transition: 0.3s ease;
    height: 100%;
}

.Goa-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(255,138,0,0.4);
}

.Goa-feature-card h5 {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
}

.Goa-feature-card p {
    font-size: 14px;
    color: #ccc;
}

/* Icon */
.Goa-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff8a00;
}

/* Responsive */
@media (max-width: 992px) {
    .Goa-why-title {
        font-size: 30px;
        text-align: center;
    }

    .Goa-why-sub {
        text-align: center;
    }
}

/* ===================== GOA WHY CHOOSE SECTION END ===================== */


/* ===================== GOA RATES SECTION START ===================== */

.Goa-rates-section {
    background: linear-gradient(135deg, #f5c400, #f5c400);
    color: #fff;
}

.Goa-rates-title {
    font-size: 40px;
    font-weight: 800;
}

.Goa-rates-title span {
    color: #ff8a00;
}

.Goa-rates-sub {
    color: #cbd5e1;
}

/* Card */
.Goa-rate-card {
    background: #111827;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border-left: 5px solid #ff8a00; /* CHANGE 1: Left Accent Bar */
    transition: 0.4s ease;
}

.Goa-rate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Featured Card */
.Goa-featured {
    border-left: 5px solid #ff8a00;
}

.Goa-feature-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #facc15;
    color: #000;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

/* Icon */
.Goa-rate-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ff8a00;
}

/* Price List */
.Goa-rate-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    font-size: 15px;
}

.Goa-rate-list li span {
    color: #94a3b8;
}

.Goa-rate-list li:last-child {
    border-bottom: none;
}

/* Button */
.Goa-rate-btn {
    background: linear-gradient(90deg, #ff8a00, #ff8a00); /* CHANGE 2: Blue-Purple Gradient */
    border: none;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
}

.Goa-rate-btn:hover {
    opacity: 0.9;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .Goa-rates-title {
        font-size: 26px;
    }
}

/* ===================== GOA RATES SECTION END ===================== */



/* ===================== GOA FAQ SECTION START ===================== */

.Goa-faq-section {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #fff;
}

.Goa-faq-title {
    font-size: 40px;
    font-weight: 800;
}

.Goa-faq-title span {
    color: #f5c400;
}

.Goa-faq-sub {
    color: #cbd5e1;
}

/* Accordion Item */
.Goa-accordion-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* Button */
.Goa-accordion-btn {
    background: transparent !important;
    color: #fff !important;
    font-weight: 600;
    border: none !important;
    box-shadow: none !important;
}

/* Remove Bootstrap Default Arrow */
.Goa-accordion-btn::after {
    display: none;
}

/* Custom Plus/Minus Icon */
.Goa-accordion-btn::before {
    content: "+";
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
    transition: 0.3s;
}

.Goa-accordion-btn:not(.collapsed)::before {
    content: "-";
    color: #60a5fa;
}

/* Body */
.accordion-body {
    color: #d1d5db;
    font-size: 14px;
}

/* Hover Effect */
.Goa-accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .Goa-faq-title {
        font-size: 26px;
    }
}

/* ===================== GOA FAQ SECTION END ===================== */


/* ===================== GOA CITY SECTION START ===================== */

.Goa-city-section {
    background: linear-gradient(135deg, #e4b701, #f5c400, #edbe02);
    position: relative;
    overflow: hidden;
}

.Goa-city-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
}

.Goa-city-title span {
    background: linear-gradient(90deg, #ff8a00, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Goa-city-subtitle {
    color: #cbd5e1;
    font-size: 17px;
    max-width: 700px;
    margin: auto;
}

/* Button Style (Change 2) */
.Goa-city-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgb(255, 255, 255);
    color: #ff8a00;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s ease;
    width: 100%;
}

.Goa-city-btn:hover {
    background: linear-gradient(90deg, #ff0080, #ff0080);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .Goa-city-title {
        font-size: 26px;
    }

    .Goa-city-subtitle {
        font-size: 14px;
    }
}

/* ===================== GOA CITY SECTION END ===================== */



/* ===================== GOA FOOTER START ===================== */

.Goa-footer {
    background: #000;
    color: #ccc;
    border-top: 2px solid #ff8a00; /* Premium Accent Line */
}

.Goa-footer-heading {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffd700;
    position: relative;
}

/* Golden Underline */
.Goa-footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ff8a00;
    display: block;
    margin-top: 8px;
}

.Goa-footer-links {
    list-style: none;
    padding: 0;
}

.Goa-footer-links li {
    margin-bottom: 10px;
}

.Goa-footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
    position: relative;
}

/* Premium Hover Effect */
.Goa-footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #ff8a00;
    transition: 0.3s;
}

.Goa-footer-links a:hover {
    color: #fff;
}

.Goa-footer-links a:hover::after {
    width: 100%;
}

.Goa-footer-text {
    color: #bbb;
    font-size: 14px;
}

.Goa-footer-email {
    color: #ff8a00;
    font-weight: 600;
}

/* Social Icons */
.Goa-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111;
    color: #ff8a00;
    margin-right: 8px;
    transition: 0.3s;
}

.Goa-social a:hover {
    background: #ff8a00;
    color: #000;
    transform: translateY(-3px);
}

.Goa-footer-bottom {
    border-top: 1px solid #222;
    font-size: 14px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .Goa-footer {
        text-align: center;
    }

    .Goa-social {
        justify-content: center;
    }
}

/* ===================== GOA FOOTER END ===================== */