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

:root {
    --primary-color: #1a4d3a;
    --secondary-color: #2d7a5f;
    --accent-color: #4a9d7a;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for horizontal scroll (e.g. dashboard stat cards on mobile) */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Private key input: neutral focus (no green) for security/sensitivity */
.connect-wallet-private-key-input:focus {
    outline: 2px solid var(--border-color);
    outline-offset: 2px;
}

/* Loading states */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-light);
    font-size: 13px;
}

.header-features {
    display: flex;
    gap: 20px;
}

.feature-badge {
    color: var(--text-light);
    font-size: 13px;
}

.header-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    min-height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-contact {
    display: none;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s;
}

.mobile-contact:hover {
    background: var(--bg-light);
}

.mobile-contact-icon {
    font-size: 16px;
    width: 18px;
    text-align: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    display: none; /* Hide text, show only on larger screens if needed */
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s;
    display: none; /* Hide old h1, using logo image instead */
}

.logo a:hover h1 {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s, background 0.3s;
    opacity: 1 !important;
}

.nav-menu a:hover {
    color: var(--primary-color);
    opacity: 1 !important;
}

.nav-menu a.btn-primary {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    font-weight: 600;
    opacity: 1 !important;
}

.nav-menu a.btn-primary:hover {
    background: var(--secondary-color) !important;
    color: white !important;
    opacity: 1 !important;
}

.btn-login {
    background: transparent;
    color: var(--primary-color) !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    opacity: 1 !important;
}

.btn-login:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    opacity: 1 !important;
    border-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    padding: 10px 9px;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, border-color 0.3s;
    box-sizing: border-box;
    overflow: hidden;
}

.menu-toggle:hover {
    background: var(--primary-color);
}

.menu-toggle:hover span {
    background: white;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    min-height: 2.5px;
    max-height: 2.5px;
    background: var(--primary-color);
    transition: all 0.3s;
    border-radius: 2px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Trustpilot Widget */
.trustpilot-widget {
    display: inline-block;
    background: var(--primary-color);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(26, 77, 58, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    min-width: 400px;
}

.trustpilot-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 58, 0.4);
    background: var(--secondary-color);
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.trustpilot-logo svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.trustpilot-text {
    font-size: 14px;
    font-weight: 500;
    color: white;
    letter-spacing: 0.3px;
}

.trustpilot-logo svg path {
    fill: var(--accent-color);
}

.trustpilot-rating-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trustpilot-score {
    font-size: 16px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
}

.trustpilot-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trustpilot-stars .star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trustpilot-stars .star svg {
    width: 100%;
    height: 100%;
    display: block;
}

.trustpilot-stars .star.filled svg path:first-child {
    fill: var(--accent-color) !important;
}

.trustpilot-stars .star svg path[fill="#00B67A"] {
    fill: var(--accent-color) !important;
}

.trustpilot-stars .star.half-filled {
    position: relative;
}

.trustpilot-reviews {
    font-size: 14px;
    color: white;
    font-weight: 400;
    white-space: nowrap;
}

/* Legacy hero-badge styles (kept for compatibility) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 14px;
}

.stars {
    color: #ffd700;
    font-size: 18px;
}

.rating {
    font-weight: 600;
}

.reviews {
    opacity: 0.9;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.trademark {
    font-size: 24px;
    vertical-align: super;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.check-icon {
    background: rgba(255, 255, 255, 0.3);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(26, 77, 58, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(26, 77, 58, 0.4);
}

.hero-guarantee {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
}

.guarantee-icon {
    font-size: 24px;
}

/* Team Section */
.team {
    padding: 60px 20px;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.02), rgba(45, 122, 95, 0.02));
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonials-header .section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    line-height: 1.2;
}

/* Consistent section spacing */
section {
    position: relative;
}

section + section {
    margin-top: 0;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    width: 380px;
    min-width: 380px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.03), rgba(45, 122, 95, 0.03));
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 77, 58, 0.1);
    border: 1px solid rgba(26, 77, 58, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}


