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

:root {
--primary: #1a4d2e;
--secondary: #4f7942;
--accent: #d4a574;
--dark: #0f1419;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--dark);
font-size: 14px;
}

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

.header {
background: var(--primary);
padding: 12px 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}

.logo {
font-size: 18px;
font-weight: 700;
color: #fff;
letter-spacing: 0.5px;
}

.nav {
display: flex;
gap: 20px;
}

.nav a {
color: #fff;
text-decoration: none;
font-size: 13px;
font-weight: 500;
padding: 6px 12px;
border-radius: 4px;
transition: background 0.3s;
}

.nav a:hover {
background: rgba(255,255,255,0.15);
}

.menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.menu-toggle span {
width: 22px;
height: 2px;
background: #fff;
transition: 0.3s;
}

.hero-modern {
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('../scenic_britain/hero-pattern.jpg') center/cover;
opacity: 0.08;
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
padding: 60px 0;
}

.hero-text {
max-width: 700px;
margin-bottom: 40px;
}

.hero-badge {
display: inline-block;
background: var(--accent);
color: var(--dark);
padding: 6px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
margin-bottom: 20px;
letter-spacing: 0.5px;
}

.hero-modern h1 {
font-size: 48px;
color: #fff;
margin-bottom: 20px;
font-weight: 800;
line-height: 1.2;
}

.hero-modern p {
font-size: 17px;
color: rgba(255,255,255,0.9);
margin-bottom: 30px;
line-height: 1.7;
}

.hero-actions {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn-hero {
display: inline-block;
background: var(--accent);
color: var(--dark);
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 700;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-hero-outline {
display: inline-block;
background: transparent;
color: #fff;
padding: 14px 32px;
text-decoration: none;
border-radius: 6px;
font-weight: 600;
font-size: 14px;
border: 2px solid #fff;
transition: background 0.3s, color 0.3s;
}

.btn-hero-outline:hover {
background: #fff;
color: var(--primary);
}

.hero-stats {
display: flex;
gap: 40px;
margin-top: 50px;
flex-wrap: wrap;
}

.stat-item {
display: flex;
flex-direction: column;
}

.stat-number {
font-size: 36px;
font-weight: 800;
color: var(--accent);
line-height: 1;
margin-bottom: 5px;
}

.stat-label {
font-size: 13px;
color: rgba(255,255,255,0.8);
}

section {
padding: 50px 0;
}

.intro-section {
background: #f8f9fa;
}

.intro-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

h2 {
font-size: 32px;
margin-bottom: 20px;
color: var(--primary);
font-weight: 700;
text-align: center;
}

.intro-content p {
font-size: 16px;
line-height: 1.8;
color: #555;
}

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

.feature-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card img {
width: 100%;
height: auto;
display: block;
}

.feature-card h3,
.feature-card p {
padding: 0 20px;
}

.feature-card h3 {
font-size: 20px;
color: var(--primary);
margin: 20px 0 12px;
font-weight: 700;
}

.feature-card p {
font-size: 14px;
color: #666;
padding-bottom: 20px;
line-height: 1.7;
}

.destinations-showcase {
background: #f8f9fa;
}

.destinations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 40px;
}

.destination-card {
background: #fff;
padding: 30px 25px;
border-radius: 10px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
transition: transform 0.3s;
}

.destination-card:hover {
transform: translateY(-5px);
}

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

.destination-card h3 {
font-size: 20px;
color: var(--primary);
margin-bottom: 12px;
font-weight: 700;
text-align: left;
}

.destination-card p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
line-height: 1.7;
}

.link-arrow {
color: var(--secondary);
text-decoration: none;
font-size: 13px;
font-weight: 600;
display: inline-block;
transition: transform 0.3s;
}

.link-arrow:hover {
transform: translateX(5px);
}

.experience-types {
background: var(--primary);
color: #fff;
}

.experience-types h2 {
color: #fff;
}

.experience-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 40px;
}

.experience-item {
background: rgba(255,255,255,0.1);
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--accent);
}

.experience-item h3 {
font-size: 18px;
margin-bottom: 10px;
color: var(--accent);
font-weight: 700;
}

.experience-item p {
font-size: 14px;
color: rgba(8, 5, 5, 0.9);
line-height: 1.7;
}

.testimonials {
background: #f8f9fa;
}

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

.testimonial {
background: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
border-top: 3px solid var(--accent);
}

.testimonial p {
font-size: 15px;
font-style: italic;
color: #555;
margin-bottom: 15px;
line-height: 1.7;
}

.testimonial span {
font-size: 13px;
color: var(--primary);
font-weight: 600;
font-style: normal;
}

.process-section {
background: #fff;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}

.process-step {
text-align: center;
padding: 25px;
}

.step-number {
display: inline-block;
width: 60px;
height: 60px;
background: var(--accent);
color: var(--dark);
border-radius: 50%;
line-height: 60px;
font-weight: 800;
font-size: 20px;
margin-bottom: 20px;
}

.process-step h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 12px;
font-weight: 700;
}

