/* Reset and base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fafafa;
    color: #222;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: #1a1a1a;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2563eb;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-header .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.site-header .text-container {
    display: flex;
    flex-direction: column;
}

.site-header .name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.site-header .tagline {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.site-header .site-nav {
    margin-top: 1rem;
    text-align: center;
}

.site-header .site-nav ul {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
}

.site-header .site-nav li a {
    color: #fff;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.site-header .site-nav li a:hover {
    background: rgba(255,255,255,0.15);
}
/* Hero section */
.hero {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}
.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}
.worries {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.worry-item {
    background: #f3f4f6;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    min-width: 200px;
    text-align: left;
}
.worry-item h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
    color: #111827;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    border: none;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}
.btn-primary {
    background: #10b981;
    color: #fff;
}
.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}
.btn-secondary {
    background: #6b7280;
    color: #fff;
}
.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Services section */
.services {
    background: #f9fafb;
    padding: 4rem 0;
}
.services h2,
.benefits h2,
.how-it-works h2,
.pricing h2,
.booking h2,
.payment-guide h2,
.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #111827;
}
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #4b5563;
    font-size: 1.125rem;
}
.service-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #1f2937;
}
.service-card .service-description {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Benefits section */
.benefits {
    background: #fff;
    padding: 4rem 0;
}
.benefit-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.benefit-item {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 1.5rem;
}
.benefit-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #1d4ed8;
}
.benefit-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #374151;
}
.benefit-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #4b5563;
    text-align: center;
}

/* How it works */
.how-it-works {
    background: #f9fafb;
    padding: 4rem 0;
}
.steps {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.step-number {
    background: #2563eb;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    flex-shrink: 0;
}
.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #1f2937;
}
.step-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
}

/* Pricing section */
.pricing {
    background: #fff;
    padding: 4rem 0;
}
.pricing-table {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.pricing-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.1);
}
.pricing-card.recommended {
    border-color: #10b981;
    transform: scale(1.03);
    position: relative;
}
.pricing-card.recommended::before {
    content: "Most Popular";
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: #10b981;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}
.pricing-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #1f2937;
}
.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: #059669;
}
.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 0;
}
.pricing-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
}
.pricing-card li::before {
    content: "✓";
    color: #10b981;
    font-weight: 600;
}
.pricing-card .note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}
.market-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
}
.market-info h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #047857;
}
.market-info p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
}

/* Booking section */
.booking {
    background: #f0fdf4;
    padding: 4rem 0;
}
.booking-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}
.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.form-group {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}
.form-group.full-width {
    flex: 100%;
}
.form-group label {
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}
.form-group textarea {
    resize: vertical;
    min-height: 8rem;
}
.form-message {
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
}
.form-message.success {
    color: #059669;
}
.form-message.error {
    color: #dc2626;
}
.booking-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    text-align: center;
}

/* Payment guide */
.payment-guide {
    background: #fff;
    padding: 4rem 0;
}
.payment-steps {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.payment-steps .step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.payment-steps .step div {
    background: #2563eb;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.payment-steps .step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: #1f2937;
}
.payment-steps .step p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}
.transfer-details {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 0.375rem;
    margin: 1rem 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #1f2937;
}
.transfer-details p {
    margin: 0.25rem 0;
}
.payment-guide .note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

/* FAQ */
.faq {
    background: #f9fafb;
    padding: 4rem 0;
}
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.faq-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #1f2937;
}
.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: #374151;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}
.site-footer .footer-cols {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.site-footer .footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #fff;
}
.site-footer .footer-col ul {
    list-style: none;
}
.site-footer .footer-col li {
    margin-bottom: 0.5rem;
}
.site-footer .footer-col a {
    color: #9ca3af;
}
.site-footer .footer-col a:hover {
    color: #fff;
}
.site-footer .footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.site-footer .footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    text-align: center;
    color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
    
    .hero h2 {
        font-size: 1.75rem;
    }
    .service-grid,
    .benefit-grid,
    .steps,
    .pricing-table,
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Utility */
.hidden {
    display: none !important;
}
/* Logo image styling */
/* Logo image styling */


/* Adjust logo container to align image and text */
.logo {
    display: flex;
    align-items: center;
}

/* Nav spacing */
/* Nav centered */


/* Text block styling */

.text-block h1 {
    margin: 0 0 4px 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}
.text-block /* Tagline styling */




/* Name styling */


/* Logo positioning */




/* Container padding for logo */




/* Nav styling */
























/* Spacer */


/* Logo positioning */


/* Container padding for logo */


/* Nav styling */




.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

.text-container {
    display: flex;
    flex-direction: column;
}

.name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* Header logo */


/* Logo image */
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
}

/* Text container for name and tagline */
.text-container {
    display: flex;
    flex-direction: column;
}

/* Name styling */
.name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Tagline styling */
.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* Nav styling */


/* Nav list */


/* Container flex */


/* Logo positioning */


/* Container padding for logo */
.site-header .container {
    padding-left: 60px;
}

/* Nav styling */
.site-header .site-nav {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* Nav list */
.site-header .site-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    justify-content: center;
}

/* Logo image styling */
.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}

/* Text container */
.text-container {
    display: flex;
    flex-direction: column;
}

/* Name styling */
.name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Tagline styling */
.tagline {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

/* Header Logo Styles - Clean and Simple */
.site-header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.site-header .logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.site-header .text-container {
    display: flex;
    flex-direction: column;
}

.site-header .name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.site-header .tagline {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.4;
}

/* Ensure nav is properly spaced */
.site-header .site-nav {
    margin-top: 1.5rem;
}