.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-stars i {
    color: var(--accent-color);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26, 77, 58, 0.2);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.testimonial-date {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    background: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

/* Testimonial Slider Controls */
.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-slider-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(26, 77, 58, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.testimonial-slider-btn:disabled:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
}

.testimonial-slider-prev {
    left: 0;
}

.testimonial-slider-next {
    right: 0;
}

/* Testimonial Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

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

.testimonial-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

/* FAQs Section */
.faqs {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.02), rgba(45, 122, 95, 0.02));
}

.faqs-header {
    text-align: center;
    margin-bottom: 60px;
}

.faqs-header .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.faqs-header .section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.03), rgba(45, 122, 95, 0.03));
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(26, 77, 58, 0.1);
    border: 1px solid rgba(26, 77, 58, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(26, 77, 58, 0.1);
}

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

.faq-question:hover {
    color: var(--primary-color);
    background: rgba(26, 77, 58, 0.05);
}

.faq-question span {
    flex: 1;
    text-align: left;
}

.faq-icon {
    font-size: 16px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-color);
    background: rgba(26, 77, 58, 0.08);
    border-bottom: 1px solid rgba(26, 77, 58, 0.2);
}

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

.faq-question[aria-expanded="true"] + .faq-answer {
    /* max-height is set dynamically via JavaScript for smooth animation */
    padding: 0 30px 30px 30px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-top: 20px;
    transition: none; /* Prevent text from animating */
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* Launch Section */
.launch {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.02), rgba(45, 122, 95, 0.02));
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.launch-item {
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.05), rgba(45, 122, 95, 0.05));
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(26, 77, 58, 0.1);
}

.launch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.launch-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.launch-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.launch-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.launch-cta {
    text-align: center;
}

/* Why Wyoming Section */
.why-wyoming {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.02), rgba(45, 122, 95, 0.02));
}

.why-wyoming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-wyoming-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
    background: var(--bg-light);
}

.why-wyoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background: transparent;
    opacity: 1;
    min-height: 500px;
}

/* Fallback if image doesn't load */
.why-wyoming-image:has(img[src=""])::before,
.why-wyoming-image:not(:has(img))::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.why-wyoming-image:hover img {
    transform: scale(1.05);
}

.why-wyoming-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.placeholder-content {
    text-align: center;
    color: white;
}

.placeholder-content i {
    font-size: 120px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.placeholder-content p {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.why-wyoming-text {
    padding: 20px 0;
}

.why-wyoming-text .section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.why-wyoming-text .section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-wyoming-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-wyoming-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    transition: all 0.3s ease;
}

.why-wyoming-list li:hover {
    transform: translateX(5px);
}

.why-wyoming-list li i {
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.why-wyoming-list li span {
    display: inline;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--font-family);
    line-height: 1.6;
}

.why-wyoming-cta {
    margin-top: 40px;
}

.why-wyoming-cta .btn-primary {
    font-size: 18px;
    padding: 18px 45px;
    box-shadow: 0 6px 25px rgba(26, 77, 58, 0.25);
}

/* Asset Protection Section */
.asset-protection {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.02), rgba(45, 122, 95, 0.02));
}

.section-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Corporate Services Section */
.corporate-services {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.03), rgba(45, 122, 95, 0.03));
}

.service-cards {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, rgba(26, 77, 58, 0.05), rgba(45, 122, 95, 0.05));
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(26, 77, 58, 0.1);
    border: 1px solid rgba(26, 77, 58, 0.1);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-card ul {
    margin-left: 20px;
    margin-top: 20px;
}

.service-card li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.service-card strong {
    color: var(--primary-color);
}