.process-step p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.guide-intro {
background: #f8f9fa;
text-align: center;
}

.guide-intro p {
max-width: 800px;
margin: 0 auto 30px;
font-size: 15px;
color: #555;
line-height: 1.8;
}

.guide-qualities {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
margin-top: 30px;
}

.quality-item {
background: var(--primary);
color: #fff;
padding: 10px 20px;
border-radius: 25px;
font-size: 13px;
font-weight: 600;
}

.seasonal-highlights {
background: #fff;
}

.seasonal-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 40px;
}

.season-card {
background: #f8f9fa;
padding: 25px;
border-radius: 10px;
border-left: 4px solid var(--secondary);
}

.season-card h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 12px;
font-weight: 700;
}

.season-card p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.practical-info {
background: #f8f9fa;
}

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

.info-column {
background: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.info-column h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 12px;
font-weight: 700;
}

.info-column p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.booking-confidence {
background: #fff;
}

.confidence-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
margin-top: 40px;
}

.confidence-item {
padding: 25px;
background: #f8f9fa;
border-radius: 10px;
}

.confidence-item h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 10px;
font-weight: 700;
}

.confidence-item p {
font-size: 14px;
color: #666;
line-height: 1.7;
}

.final-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: #fff;
padding: 70px 0;
}

.cta-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.final-cta h2 {
color: #fff;
font-size: 36px;
margin-bottom: 20px;
}

.final-cta p {
font-size: 16px;
margin-bottom: 30px;
color: rgba(255,255,255,0.95);
line-height: 1.8;
}

.btn-large {
display: inline-block;
background: var(--accent);
color: var(--dark);
padding: 16px 40px;
text-decoration: none;
border-radius: 6px;
font-weight: 700;
font-size: 15px;
transition: transform 0.3s, box-shadow 0.3s;
}

.btn-large:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.contact-bar {
background: var(--dark);
color: #fff;
padding: 35px 0;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
text-align: center;
}

.contact-item h3 {
color: var(--accent);
font-size: 16px;
margin-bottom: 8px;
font-weight: 700;
}

.contact-item p {
font-size: 14px;
color: rgba(255,255,255,0.9);
}

.footer {
background: var(--dark);
color: #fff;
padding: 40px 0 20px;
}

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

.footer-section h4 {
font-size: 16px;
margin-bottom: 15px;
color: var(--accent);
font-weight: 700;
}

.footer-section p {
font-size: 13px;
color: rgba(255,255,255,0.8);
line-height: 1.6;
}

.footer-section a {
display: block;
color: rgba(255,255,255,0.8);
text-decoration: none;
font-size: 13px;
margin-bottom: 8px;
transition: color 0.3s;
}

.footer-section a:hover {
color: var(--accent);
}

.footer-bottom {
text-align: center;
padding-top: 25px;
border-top: 1px solid rgba(255,255,255,0.1);
font-size: 12px;
color: rgba(255,255,255,0.6);
}

.page-hero {
background: var(--primary);
color: #fff;
padding: 50px 0;
text-align: center;
}

.page-hero h1 {
font-size: 36px;
margin-bottom: 12px;
font-weight: 700;
}

.page-hero p {
font-size: 16px;
color: rgba(255,255,255,0.9);
}

.btn {
display: inline-block;
background: var(--accent);
color: var(--dark);
padding: 12px 28px;
text-decoration: none;
border-radius: 6px;
font-weight: 700;
font-size: 14px;
transition: transform 0.3s, box-shadow 0.3s;
border: none;
cursor: pointer;
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
display: inline-block;
background: var(--secondary);
color: #fff;
padding: 10px 22px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 13px;
transition: background 0.3s;
}

.btn-secondary:hover {
background: var(--primary);
}

.packages-grid,
.trails-grid,
.regions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}

.package-card,
.trail-card,
.region-card {
background: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover,
.trail-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.package-card h3,
.trail-card h3,
.region-card h3 {
color: var(--primary);
font-size: 20px;
margin-bottom: 12px;
font-weight: 700;
}

.package-card p,
.trail-card p,
.region-card p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
line-height: 1.7;
}

.package-details {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px 0;
padding: 12px 0;
border-top: 1px solid #eee;
}

.duration,
.price {
font-size: 13px;
font-weight: 600;
color: var(--primary);
}

.price {
font-size: 24px;
color: var(--accent);
font-weight: 800;
}

.difficulty {
display: inline-block;
background: var(--accent);
color: var(--dark);
padding: 5px 12px;
border-radius: 4px;
font-size: 11px;
font-weight: 700;
margin-top: 10px;
}

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

.contact-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}

.contact-form-container h2,
.contact-info-container h2 {
font-size: 26px;
margin-bottom: 25px;
text-align: left;
color: var(--primary);
font-weight: 700;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 18px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-size: 13px;
font-weight: 600;
margin-bottom: 6px;
color: var(--dark);
}

.form-group input,
.form-group textarea {
padding: 12px;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 12px;
font-weight: 400;
cursor: pointer;
}

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

