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

:root {
  --primary-red: #D01C1F;
  --primary-red-dark: #A01517;
  --accent-gold: #D4AF37;
  --accent-dark-blue: #2A4D78;
  --dark-grey: #333333;
  --medium-grey: #666666;
  --white: #FFFFFF;
  --light-grey: #F5F5F5;
  --border-grey: #E0E0E0;
  
  --font-primary: 'Montserrat', sans-serif;
  --font-fallback: 'Roboto', sans-serif;
  
  --transition-fast: 150ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 300ms ease-out;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  
  --header-height: 80px;
  --header-height-scrolled: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fallback);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-grey);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-grey);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--light-grey);
}

.bg-dark {
  background-color: var(--dark-grey);
  color: var(--white);
}

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

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

.text-gold {
  color: var(--accent-gold);
}

/* ========================================
   HEADER STYLES
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--white);
  z-index: 1000;
  transition: all var(--transition-normal);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
  height: var(--header-height-scrolled);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo img {
  max-height: 60px;
  width: auto;
  transition: transform var(--transition-fast);
}

.header.scrolled .logo img {
  max-height: 50px;
}

.logo:hover img {
  transform: scale(1.02);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-desktop a {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-grey);
  padding: 8px 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width var(--transition-normal);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--primary-red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.phone-link svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
}

.phone-link:hover svg {
  transform: rotate(5deg) scale(1.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  transform: scale(1.03);
}

.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--dark-grey);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B8962E 100%);
  transform: scale(1.03);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-grey);
  transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-grey);
}

.mobile-menu a:hover {
  color: var(--primary-red);
}

.mobile-menu .btn-primary {
  margin-top: 20px;
  padding: 16px 32px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  color: var(--dark-grey);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, rgba(42, 77, 120, 0.95) 0%, rgba(42, 77, 120, 0.85) 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-red);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.hero .phone-link {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 55%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

/* ========================================
   ABOUT / TRUST PILLARS SECTION
   ======================================== */
.trust-pillars {
  background-color: var(--white);
}

.trust-pillars h2 {
  margin-bottom: 50px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pillar-item {
  text-align: center;
  padding: 30px 20px;
}

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

.pillar-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-red);
}

.pillar-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.pillar-item p {
  color: var(--medium-grey);
  font-size: 0.95rem;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-red);
  display: block;
  margin-bottom: 5px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  background-color: var(--light-grey);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  color: var(--medium-grey);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-grey);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-grey);
  border-radius: 50%;
  overflow: hidden;
}

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

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--medium-grey);
  margin-bottom: 20px;
  line-height: 1.6;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.learn-more svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-normal);
}

.service-card:hover .learn-more svg {
  transform: rotate(45deg);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us {
  background-color: var(--white);
}

.why-choose-us .section-header {
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-red);
  border-radius: 10px;
}

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

