@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #0a2540;
    --secondary: #635bff;
    --accent: #00d4ff;
    --text-main: #1a1f36;
    --text-muted: #4f566b;
    --bg-light: #f7f9fc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Inter', serif;
    font-weight: 700;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    transition: var(--transition);
}

.brand:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 40px 2rem;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--bg-light);
    animation: slideIn 0.3s ease-out;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/hero.png') center/cover no-repeat;
    color: var(--white);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #aab);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 91, 255, 0.4);
}

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

/* --- Hero Glass Card --- */
.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hero-list {
    list-style: none;
}

.hero-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.hero-list i {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--accent);
}

/* --- Services --- */
.section-tag {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    /* max-width: 1200px; */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e6e9ef;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
}

/* --- About --- */
.about {
    background: var(--white);
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--bg-light);
}

/* --- Tax CTA --- */
.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.price-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #e6e9ef;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.price-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.price-features li::before {
    content: "✓";
    color: var(--secondary);
    margin-right: 15px;
    font-weight: 700;
}

/* --- Stats --- */
.stats {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
}

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

.stat-item h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

/* --- Footer --- */
#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 2%;
	overflow: hidden;
	z-index: 999; 
	width: 32px;
	height: 32px;
	border: none;
	text-indent: 100%;
	background: url(../../images/top-up.png) no-repeat 0px 0px;
	background-size: 32px;
}
#toTopHover {
	width: 32px;
	height: 32px;
	display: block;
	overflow: hidden;
	float: right;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}
footer {
    background: #081a2d;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--white);
}

.footer-credit .footer-heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    margin: 0 0.2rem;
    color: #e53935;
    border-radius: 4px;
    font-size: 0.85rem;
    vertical-align: middle;
    line-height: 1;
}

/* --- Responsive --- */
@media (min-width: 769px) {
        .hero-grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }
@media (max-width: 992px) {
    section { padding: 60px 0; }
    .hero { height: auto; padding: 120px 0 80px; }
    .hero .container, .about-flex, .cta-card, .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; flex-direction: column; width: 100%; gap: 1rem; }
    .btn { width: 100%; text-align: center; }
    .hero-card { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .cta-img { margin-bottom: 2rem; order: -1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .section-title { font-size: 2rem; }
    .price-card.featured { transform: scale(1); margin: 15px 0; }
    .price-card { padding: 30px 20px; }
    .footer-grid { text-align: center; }
    .footer-links { margin-bottom: 30px; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { margin-bottom: 2rem; }
}

/* Move Top Button */
#move-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    display: none;
    z-index: 1001;
    transition: 0.3s;
}

#move-top:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

#move-top span {
    font-size: 2rem;
    line-height: 50px;
}

/* Services page links - black text, blue hover */
.service-card a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.service-card a:hover {
    color: var(--secondary);
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-bg-light {
    background: var(--bg-light);
}

.testimonials-bg-white {
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-header .section-title {
    margin-bottom: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
    align-items: stretch;
}

.testimonial-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.75rem;
    text-align: left;
}

.testimonial-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.testimonial-quote {
    margin: 0 0 1.25rem;
    padding: 0;
    border: none;
    flex: 1;
}

.testimonial-quote p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    font-style: normal;
    padding-top: 0.75rem;
    border-top: 1px solid #e6e9ef;
}

