:root {
    --primary-blue: #0b3b80; /* Deep Royal Blue from logo sky */
    --secondary-blue: #082247; /* Dark Navy for footers */
    --primary-pink: #d81b60; /* Lotus Pink */
    --primary-yellow: #FFC30B; /* Sun/Logo Gold */
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Noto Sans Sinhala', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Topbar */
.topbar {
    background-color: var(--primary-blue);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.topbar a {
    color: #fff;
    text-decoration: none;
}
.topbar-contact span {
    font-weight: 500;
    letter-spacing: 0.5px;
}
.topbar-contact i {
    color: var(--primary-yellow);
    font-size: 0.95rem;
}
.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 10px;
    color: #fff;
    font-size: 0.75rem;
}
.topbar-social a.fb { background-color: #3b5998; }
.topbar-social a.yt { background-color: #cd201f; }
.topbar-social a.wa { background-color: #25D366; }

/* Navbar */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.navbar-brand img {
    height: 50px;
    width: auto;
}
.logo-text h4 {
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}
.logo-text small {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.7rem;
}
.navbar-nav {
    gap: 15px;
}
.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--primary-pink);
}
.btn-primary-pink {
    background-color: var(--primary-pink);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 24px;
}
.btn-primary-pink:hover {
    background-color: #b0154e;
    color: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/hero_bg.jpg') no-repeat center center/cover;
    padding: 100px 0 170px;
    color: #fff;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(8, 34, 71, 0.93) 0%, rgba(11, 59, 128, 0.8) 50%, rgba(5, 18, 38, 0.9) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}
.hero-text {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #e0e0e0;
}
.btn-warning-custom {
    background-color: var(--primary-yellow);
    color: #111;
    font-weight: 700;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95rem;
}
.btn-warning-custom:hover {
    background-color: #d8a500;
    color: #000;
}
.btn-outline-light-custom {
    border: 1.5px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 5px;
    background: transparent;
    text-decoration: none;
    font-size: 0.95rem;
}
.btn-outline-light-custom:hover {
    background: #fff;
    color: #000;
}
.hero-logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 195, 11, 0.6));
}
.hero-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 195, 11, 0.2);
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Features Bar */
.features-bar {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}
.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}
.feature-icon {
    width: 45px;
    height: 45px;
    background-color: #fce4ec;
    color: var(--primary-pink);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.feature-text h6 {
    margin: 0 0 3px 0;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.feature-text p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.feature-col:not(:last-child) {
    border-right: 1px solid #f0f0f0;
}

/* Section Titles */
.section-title-wrap {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.8rem;
}
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.section-separator::before, .section-separator::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #ccc;
}
.section-separator i {
    color: var(--primary-blue);
    font-size: 0.6rem;
}

/* Services */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #fce4ec;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    text-align: center;
    padding: 8px;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(216,27,96,0.1);
}
.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}
.service-body {
    padding: 20px 15px;
}
.service-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 40px;
}
.btn-outline-pink {
    color: var(--primary-pink);
    border: 1.5px solid var(--primary-pink);
    background: transparent;
    border-radius: 25px;
    padding: 6px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-pink:hover {
    background: var(--primary-pink);
    color: #fff;
}

/* About & Horoscope Section */
.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 350px;
    object-fit: cover;
}
.about-text h4 {
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}
.about-text p {
    font-size: 0.9rem;
    line-height: 1.7;
}
.about-list {
    list-style: none;
    padding: 0;
}
.about-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.about-list li i {
    color: var(--primary-pink);
    background: #fce4ec;
    border-radius: 50%;
    padding: 2px;
}

.horoscope-box {
    background: #fff;
    border: 1.5px solid #fce4ec;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    height: 100%;
}
.horoscope-title {
    color: var(--primary-pink);
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 10px;
    margin-bottom: 25px;
}
.zodiac-item {
    text-align: center;
}
.zodiac-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 8px;
}
.zodiac-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Reviews */
.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.review-quote {
    color: var(--primary-pink);
    font-size: 1.4rem;
    margin-bottom: 15px;
    opacity: 0.8;
}
.review-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.reviewer-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.reviewer-details h6 {
    margin: 0 0 2px 0;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.reviewer-details small {
    color: var(--text-muted);
    font-size: 0.75rem;
}
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: 0.3s;
}
.review-dot.active {
    background: var(--primary-pink);
    transform: scale(1.2);
}

/* Pre Footer */
.pre-footer {
    background-color: var(--secondary-blue);
    padding: 20px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pre-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.pre-footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.pre-footer-logo {
    width: 60px;
    height: auto;
    border-radius: 5px;
}
.pre-footer-left h4 {
    margin: 0 0 5px 0;
    font-size: 1.15rem;
    font-weight: 700;
}
.pre-footer-left p {
    margin: 0;
    font-size: 0.85rem;
    color: #a0aabf;
}
.pre-footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.pre-footer-phone {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pre-footer-phone i {
    color: #25D366;
    font-size: 1.2rem;
}
.btn-primary-pink-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background-color: var(--secondary-blue);
    color: #fff;
    padding: 60px 0 20px;
}
.footer-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}
.footer-text {
    font-size: 0.85rem;
    color: #a0aabf;
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.8rem;
    transition: 0.3s;
}
.footer-social a.fb:hover { background-color: #3b5998; }
.footer-social a.yt:hover { background-color: #cd201f; }
.footer-social a.wa:hover { background-color: #25D366; }
.footer-social a.ig:hover { background-color: #e1306c; }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #a0aabf;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    color: #a0aabf;
    font-size: 0.85rem;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--primary-yellow);
    font-size: 1rem;
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 25px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6b7280;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-links a {
    color: #6b7280;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}
.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .feature-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 120px;
        text-align: center;
    }
    .features-bar {
        margin-top: -40px;
    }
    .pre-footer-content {
        flex-direction: column;
        text-align: center;
    }
    .pre-footer-left {
        flex-direction: column;
    }
    .pre-footer-right {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links a {
        margin: 0 10px;
    }
}
