/* 
 * Main CSS file for Konut Kiralama website
 * Theme: Corporate with Biomorphic Design elements
 * Color Scheme: Analogous
 * Animation Style: Scroll-dependent effects
 */

:root {
  /* Primary Colors */
  --primary-color: #3498db;
  --primary-dark: #2980b9;
  --primary-light: #5dade2;
  
  /* Secondary Colors (Analogous) */
  --secondary-color: #2ecc71;
  --secondary-dark: #27ae60;
  --secondary-light: #58d68d;
  
  /* Tertiary Colors */
  --tertiary-color: #1abc9c;
  --tertiary-dark: #16a085;
  --tertiary-light: #48c9b0;
  
  /* Neutral Colors */
  --dark-text: #2c3e50;
  --light-text: #ecf0f1;
  --medium-text: #7f8c8d;
  --light-bg: #f9f9f9;
  --medium-bg: #e0e0e0;
  --dark-bg: #333333;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  --secondary-gradient: linear-gradient(135deg, var(--secondary-light), var(--secondary-dark));
  --tertiary-gradient: linear-gradient(135deg, var(--tertiary-light), var(--tertiary-dark));
  
  /* Shadows */
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  --hover-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --smooth-transition: all 0.3s ease;
  --medium-transition: all 0.5s ease;
  --slow-transition: all 0.8s ease;
  
  /* Border Radius */
  --border-radius-small: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 16px;
  --border-radius-xl: 24px;
  --border-radius-round: 50%;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

/* Typography */
body {
  font-family: 'Merriweather', serif;
  color: var(--dark-text);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--light-bg);
}

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

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

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

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-text);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

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

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

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

/* Buttons */
.btn, button, input[type="submit"] {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--border-radius-medium);
  transition: var(--smooth-transition);
  text-align: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--button-shadow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover, button:hover, input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
}

.btn:active, button:active, input[type="submit"]:active {
  transform: translateY(1px);
}

.btn-primary, input[type="submit"] {
  background: var(--primary-gradient);
  color: white;
}

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

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

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

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

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1rem;
}

/* Navigation */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: var(--smooth-transition);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
  transition: var(--smooth-transition);
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar-toggler {
  border: none;
  background: transparent;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--dark-text);
  margin: 0 0.8rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary-gradient);
  transition: var(--smooth-transition);
}

.nav-link:hover:after {
  width: 100%;
}

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

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

.nav-link.active:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-buttons {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

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

/* Statistics Section */
.statistics-section {
  background-color: white;
  padding: 4rem 0;
}

.stat-widget {
  text-align: center;
  padding: 2rem;
  transition: var(--medium-transition);
  border-radius: var(--border-radius-medium);
  background-color: white;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-widget:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.stat-title {
  font-size: 1.1rem;
  color: var(--medium-text);
  margin-bottom: 0;
}

/* Property Cards */
.featured-properties-section {
  background-color: var(--light-bg);
  position: relative;
}

.featured-properties-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: var(--border-radius-round);
  filter: blur(50px);
  z-index: 0;
}

.property-card {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  background-color: white;
  box-shadow: var(--card-shadow);
  transition: var(--medium-transition);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.property-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-medium);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.property-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--medium-text);
}

.property-details span {
  display: flex;
  align-items: center;
}

.property-details i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.property-description {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--medium-text);
  flex-grow: 1;
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.property-price span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* About Section */
.about-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--tertiary-light) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: var(--border-radius-round);
  filter: blur(70px);
  z-index: 0;
}

.about-section img {
  border-radius: var(--border-radius-large);
  box-shadow: var(--card-shadow);
  transition: var(--medium-transition);
}

.about-section img:hover {
  transform: scale(1.02);
  box-shadow: var(--hover-shadow);
}

.about-section .lead {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
}

/* History Section */
.history-section {
  background-color: var(--light-bg);
  position: relative;
}

.timeline {
  position: relative;
  padding: 3rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-gradient);
  z-index: 1;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 2;
  transition: var(--medium-transition);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: var(--border-radius-round);
  z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--medium-text);
}

/* Awards Section */
.awards-section {
  background-color: white;
  position: relative;
}

