/*
Theme Name: Easypay
*/


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Color Variables */
:root {
  --primary-green: #7cb342;
  --dark-green: #4a7c59;
  --primary-orange: #ff8c00;
  --dark-orange: #ff6600;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 40px;
  width: auto;
}

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

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.lang-toggle {
  background: var(--primary-orange);
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-gray);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

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

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

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5e8 100%);
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.card-mockup {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.payment-card i {
  font-size: 4rem;
  color: var(--primary-green);
}

.payment-card span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

/* Page Header */
.page-header {
  background: var(--light-gray);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--medium-gray);
}

/* About Intro */
.about-intro {
  padding: 80px 0;
  background: var(--white);
}

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

.about-content h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--medium-gray);
  font-weight: 600;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background: var(--light-gray);
}

.partners h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

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

.partner-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.partner-card i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.partner-card h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.partner-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Quick Links */
.quick-links {
  padding: 80px 0;
  background: var(--white);
}

.quick-links h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

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

.link-card {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.link-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
  background: var(--white);
  box-shadow: var(--shadow);
}

.link-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.link-card h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.link-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Company Profile */
.company-profile {
  padding: 80px 0;
  background: var(--white);
}

.profile-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.profile-text h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.profile-text p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.profile-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder i {
  font-size: 4rem;
  color: var(--primary-green);
}

/* Vision & Mission */
.vision-mission {
  padding: 80px 0;
  background: var(--light-gray);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.vm-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.vm-card i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.vm-card h3 {
  font-size: 1.8rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.vm-card p {
  color: var(--medium-gray);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: var(--white);
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

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

.feature-card {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Values */
.values {
  padding: 80px 0;
  background: var(--light-gray);
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

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

.value-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.value-item i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Coverage */
.coverage {
  padding: 80px 0;
  background: var(--white);
}

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

.coverage-content h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.coverage-description {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  direction: rtl;
  text-align: right;
}

.coverage-content p:last-child {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Regional Contacts */
.regional-contacts {
  padding: 80px 0;
  background: var(--white);
}

.regional-contacts h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

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

.region-card {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.region-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.region-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.region-card h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.region-info p {
  color: var(--medium-gray);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.region-info strong {
  color: var(--dark-gray);
}

/* Coverage Stats */
.coverage-stats {
  padding: 80px 0;
  background: var(--light-gray);
}

.coverage-stats h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

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

.stat-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--medium-gray);
  font-weight: 600;
}

/* Partnership Benefits */
.partnership-benefits {
  padding: 80px 0;
  background: var(--white);
}

.benefits-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.benefits-intro h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.benefits-intro p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

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

.benefit-card {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

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

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 4rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

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

.step-content h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Forms */
.partnership-form,
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

.partner-form,
.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

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

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form-container h2 {
  font-size: 2rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.contact-form-container p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--medium-gray);
  margin-bottom: 0.25rem;
}

.whatsapp-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-link:hover {
  text-decoration: underline;
}

.support-note {
  color: var(--primary-orange) !important;
  font-weight: 600;
}

/* Social Section */
.social-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.social-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.social-section p {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

.social-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

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

.social-card i {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
}

.social-card.facebook i {
  background: #1877f2;
}

.social-card.twitter i {
  background: #1da1f2;
}

.social-card.linkedin i {
  background: #0077b5;
}

.social-card.instagram i {
  background: #e4405f;
}

.social-card h4 {
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

.social-card p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
}

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

.faq-item {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.faq-item h4 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Download Section */
.download-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.download-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.download-content i {
  font-size: 4rem;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
}

.download-content h3 {
  font-size: 1.8rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.download-content p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-section p {
  color: #adb5bd;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #495057;
  padding-top: 2rem;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .steps-container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .page-header {
    padding: 100px 0 40px;
  }

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

  .partner-form,
  .contact-form {
    padding: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}





/* ========== */
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 60vh;
    min-height: 300PX;
    overflow: hidden;
    margin-top: 79px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.slide-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.3rem;
}

.slider-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
    border-color: var(--white);
}

.dot:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

/* Slide Progress Bar */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-bar {
    height: 100%;
    background: var(--primary-green);
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive Design for Hero Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
        margin-top: 60px;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Animation for slide change */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide.active {
    animation: slideIn 0.8s ease-out;
}
/* استهدف زر الإرسال */
.wpcf7 .wpcf7-submit.btn-large {

   
    background-color: #7cb432; /* لون btn-primary */
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* تأثير hover */
.wpcf7 .wpcf7-submit.btn-large:hover {
    background-color: #4a7c59; /* لون btn-primary عند hover */
}