.benefit-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-content p {
  color: var(--medium-grey);
  font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  background: linear-gradient(135deg, var(--accent-dark-blue) 0%, #1E3D5C 100%);
  color: var(--white);
  padding: 100px 0;
}

.testimonials h2 {
  color: var(--white);
  margin-bottom: 50px;
}

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

.testimonial-card {
  padding: 0 40px;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 6rem;
  font-family: Georgia, serif;
  position: absolute;
  top: -30px;
  left: -20px;
  opacity: 0.2;
  color: var(--accent-gold);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.author-name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background-color: var(--primary-red);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-section .btn-secondary {
  color: var(--dark-grey);
}

.cta-section .phone-link {
  color: var(--white);
  font-size: 1.2rem;
}

.cta-section .phone-link:hover {
  color: var(--accent-gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--dark-grey);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  max-height: 40px;
}

.footer-brand p {
  color: #AAAAAA;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-contact-info {
  color: #AAAAAA;
  font-size: 0.9rem;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-info svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #AAAAAA;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #888888;
  font-size: 0.9rem;
}

.footer-legal {
  color: #888888;
  font-size: 0.8rem;
  max-width: 600px;
  line-height: 1.5;
}

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

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

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

.social-links svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   PAGE HERO (Services, About, etc.)
   ======================================== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--accent-dark-blue) 0%, rgba(42, 77, 120, 0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* ========================================
   SERVICE DETAIL SECTIONS
   ======================================== */
.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) {
  background-color: var(--light-grey);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail.reverse .service-detail-inner {
  direction: rtl;
}

.service-detail.reverse .service-detail-inner > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-content h2 {
  margin-bottom: 20px;
}

.service-detail-content > p {
  color: var(--medium-grey);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-detail-content ul {
  margin-bottom: 30px;
}

.service-detail-content li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--dark-grey);
}

.service-detail-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  border-radius: 50%;
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process-section {
  background-color: var(--light-grey);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -20px;
  width: calc(100% - 20px);
  height: 2px;
  background-color: var(--border-grey);
}

.step-number {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-red);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--medium-grey);
  font-size: 0.9rem;
}

/* ========================================
   ABOUT PAGE SECTIONS
   ======================================== */
.story-section {
  padding: 80px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  margin-bottom: 25px;
}

.story-text p {
  color: var(--medium-grey);
  margin-bottom: 20px;
  line-height: 1.7;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: auto;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

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

.team-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.team-card-info {
  padding: 25px;
}

.team-card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-card-info p {
  color: var(--primary-red);
  font-weight: 500;
}

.advantages-section {
  padding: 80px 0;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 50px auto 0;
}

.advantage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background-color: var(--light-grey);
  border-radius: 10px;
  transition: all var(--transition-normal);
}

.advantage-item:hover {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.advantage-item .benefit-icon {
  flex-shrink: 0;
}

/* ========================================
   FINANCING PAGE
   ======================================== */
.financing-options {
  padding: 80px 0;
}

.financing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.financing-text h2 {
  margin-bottom: 20px;
}

.financing-text > p {
  color: var(--medium-grey);
  margin-bottom: 30px;
  line-height: 1.7;
}

.financing-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--light-grey);
  border-radius: 10px;
}

.financing-benefits svg {
  width: 24px;
  height: 24px;
  color: var(--primary-red);
  flex-shrink: 0;
}

.financing-form-section {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-grey);
}

.financing-form-section h3 {
  margin-bottom: 10px;
}

.financing-form-section > p {
  color: var(--medium-grey);
  margin-bottom: 30px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-info-section {
  padding: 80px 0;
  background-color: var(--light-grey);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

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

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

.contact-card h4 {
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--medium-grey);
}

.contact-card a {
  color: var(--primary-red);
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form > p {
  color: var(--medium-grey);
  margin-bottom: 30px;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
  background-color: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-fallback);
  font-size: 1rem;
  border: 2px solid var(--border-grey);
  border-radius: 6px;
  background-color: var(--white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 2px 0 0 var(--accent-gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  text-align: left;
  margin-top: 10px;
}

.form-submit .btn {
  min-width: 200px;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1023px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .nav-desktop {
    display: none;
  }
  
  .header-actions .btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    right: -15%;
    max-width: 60%;
    opacity: 0.7;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-step:nth-child(3)::after {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-image {
    position: relative;
    right: 0;
    max-width: 100%;
    margin-top: 30px;
    opacity: 1;
  }
  
  .hero-image img {
    border-radius: 12px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-step::after {
    display: none !important;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-detail.reverse .service-detail-inner {
    direction: ltr;
  }
  
  .service-detail-image img {
    height: 250px;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
  }
  
  .financing-content {
    grid-template-columns: 1fr;
  }
  
  .financing-form-section {
    padding: 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-map {
    min-height: 300px;
  }
  
  .page-hero {
    min-height: 300px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .container {
    padding: 0 15px;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}
