/* 
  Taxi Service Geo USA - Main Stylesheet
  Modern and responsive design for taxi service information blog
*/

/* Base Styles and Variables */
:root {
  --primary-color: #ffc107;
  --secondary-color: #ff9800;
  --primary-dark: #e0a800;
  --secondary-dark: #e68900;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --background-color: #ffffff;
  --background-alt: #f9f9f9;
  --background-dark: #f0f0f0;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #4caf50;
  --danger-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --border-radius: 8px;
  --border-radius-small: 4px;
  --transition-speed: 0.3s;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@500;600;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--secondary-dark);
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-size: 1rem;
  border: none;
  outline: none;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-color);
}

.secondary-btn {
  background-color: var(--secondary-color);
  color: white;
}

.secondary-btn:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.outline-btn {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.outline-btn:hover {
  background-color: var(--background-dark);
}

/* Header */
header {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all var(--transition-speed) ease;
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

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

nav ul li a.active {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  fill: var(--text-color);
}

/* Hero Section */
.hero {
  background-color: var(--background-alt);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  fill: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
}

/* Destinations Section */
.destinations {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.destinations h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

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

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  margin-bottom: 0.5rem;
}

.destination-info p {
  color: var(--text-light);
}

/* Blog Preview Section */
.blog-preview {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.blog-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content h3 {
  margin-bottom: 0.75rem;
}

.blog-card-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Comparison Table */
.comparison-table {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

.comparison-table h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--background-color);
  box-shadow: 0 5px 15px var(--shadow-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

thead {
  background-color: var(--primary-color);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

tr:nth-child(even) {
  background-color: var(--background-alt);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-content {
  flex: 2;
  padding-right: 2rem;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  max-width: 500px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
  outline: none;
}

.subscribe-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.cta-3d-button {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 3D Button */
.btn-3d {
  position: relative;
  display: inline-block;
  padding: 1.5rem 3rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  border-radius: var(--border-radius);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 0 var(--primary-dark), 0 15px 20px var(--shadow-color);
  transition: box-shadow 0.1s, transform 0.1s;
  transform-style: preserve-3d;
  perspective: 600px;
}

.btn-3d .btn-3d-front,
.btn-3d .btn-3d-back {
  display: block;
  transition: all 0.2s ease;
}

.btn-3d .btn-3d-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0) rotateX(90deg);
  transform-origin: bottom center;
  opacity: 0;
}

.btn-3d:hover {
  transform: translateY(4px);
  box-shadow: 0 4px 0 var(--primary-dark), 0 8px 10px var(--shadow-color);
}

.btn-3d:hover .btn-3d-front {
  transform: translateY(-25%) rotateX(-90deg);
  opacity: 0;
}

.btn-3d:hover .btn-3d-back {
  transform: translateY(0) rotateX(0);
  opacity: 1;
}

.btn-3d:active {
  transform: translateY(8px);
  box-shadow: 0 0 0 var(--primary-dark), 0 0 0 var(--shadow-color);
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: #ecf0f1;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: #ecf0f1;
  transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #ecf0f1;
}

.footer-contact svg {
  fill: var(--primary-color);
  margin-right: 0.5rem;
}

.footer-contact a {
  color: #ecf0f1;
  transition: color var(--transition-speed) ease;
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color var(--transition-speed) ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons svg {
  fill: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #ecf0f1;
  margin: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  box-shadow: 0 -5px 20px var(--shadow-color);
  padding: 1.5rem;
  z-index: 1000;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Page Header */
.page-header {
  background-color: var(--background-alt);
  padding: 5rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Content */
.blog-content {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-details {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.blog-meta svg {
  fill: var(--primary-color);
  margin-right: 0.25rem;
}

.blog-details h2 {
  margin-bottom: 1rem;
}

.blog-details h2 a {
  color: var(--text-color);
  transition: color var(--transition-speed) ease;
}

.blog-details h2 a:hover {
  color: var(--primary-color);
}

.blog-details p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Subscribe Section */
.subscribe {
  padding: 5rem 0;
  background-color: var(--background-alt);
}

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

.subscribe-content h2 {
  margin-bottom: 1rem;
}

.subscribe-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Post Header */
.post-header {
  background-color: var(--background-alt);
  padding: 5rem 0;
}

.post-header h1 {
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.post-meta span {
  display: flex;
  align-items: center;
  color: var(--text-lighter);
}

.post-meta svg {
  fill: var(--primary-color);
  margin-right: 0.25rem;
}

/* Post Content */
.post-content {
  padding: 5rem 0;
}

.post-image {
  margin-bottom: 2rem;
}

.post-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px var(--shadow-color);
}

article {
  max-width: 800px;
  margin: 0 auto;
}

article h2, article h3 {
  margin-top: 2rem;
}

article ul, article ol {
  margin-bottom: 1.5rem;
}

article li {
  margin-bottom: 0.5rem;
}

.post-info-box {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-info-box h3 {
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.post-info-box p {
  margin-bottom: 0;
}

.post-quote {
  font-size: 1.25rem;
  font-style: italic;
  padding: 2rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  margin: 2rem 0;
  position: relative;
}

.post-quote:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 10px;
  color: rgba(0, 0, 0, 0.1);
  font-family: Georgia, serif;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-navigation a {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-weight: 500;
}

.post-navigation a:hover {
  color: var(--primary-color);
}

.post-navigation .prev a svg,
.post-navigation .next a svg {
  fill: currentColor;
}

.post-navigation .prev a svg {
  margin-right: 0.5rem;
}

.post-navigation .next a svg {
  margin-left: 0.5rem;
}

.share-post {
  margin-top: 3rem;
  text-align: center;
}

.share-post h3 {
  margin-bottom: 1.5rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-buttons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-speed) ease;
}

.share-buttons .facebook {
  background-color: #1877f2;
  color: white;
}

.share-buttons .twitter {
  background-color: #1da1f2;
  color: white;
}

.share-buttons .pinterest {
  background-color: #bd081c;
  color: white;
}

.share-buttons .email {
  background-color: #333;
  color: white;
}

.share-buttons a:hover {
  opacity: 0.9;
}

.share-buttons svg {
  fill: currentColor;
}

.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.related-card {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

.related-card:hover {
  transform: translateY(-10px);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card h4 {
  padding: 1rem;
  margin: 0;
}

.related-card a {
  color: var(--text-color);
}

.related-card a:hover {
  color: var(--primary-color);
}

/* About Page */
.about-content {
  padding: 5rem 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.about-values {
  margin-bottom: 5rem;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon svg {
  fill: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
}

.about-team {
  margin-bottom: 5rem;
}

.about-team h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.5rem 0 0.25rem;
}

.team-member p {
  color: var(--text-light);
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--background-color);
  border-radius: 50%;
  transition: background-color var(--transition-speed) ease;
}

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

.social-links svg {
  fill: var(--text-color);
}

.social-links a:hover svg {
  fill: white;
}

.about-stats {
  margin-bottom: 5rem;
}

.about-stats h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-description {
  color: var(--text-light);
  font-size: 1.1rem;
}

.about-testimonials {
  margin-bottom: 5rem;
}

.about-testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--background-alt);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-content {
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial-content:before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(0, 0, 0, 0.1);
  font-family: Georgia, serif;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
}

.testimonial-author p {
  color: var(--text-light);
  margin: 0;
}

.about-partners {
  margin-bottom: 5rem;
}

.about-partners h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-speed) ease;
}

.partner:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.about-cta {
  padding: 4rem;
  background-color: var(--background-alt);
  border-radius: var(--border-radius);
  text-align: center;
}

.about-cta h2 {
  margin-bottom: 1.5rem;
}

.about-cta p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Contact Page */
.contact-content {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.info-icon {
  margin-right: 1rem;
}

.info-icon svg {
  fill: var(--primary-color);
}

.info-content h3 {
  margin-bottom: 0.5rem;
}

.info-content p, .info-content a {
  color: var(--text-light);
}

.info-content a:hover {
  color: var(--primary-color);
}

.social-contact {
  margin: 2.5rem 0;
}

.registration-info {
  background-color: var(--background-alt);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.registration-info h3 {
  margin-bottom: 0.5rem;
}

.registration-info p {
  color: var(--text-light);
  margin: 0;
}

.contact-form-container {
  background-color: var(--background-alt);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-form-container h2 {
  margin-bottom: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
}

.contact-form .checkbox-group {
  display: flex;
  align-items: center;
}

.contact-form .checkbox-group input {
  margin-right: 0.5rem;
}

.contact-form .checkbox-group label {
  margin: 0;
}

.form-submit {
  text-align: center;
}

.map-section {
  margin-bottom: 5rem;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  background-color: var(--background-alt);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

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

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

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--background-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message h2 {
  margin: 1.5rem 0;
}

.thank-you-message p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-image {
    justify-content: center;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cta .container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .cta-content {
    padding-right: 0;
    text-align: center;
  }
  
  .subscribe-form {
    margin: 0 auto;
  }
  
  .blog-item {
    grid-template-columns: 1fr;
  }
  
  .blog-image img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 5px 10px var(--shadow-color);
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
  }
  
  nav ul.show {
    display: flex;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .features-grid,
  .destinations-grid,
  .blog-cards,
  .values-grid,
  .team-grid,
  .stats-grid,
  .testimonials-slider,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .table-container {
    overflow-x: auto;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .subscribe-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .btn-3d {
    padding: 1.25rem 2.5rem;
  }
}