.awards-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: var(--border-radius-round);
  filter: blur(80px);
  z-index: 0;
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--card-shadow);
  transition: var(--medium-transition);
  height: 100%;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.award-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius-round);
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.award-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.award-description {
  color: var(--medium-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Resources Section */
.resources-section {
  background-color: var(--light-bg);
  position: relative;
}

.resources-container {
  padding: 2rem 0;
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  height: 100%;
  transition: var(--medium-transition);
}

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

.resource-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.resource-card h3 a {
  color: var(--primary-color);
  transition: var(--smooth-transition);
}

.resource-card h3 a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.resource-card p {
  color: var(--medium-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Clientele Section */
.clientele-section {
  background-color: white;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--card-shadow);
  transition: var(--medium-transition);
  height: 100%;
  margin-bottom: 2rem;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius-round);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-rating {
  color: gold;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--medium-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
}

.testimonial-position {
  color: var(--medium-text);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Media Section */
.media-section {
  background-color: var(--light-bg);
}

.media-video {
  margin-bottom: 3rem;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background-color: white;
  padding-bottom: 2rem;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--smooth-transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  background-color: white;
}

.media-video h3 {
  padding: 0 2rem;
  margin-bottom: 0.5rem;
}

.media-video p {
  padding: 0 2rem;
  color: var(--medium-text);
  font-size: 0.95rem;
}

.media-features {
  background-color: white;
  border-radius: var(--border-radius-large);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.media-features h3 {
  margin-bottom: 2rem;
  text-align: center;
}

.media-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.media-item:last-child {
  margin-bottom: 0;
}

.media-logo {
  width: 80px;
  height: 40px;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-content h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.media-content p {
  margin-bottom: 0.5rem;
  color: var(--medium-text);
  font-size: 0.95rem;
}

.media-date {
  font-size: 0.8rem;
  color: var(--medium-text);
}

/* Contact Section */
.contact-section {
  background-color: white;
  position: relative;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: var(--border-radius-round);
  filter: blur(80px);
  z-index: 0;
}

.contact-info {
  background-color: white;
  border-radius: var(--border-radius-large);
  padding: 3rem;
  box-shadow: var(--card-shadow);
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.contact-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--medium-text);
  margin-bottom: 0;
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius-large);
  padding: 3rem;
  box-shadow: var(--card-shadow);
  height: 100%;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark-text);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-bg);
  border-radius: var(--border-radius-medium);
  transition: var(--smooth-transition);
  font-family: 'Merriweather', serif;
  color: var(--dark-text);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

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

.form-check-input {
  margin-top: 0.25rem;
}

/* Footer */
.footer-section {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding-top: 5rem;
}

.footer-about h3, .footer-links h3, .footer-newsletter h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  transition: var(--smooth-transition);
}

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

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

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

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

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-newsletter input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius-medium);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 4rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--smooth-transition);
}

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

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.success-container {
  max-width: 800px;
  padding: 4rem;
  background-color: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--card-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.success-title {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.success-message {
  margin-bottom: 2.5rem;
  color: var(--medium-text);
}

/* Cookie Consent */
.cookie-consent {
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.cookie-consent p {
  margin-bottom: 1rem;
}

.cookie-consent button {
  display: inline-block;
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: var(--border-radius-medium);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: var(--smooth-transition);
}

.cookie-consent button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 5rem;
  background-color: var(--light-bg);
}

.privacy-content, .terms-content {
  background-color: white;
  border-radius: var(--border-radius-large);
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

.privacy-content h2, .terms-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.privacy-content h2:first-child, .terms-content h2:first-child {
  margin-top: 0;
}

.privacy-content p, .terms-content p {
  margin-bottom: 1.5rem;
  color: var(--medium-text);
}

.privacy-content ul, .terms-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--medium-text);
}

.privacy-content li, .terms-content li {
  margin-bottom: 0.5rem;
}

/* Animation Classes */
[data-aos="fade-up"] {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos].aos-animate {
  transform: translateY(0) translateX(0) scale(1);
  opacity: 1;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: var(--border-radius-medium);
}

.rounded-circle {
  border-radius: var(--border-radius-round);
}

/* Read More Links */
.read-more {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-top: 1rem;
  position: relative;
  padding-right: 25px;
  transition: var(--smooth-transition);
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--smooth-transition);
}

.read-more:hover {
  color: var(--primary-dark);
  padding-right: 30px;
}

.read-more:hover::after {
  right: -5px;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-info, .contact-form {
    margin-bottom: 2rem;
  }
  
  .footer-about, .footer-links, .footer-newsletter {
    margin-bottom: 3rem;
  }
  
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-widget, .property-card, .award-card, .testimonial-card {
    margin-bottom: 2rem;
  }
  
  .video-placeholder {
    height: 250px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto 1rem;
  }
  
  .footer-newsletter form {
    flex-direction: column;
  }
  
  .footer-newsletter button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .contact-form, .contact-info {
    padding: 2rem;
  }
  
  .success-container {
    padding: 2rem;
  }
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--medium-bg);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}