.checkbox-label a {
color: var(--primary);
text-decoration: underline;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 25px;
}

.contact-item h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 8px;
font-weight: 700;
}

.contact-item p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

.map-section {
padding: 50px 0;
background: #f8f9fa;
}

.map-container {
margin-top: 25px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.thankyou-page,
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
padding: 20px;
}

.thankyou-content,
.error-content {
background: #fff;
padding: 50px 40px;
border-radius: 15px;
text-align: center;
max-width: 650px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-content h1 {
font-size: 20px;
color: var(--primary);
margin-bottom: 20px;
font-weight: 800;
}

.error-content h1 {
font-size: 80px;
color: var(--accent);
font-weight: 800;
line-height: 1;
}

.error-content h2 {
font-size: 32px;
margin-bottom: 15px;
color: var(--primary);
font-weight: 700;
}

.thankyou-content p,
.error-content p {
font-size: 13px;
color: #666;
margin-bottom: 15px;
line-height: 1.7;
}

.thankyou-buttons,
.error-buttons {
display: flex;
gap: 15px;
justify-content: center;
margin-top: 30px;
flex-wrap: wrap;
}

.policy-page {
padding: 50px 0;
}

.policy-page h1 {
font-size: 36px;
color: var(--primary);
margin-bottom: 12px;
font-weight: 800;
}

.update-date {
font-size: 12px;
color: #999;
margin-bottom: 35px;
}

.policy-section {
margin-bottom: 35px;
}

.policy-section h2 {
font-size: 24px;
color: var(--primary);
margin-bottom: 18px;
text-align: left;
font-weight: 700;
}

.policy-section h3 {
font-size: 18px;
color: var(--dark);
margin: 18px 0 12px;
font-weight: 600;
}

.policy-section p {
font-size: 14px;
color: #666;
margin-bottom: 15px;
line-height: 1.8;
}

.policy-section ul {
margin: 12px 0 18px 25px;
}

.policy-section li {
font-size: 14px;
color: #666;
margin-bottom: 8px;
line-height: 1.7;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--dark);
color: #fff;
padding: 18px;
z-index: 1000;
box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
display: none;
}

.privacy-popup.show {
display: block;
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 25px;
flex-wrap: wrap;
}

.privacy-content p {
font-size: 13px;
margin: 0;
flex: 1;
min-width: 250px;
line-height: 1.6;
}

.privacy-buttons {
display: flex;
gap: 15px;
align-items: center;
}

.privacy-buttons a {
color: var(--accent);
text-decoration: underline;
font-size: 13px;
font-weight: 600;
}

.privacy-buttons button {
background: var(--accent);
color: var(--dark);
border: none;
padding: 10px 24px;
border-radius: 5px;
cursor: pointer;
font-size: 13px;
font-weight: 700;
transition: transform 0.3s;
}

.privacy-buttons button:hover {
transform: scale(1.05);
}

@media (max-width: 768px) {
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary);
flex-direction: column;
gap: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s;
}

.nav.active {
max-height: 300px;
padding: 10px 0;
}

.nav a {
padding: 12px 20px;
border-radius: 0;
}

.menu-toggle {
display: flex;
}

.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(5px, -5px);
}

.hero-modern {
min-height: 70vh;
}

.hero-modern h1 {
font-size: 32px;
}

.hero-modern p {
font-size: 15px;
}

.hero-stats {
gap: 25px;
}

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

h2 {
font-size: 26px;
}

.features-grid,
.destinations-grid,
.experience-grid,
.testimonials-grid,
.process-steps,
.seasonal-grid,
.info-columns,
.confidence-grid,
.packages-grid,
.trails-grid,
.regions-grid {
grid-template-columns: 1fr;
}

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

.final-cta h2 {
font-size: 28px;
}

.thankyou-content,
.error-content {
padding: 40px 25px;
}

.error-content h1 {
font-size: 60px;
}

.privacy-content {
flex-direction: column;
text-align: center;
}

.privacy-buttons {
width: 100%;
justify-content: center;
}
}

@media (max-width: 480px) {
body {
font-size: 13px;
}

.hero-modern {
min-height: 60vh;
padding: 40px 0;
}

.hero-modern h1 {
font-size: 26px;
}

.hero-modern p {
font-size: 14px;
}

.hero-actions {
flex-direction: column;
width: 100%;
}

.btn-hero,
.btn-hero-outline {
width: 100%;
text-align: center;
}

.hero-stats {
gap: 20px;
}

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

section {
padding: 35px 0;
}

h2 {
font-size: 22px;
margin-bottom: 20px;
}

.btn {
padding: 11px 24px;
font-size: 13px;
}

.thankyou-buttons,
.error-buttons {
flex-direction: column;
width: 100%;
}

.thankyou-buttons a,
.error-buttons a {
width: 100%;
}
}

@media (max-width: 320px) {
.hero-modern h1 {
font-size: 22px;
}

h2 {
font-size: 20px;
}

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

.feature-card,
.package-card,
.trail-card {
padding: 20px 15px;
}
}
