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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #0A3622;
    /* Deep Emerald */
    --primary-light: #004D40;
    --secondary-color: #111111;
    /* Dark Premium BG */
    --text-color: #E0E0E0;
    --text-light: #A0A0A0;
    --white: #ffffff;
    --gold: #D4AF37;
    /* Metallic Gold Accent */
    --gold-light: #F7E7CE;
    /* Champagne */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #25D366;
    /* WhatsApp */
    --header-height: 80px;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: var(--font-body);
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    word-break: break-word;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
    word-wrap: break-word;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    word-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Header & Navigation */
header {
    background: rgba(10, 54, 34, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
}

header .container {
    height: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--white);
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 54, 34, 0.85) 0%, rgba(0, 77, 64, 0.95) 100%), url('../images/hero-bg.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--secondary-color), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content .tagline {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    /* Sharper, more premium edges */
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.btn:hover {
    background: var(--gold);
    color: var(--secondary-color);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.btn-primary {
    background: var(--gold);
    color: var(--secondary-color);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: #b5952f;
    border-color: #b5952f;
}

.btn-download {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-download:hover {
    background: var(--gold-light);
    color: var(--secondary-color);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

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

.stat-item {
    padding: 30px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    filter: contrast(1.1) brightness(0.9);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.5;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.about-features li i {
    color: var(--gold);
    font-size: 1.3rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, var(--primary-color) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--glass-border);
    flex: 1 1 350px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.feature-card p {
    margin-bottom: 0;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.how-it-works .section-title {
    color: var(--white);
}

.how-it-works .section-title::after {
    background-color: var(--white);
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.step-item {
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary-color) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.testimonials-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.testimonial-content {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 60px;
    width: 30px;
    height: 30px;
    background: var(--glass-bg);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    transform: rotate(45deg);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.2;
}

.testimonial-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #b5952f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    border: 3px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.author-info p {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-style: normal;
}

.author-location {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-location i {
    font-size: 0.75rem;
    color: var(--gold);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--secondary-color);
    border-color: var(--gold);
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 12px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.nav-dot:hover {
    background: rgba(212, 175, 55, 0.5);
}

.nav-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--secondary-color) 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--gold);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 54, 34, 0.9), rgba(0, 0, 0, 0.9)), url('../images/about-premium.png') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 25px;
    margin-bottom: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    color: var(--text-color);
}

th,
td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

tr:hover td {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--white);
}

/* Forms */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.4);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #050505;
    color: var(--text-color);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--gold);
}

.footer-col p {
    color: #999;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li a i {
    font-size: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.developer-credit {
    font-size: 0.9rem;
    margin-top: 10px;
}

.developer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--gold-light);
}

/* Floating WhatsApp */
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold);
    color: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
    box-shadow: 2px 2px 20px rgba(212, 175, 55, 0.5);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: var(--header-height);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Info Boxes */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--gold);
    min-width: 50px;
}

.info-content h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--white);
}

.info-content p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-color);
}

/* Contact layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Note box */
.note-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    margin-bottom: 40px;
    border-radius: 0 4px 4px 0;
}

.note-box p {
    margin-bottom: 0;
    color: var(--gold-light);
    font-weight: 500;
    font-size: 1.05rem;
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image::before {
        display: none;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 54, 34, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        padding: 18px 0;
        display: block;
        color: var(--white);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--gold);
        background: rgba(212, 175, 55, 0.1);
    }

    .nav-links li a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

    .stat-item h3 {
        font-size: 2rem;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .info-box {
        padding: 20px;
    }

    .info-box i {
        font-size: 2rem;
        min-width: 40px;
    }

    .terms-content {
        padding: 30px 20px !important;
    }

    .terms-content h3 {
        font-size: 1.4rem !important;
    }

    .terms-content li {
        flex-direction: column;
        gap: 10px !important;
        word-break: break-word;
    }

    .terms-content li i {
        margin-top: 0 !important;
    }

    .terms-content li span {
        font-size: 0.9rem;
    }

    .call-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

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

    .testimonial-content {
        padding: 35px 30px;
    }

    .testimonial-content p {
        font-size: 1.1rem;
    }

    /* FAQ Tablet */
    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        padding: 22px 25px;
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 25px 22px;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }

    .terms-content {
        padding: 25px 15px !important;
    }

    .terms-content h3 {
        font-size: 1.2rem !important;
    }

    .terms-content li {
        margin-bottom: 15px !important;
    }

    .terms-content li span {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .info-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .info-box i {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

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

    .testimonial-card {
        padding: 0 10px;
    }

    .testimonial-content {
        padding: 25px 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .quote-icon {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .testimonial-content::after {
        bottom: -12px;
        left: 40px;
        width: 24px;
        height: 24px;
    }

    .testimonial-author {
        padding-left: 10px;
    }

    .author-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.85rem;
    }

    .author-location {
        font-size: 0.8rem;
    }

    .testimonials-nav {
        gap: 15px;
        margin-top: 30px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .nav-dots {
        gap: 8px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-question i {
        font-size: 0.8rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .faq-cta {
        padding: 25px 20px;
    }

    .faq-cta p {
        font-size: 1rem;
    }
}