/* 
FinRup - Local Meet & Chat Platform Styles
*/

/* Reset & Base Styles */
:root {
  --primary-color: #FF6B6B;
  --secondary-color: #4ECDC4;
  --accent-color: #FFE66D;
  --dark-color: #292F36;
  --light-color: #F7FFF7;
  --gray-color: #6C757D;
  --gray-light-color: #E9ECEF;
  --success-color: #2ECC71;
  --warning-color: #FFD166;
  --danger-color: #F25F5C;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

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

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

.btn.primary:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
}

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

.btn.secondary:hover {
  background-color: #3dbeb6;
  transform: translateY(-2px);
}

.btn.outline {
  background-color: transparent;
  color: var(--dark-color);
  border: 2px solid var(--gray-light-color);
}

.btn.outline:hover {
  background-color: var(--gray-light-color);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
}

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

nav ul {
  display: flex;
}

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

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

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

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  background: linear-gradient(to right, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

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

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background-color: var(--primary-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  color: white;
}

.feature-card h3 {
  margin-bottom: 15px;
}

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

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

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.checklist-item:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.checkbox {
  background-color: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.checkbox svg {
  width: 16px;
  height: 16px;
  color: white;
}

.checklist-text h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.checklist-text p {
  margin-bottom: 0;
  color: var(--gray-color);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(to right, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9)), url('images/2.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

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

.cta-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.cta-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-section img {
  border-radius: var(--border-radius);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Blog Preview Section */
.blog-preview {
  padding: 80px 0;
  background-color: white;
}

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

.blog-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.blog-content p {
  color: var(--gray-color);
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 10px;
}

.blog-more {
  text-align: center;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.footer-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.registration {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-links h3,
.footer-policy h3,
.footer-contact h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-policy h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li,
.footer-policy ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-policy ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-policy ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.footer-contact address p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact address p svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-contact address p a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.social-media {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

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

.social-media a svg {
  width: 20px;
  height: 20px;
  color: white;
}

.social-media a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-color);
  color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 20px;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.cookie-banner a {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.cookie-banner a:hover {
  text-decoration: underline;
}

/* Blog Page Styles */
.blog-header {
  padding: 150px 0 50px;
  background: linear-gradient(to right, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9)), url('images/3.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.blog-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.blog-main {
  padding: 80px 0;
}

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

.blog-date {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* About Page Styles */
.about-header {
  padding: 150px 0 50px;
  background: linear-gradient(to right, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9)), url('images/4.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.about-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.about-story {
  padding: 80px 0;
  background-color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.about-mission {
  padding: 80px 0;
  background-color: var(--gray-light-color);
}

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

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

.value-item {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  background-color: var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.team-section {
  padding: 80px 0;
  background-color: white;
}

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

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.team-card h3 {
  margin: 20px 0 5px;
}

.team-card p {
  margin-bottom: 10px;
  padding: 0 20px;
}

.team-card p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: bold;
}

.social-links {
  display: flex;
  justify-content: center;
  margin: 15px 0 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--gray-light-color);
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  color: var(--dark-color);
}

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

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

.stats-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: white;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Contact Page Styles */
.contact-header {
  padding: 150px 0 50px;
  background: linear-gradient(to right, rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9)), url('images/5.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
}

.contact-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-main {
  padding: 80px 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-container h2,
.contact-info-container h2 {
  margin-bottom: 30px;
}

.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-light-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}

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

.form-group.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--gray-light-color);
  padding: 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-item:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateX(5px);
}

.contact-item:hover .contact-icon {
  background-color: white;
}

.contact-item:hover .contact-icon svg {
  color: var(--secondary-color);
}

.contact-icon {
  background-color: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: var(--transition);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  transition: var(--transition);
}

.contact-text h3 {
  margin-bottom: 5px;
}

.contact-text p {
  margin-bottom: 0;
}

.social-connect h3 {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--gray-light-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a svg {
  width: 22px;
  height: 22px;
  color: var(--dark-color);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover svg {
  color: white;
}

.map-section {
  padding: 40px 0 80px;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-button:hover {
  color: var(--primary-color);
}

.modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.modal-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content p {
  margin-bottom: 25px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 130px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .tagline {
    font-size: 1.3rem;
  }
  
  .cta-section .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-content, .cta-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .cta-image {
    margin-top: 30px;
  }
  
  .contact-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-container {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .feature-grid, .mission-values, .team-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    margin-bottom: 10px;
  }
  
  .modal-content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 120px 0 50px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .tagline {
    font-size: 1.1rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .features, .checklist-section, .cta-section, .blog-preview, .blog-main, .about-story, .about-mission, .team-section, .contact-main, .map-section {
    padding: 50px 0;
  }
  
  .blog-header, .about-header, .contact-header {
    padding: 130px 0 40px;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .contact-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}
