:root {
    --primary: #0f4c81; /* Classic Blue */
    --primary-light: #2b6cb0;
    --accent: #38b2ac; /* Teal accent */
    --accent-glow: rgba(56, 178, 172, 0.4);
    --bg-dark: #1a202c;
    --bg-light: #f7fafc;
    --text-dark: #2d3748;
    --text-light: #edf2f7;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Montserrat:wght@700&display=swap');

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

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 76, 129, 0.6), rgba(0, 76, 129, 0.4)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
    max-width: 100%;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    background: #319795;
}

/* Services */
.services-title {
    text-align: center;
    margin-bottom: 60px;
}

.services-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

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

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Pricing/Trust Section */
.trust-section {
    background: var(--bg-dark);
    color: white;
    max-width: 100%;
    padding: 100px 0;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: var(--accent);
}

/* Payment Section */
.payment-section {
    text-align: center;
    background: #fff;
    border-radius: 30px;
    margin-top: 50px;
    padding: 60px 40px;
    box-shadow: var(--shadow);
}

.paypal-btn {
    background: #0070ba;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #0a0e14;
    color: #a0aec0;
    padding: 80px 20px 40px;
    text-align: center;
}

.footer-logo {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.footer-contact {
    margin-bottom: 40px;
}

.copy {
    border-top: 1px solid #2d3748;
    padding-top: 40px;
    font-size: 0.85rem;
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-light);
    text-align: center;
}

.review-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.funnel-step {
    display: none;
    animation: slideIn 0.5s ease-out;
}

.funnel-step.active {
    display: block;
}

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

.star-rating {
    font-size: 4rem;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.star {
    color: #e2e8f0;
    transition: var(--transition);
}

.star.hover, .star:hover {
    color: #f6ad55;
    transform: scale(1.1);
}

.congrats-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

#rating-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.2rem;
}

/* Feedback Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

#internal-feedback-form .btn {
    width: 100%;
}

#google-btn {
    margin-top: 25px;
    padding: 18px 40px;
}

/* Loader for redirect step */
.loader-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--bg-light);
    border-bottom-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    section { padding: 60px 20px; }
    .hero h1 { font-size: 3rem; }
    .star-rating { font-size: 3rem; }
    .review-container { padding: 40px 20px; }
}