/* Estate Planning Section - REMOVED */
/* FAQs Section styles are above */
.estate-planning {
    padding: 80px 20px;
    background: var(--bg-white);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-section h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

.disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive Design */
/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        padding: 70px 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .why-wyoming-content {
        gap: 50px;
    }

    .testimonial-card {
        width: 360px;
    }

    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none; /* Hide top section on mobile for cleaner design */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: left;
        transition: 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid var(--border-color);
        opacity: 1;
        transform: none;
    }

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

    .nav-menu a {
        display: block;
        padding: 16px 25px;
        font-size: 16px;
        color: var(--text-color) !important;
        transition: all 0.3s;
        opacity: 1 !important;
    }

    .nav-menu a:hover {
        background: var(--bg-light);
        color: var(--primary-color) !important;
        padding-left: 30px;
        opacity: 1 !important;
    }

    .nav-menu .btn-login,
    .nav-menu .btn-primary {
        margin: 10px 20px;
        text-align: center;
        width: calc(100% - 40px);
        display: block;
        border-radius: 8px;
    }

    .testimonials-slider-wrapper {
        padding: 0 50px;
        max-width: 100%;
    }

    .testimonial-card {
        width: 340px;
        min-width: 340px;
    }

    .testimonial-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .nav-menu .btn-primary {
        background: var(--primary-color) !important;
        color: white !important;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 15px;
        opacity: 1 !important;
    }

    .nav-menu .btn-primary:hover {
        background: var(--secondary-color) !important;
        color: white !important;
        padding-left: 20px;
        opacity: 1 !important;
    }

    .nav-menu .btn-login {
        background: transparent;
        color: var(--primary-color) !important;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        border: 2px solid var(--primary-color);
        opacity: 1 !important;
    }

    .nav-menu .btn-login:hover {
        background: var(--primary-color);
        color: #ffffff !important;
        border-color: var(--primary-color);
        padding-left: 20px;
        opacity: 1 !important;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        padding: 12px 20px;
        min-height: 60px;
    }

    .logo-img {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 20px;
        display: none;
    }

    /* Show mobile contact button in navbar */
    .mobile-contact {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .testimonials {
        padding: 60px 20px;
    }

    .testimonials-header .section-title {
        font-size: 32px;
    }

    .why-wyoming {
        padding: 60px 20px;
    }

    .why-wyoming-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-wyoming-image {
        min-height: 400px;
        order: 2;
    }

    .why-wyoming-text {
        order: 1;
    }

    .why-wyoming-text .section-title {
        font-size: 32px;
    }

    .why-wyoming-text .section-description {
        font-size: 16px;
    }

    .why-wyoming-list {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0;
    }

    .why-wyoming-list li {
        padding: 0;
    }

    .why-wyoming-list li i {
        font-size: 12px;
        width: 22px;
        height: 22px;
    }

    .why-wyoming-list li span {
        font-size: 15px;
    }

    .testimonials-slider-wrapper {
        padding: 0 50px;
        max-width: 100%;
    }

    .testimonial-card {
        width: 340px;
        min-width: 340px;
    }

    .testimonial-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .testimonials-header .section-description {
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .launch-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .launch-item {
        padding: 25px;
    }

    .launch-icon {
        font-size: 42px;
    }

    .launch-item h3 {
        font-size: 19px;
    }

    .launch-item p {
        font-size: 15px;
    }

    /* Mission Section */
    .asset-protection {
        padding: 60px 20px;
    }

    .asset-protection .section-title {
        font-size: 32px;
    }

    .asset-protection .section-description {
        font-size: 17px;
    }

    /* Corporate Services */
    .corporate-services {
        padding: 60px 20px;
    }

    .corporate-services .section-title {
        font-size: 32px;
    }

    .service-cards {
        gap: 30px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .why-wyoming {
        padding: 60px 20px;
    }

    .why-wyoming-header .section-title {
        font-size: 32px;
    }

    .why-wyoming-header .section-description {
        font-size: 16px;
    }

    .why-wyoming-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-wyoming-card {
        padding: 30px 25px;
    }

    .why-wyoming-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .why-wyoming-card h3 {
        font-size: 22px;
    }

    .why-wyoming-card p {
        font-size: 15px;
    }

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

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

    .why-wyoming-header .section-title {
        font-size: 28px;
    }

    .why-wyoming-header .section-description {
        font-size: 15px;
    }

    .why-wyoming-card {
        padding: 25px 20px;
    }

    .why-wyoming-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 18px;
    }

    .why-wyoming-text .section-title {
        font-size: 28px;
    }

    .why-wyoming-text .section-description {
        font-size: 15px;
    }

    .why-wyoming-image {
        min-height: 300px;
    }

    .why-wyoming-list li {
        padding: 0;
    }

    .why-wyoming-list {
        padding: 0;
        gap: 15px;
    }

    .why-wyoming-list li i {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .why-wyoming-list li i {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .why-wyoming-list li span {
        font-size: 14px;
    }

    .why-wyoming-cta .btn-primary {
        font-size: 16px;
        padding: 15px 35px;
    }

    .faqs {
        padding: 60px 20px;
    }

    .faqs-header .section-title {
        font-size: 32px;
    }

    .faqs-header .section-description {
        font-size: 16px;
    }

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

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

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 20px 25px 20px;
    }

    .faq-answer p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .testimonials-slider-wrapper {
        padding: 0 40px;
        max-width: 100%;
    }

    .testimonial-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .testimonials-slider-wrapper {
        padding: 0;
        max-width: 100%;
    }

    .testimonials-slider {
        overflow: hidden;
        width: 100%;
    }

    .testimonials-track {
        gap: 0;
        width: 100%;
    }

    .testimonials-track {
        gap: 20px;
    }

    .testimonial-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonials-dots {
        margin-top: 30px;
        gap: 10px;
    }

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

    .testimonial-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }

    .trustpilot-widget {
        padding: 14px 16px;
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }

    .trustpilot-rating-container {
        gap: 8px;
        flex-wrap: wrap;
    }

    .trustpilot-logo {
        margin-bottom: 10px;
    }

    .trustpilot-logo svg {
        width: 14px;
        height: 14px;
    }

    .trustpilot-text {
        font-size: 13px;
    }

    .trustpilot-score {
        font-size: 14px;
    }

    .trustpilot-stars .star {
        width: 18px;
        height: 18px;
    }

    .trustpilot-reviews {
        font-size: 12px;
    }

    .hero-badge {
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
        padding: 8px 15px;
    }

    .hero-feature {
        font-size: 16px;
    }

    .check-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .launch-item {
        padding: 20px;
    }

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

    .testimonials-header .section-title {
        font-size: 28px;
    }

    .testimonials-header .section-description {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 15px;
    }

    .logo-img {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 20px;
        display: none;
    }

    /* Mission Section */
    .asset-protection {
        padding: 50px 20px;
    }

    .asset-protection .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .asset-protection .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .launch-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .launch-item {
        padding: 25px 20px;
    }

    .launch-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .launch-item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .launch-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .launch-cta {
        margin-top: 30px;
    }

    /* Why Wyoming Section */
    .why-wyoming {
        padding: 50px 20px;
    }

    .why-wyoming-content {
        gap: 30px;
    }

    .why-wyoming-image {
        min-height: 250px;
    }

    .why-wyoming-text .section-title {
        font-size: 26px;
    }

    .why-wyoming-text .section-description {
        font-size: 15px;
    }

    .why-wyoming-list {
        gap: 12px;
    }

    .why-wyoming-list li {
        font-size: 14px;
    }

    .why-wyoming-list li i {
        font-size: 11px;
        width: 18px;
        height: 18px;
    }

    .why-wyoming-cta {
        margin-top: 30px;
    }

    /* Asset Protection & Corporate Services */
    .corporate-services {
        padding: 50px 20px;
    }

    .corporate-services .section-title {
        font-size: 28px;
    }

    .service-cards {
        gap: 25px;
        margin-top: 30px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Launch Section */
    .launch {
        padding: 50px 20px;
    }

    .launch .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    /* Better spacing for sections */
    section {
        scroll-margin-top: 80px;
    }

    /* Improved button touch targets */
    .btn-primary,
    .btn-login {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better form inputs on mobile */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }

    /* Improved spacing */
    .container {
        padding: 0 20px;
    }

    /* Hero improvements */
    .hero-content {
        padding: 0 10px;
    }

    /* Testimonials improvements */
    .testimonials {
        padding: 50px 20px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    /* FAQ improvements */
    .faqs {
        padding: 50px 20px;
    }

    .faqs-header {
        margin-bottom: 40px;
    }

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

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 14px;
        padding-top: 15px;
    }

    /* Footer improvements */
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    /* Better focus states for accessibility */
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Prevent text size adjustment on orientation change */
    * {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Form Styles */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-step {
    animation: fadeIn 0.3s ease-in;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
    .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-white);
    cursor: pointer;
}

.form-group .password-input-wrapper input {
    padding-right: 45px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 13px;
}

.password-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
    padding-right: 45px !important;
    width: 100%;
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light, #6b7280);
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    z-index: 10;
    font-size: 16px;
    line-height: 1;
}

.password-toggle-btn:hover {
    color: var(--primary-color);
}

.password-toggle-btn:focus {
    outline: none;
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Auth Pages */
/* Alert Messages - Beautiful Design */
.messages-container {
    margin-bottom: 24px;
}

.alert {
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alert i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.alert span {
    flex: 1;
    line-height: 1.5;
}

/* Error Alerts - Red Theme */
.alert-error,
.alert-danger,
.alert.error {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    color: #c53030;
    border-left-color: #e53e3e;
    box-shadow: 0 2px 12px rgba(229, 62, 62, 0.15);
}

.alert-error i,
.alert-danger i,
.alert.error i {
    background: rgba(229, 62, 62, 0.15);
    color: #e53e3e;
}

/* Success Alerts - Green Theme */
.alert-success,
.alert.success {
    background: linear-gradient(135deg, #f0fff4 0%, #e6ffed 100%);
    color: #22543d;
    border-left-color: #38a169;
    box-shadow: 0 2px 12px rgba(56, 161, 105, 0.15);
}

.alert-success i,
.alert.success i {
    background: rgba(56, 161, 105, 0.15);
    color: #38a169;
}

/* Info Alerts - Blue Theme */
.alert-info,
.alert.info {
    background: linear-gradient(135deg, #ebf8ff 0%, #d6efff 100%);
    color: #2c5282;
    border-left-color: #3182ce;
    box-shadow: 0 2px 12px rgba(49, 130, 206, 0.15);
}

.alert-info i,
.alert.info i {
    background: rgba(49, 130, 206, 0.15);
    color: #3182ce;
}

/* Warning Alerts - Orange Theme */
.alert-warning,
.alert.warning {
    background: linear-gradient(135deg, #fffaf0 0%, #fff5e6 100%);
    color: #c05621;
    border-left-color: #ed8936;
    box-shadow: 0 2px 12px rgba(237, 137, 54, 0.15);
}

.alert-warning i,
.alert.warning i {
    background: rgba(237, 137, 54, 0.15);
    color: #ed8936;
}

/* Default Alert */
.alert:not(.alert-error):not(.alert-success):not(.alert-info):not(.alert-warning):not(.alert-danger) {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    color: #2d3748;
    border-left-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.alert:not(.alert-error):not(.alert-success):not(.alert-info):not(.alert-warning):not(.alert-danger) i {
    background: rgba(26, 77, 58, 0.15);
    color: var(--primary-color);
}

/* Hover effect for better interactivity */
.alert:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .alert {
        padding: 14px 16px;
        font-size: 14px;
        gap: 10px;
    }
    
    .alert i {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }
}

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-light);
}

.auth-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-light);
    font-size: 16px;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: var(--text-light);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    padding: 0 15px;
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: var(--secondary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.5;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Services Page */
.services-hero {
    background: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-item-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-item .btn-primary {
    padding: 12px 25px;
    font-size: 16px;
}

/* About Page */
.about-content {
    padding: 60px 20px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text-light);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .form-container,
    .auth-card {
        padding: 30px 20px;
    }

    .form-container {
        max-width: 100%;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

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

    .services-list {
        grid-template-columns: 1fr;
    }

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

    .about-section h2 {
        font-size: 28px;
    }

    .auth-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .form-container,
    .auth-card {
        padding: 25px 15px;
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 26px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .auth-header h1 {
        font-size: 24px;
    }

    .service-item {
        padding: 20px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .nav-menu {
        top: 55px;
        padding: 15px 0;
    }

    .mobile-contact {
        font-size: 13px;
        padding: 6px 10px;
    }

    .mobile-contact span {
        display: none; /* Hide text on very small screens, show only icon */
    }

    .mobile-contact-icon {
        width: 16px;
        height: 16px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .menu-toggle span {
        width: 20px;
    }

    .form-container {
        padding: 20px 15px;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 16px;
    }

    /* Fix two-column grid on mobile */
    .form-container div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .nav-menu a {
        padding: 10px 20px;
        font-size: 15px;
    }

    .header-top {
        padding: 6px 15px;
        font-size: 12px;
    }

    .navbar {
        padding: 12px 15px;
        min-height: 50px;
    }

    .logo h1 {
        font-size: 18px;
    }
}

