/* ===== ELITE FARMERS AGENCY — STYLESHEET ===== */

:root {
  --red: #CC2027;
  --red-dark: #A51B21;
  --navy: #002F6C;
  --navy-dark: #001F4A;
  --white: #FFFFFF;
  --off-white: #F4F6F9;
  --light-gray: #E8ECF0;
  --text-dark: #1A1A2E;
  --text-gray: #6B7280;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  cursor: pointer; transition: all 0.3s ease; border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,32,39,0.4); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 18px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.top-bar { background: var(--red); padding: 8px 0; text-align: center; font-size: 14px; font-weight: 600; color: var(--white); font-family: 'Montserrat', sans-serif; }
.top-bar a { color: var(--white); margin: 0 12px; }
.top-bar a:hover { text-decoration: underline; }

.nav { padding: 16px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-main { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; color: var(--white); letter-spacing: -0.5px; line-height: 1; }
.nav-logo-main span { color: var(--red); }
.nav-logo-sub { font-size: 11px; color: rgba(255,255,255,0.7); font-family: 'Open Sans', sans-serif; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 8px; }
.nav-phone i { color: var(--red); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #004080 100%);
  display: flex; align-items: center; padding-top: 110px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--white); clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero-bg-shape {
  position: absolute; top: 0; right: -100px; width: 700px; height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 700'%3E%3Cpolygon fill='rgba(255,255,255,0.03)' points='350,0 700,350 350,700 0,350'/%3E%3Cpolygon fill='rgba(204,32,39,0.07)' points='350,100 600,350 350,600 100,350'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(204,32,39,0.15); border: 1px solid rgba(204,32,39,0.35);
  color: #FF8A8A; padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: #FF8A8A; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 { font-size: clamp(36px, 5vw, 64px); color: var(--white); line-height: 1.1; margin-bottom: 20px; font-weight: 900; }
.hero h1 span { color: #FF6B6B; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 580px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.72); font-size: 14px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.hero-trust-item i { color: #FF8A8A; font-size: 15px; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--white); box-shadow: var(--shadow); padding: 40px 0; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-item { padding: 24px 20px; border-right: 1px solid var(--light-gray); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: rgba(204,32,39,0.09); color: var(--red);
  padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-family: 'Montserrat', sans-serif;
}
.section-header h2 { font-size: clamp(28px, 4vw, 44px); color: var(--navy); margin-bottom: 16px; font-weight: 800; }
.section-header p { font-size: 18px; color: var(--text-gray); max-width: 620px; margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 18px;
  text-align: center; box-shadow: var(--shadow); transition: all 0.3s ease;
  border-bottom: 3px solid transparent; cursor: pointer; display: block;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-bottom-color: var(--red); }
.service-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--navy), #004080);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px; color: var(--white); transition: background 0.3s;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.service-card h3 { font-size: 14px; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 12px; color: var(--text-gray); line-height: 1.5; }

/* ===== WHY GRID ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform 0.3s;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red), var(--navy)); }
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 38px; color: var(--red); margin-bottom: 20px; }
.why-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 12px; }
.why-card p { color: var(--text-gray); font-size: 15px; line-height: 1.7; }

/* ===== AGENT SECTION ===== */
.agent-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 88px 0; }
.agent-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: center; }
.agent-photo-wrap { position: relative; }
.agent-photo {
  width: 100%; aspect-ratio: 3/4; background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(255,255,255,0.2); flex-direction: column; gap: 16px; max-width: 340px;
}
.agent-photo i { font-size: 90px; color: rgba(255,255,255,0.25); }
.agent-photo p { color: rgba(255,255,255,0.35); font-size: 13px; text-align: center; }
.agent-badge {
  position: absolute; bottom: -16px; right: -16px; background: var(--red);
  color: var(--white); padding: 12px 20px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; box-shadow: var(--shadow);
}
.agent-content .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.agent-content h2 { font-size: clamp(28px, 3vw, 42px); color: var(--white); margin-bottom: 6px; font-weight: 900; }
.agent-title { color: var(--red); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.agent-content p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.agent-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.agent-stat { text-align: center; background: rgba(255,255,255,0.07); border-radius: var(--radius); padding: 20px 12px; }
.agent-stat-num { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.agent-stat-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== GHL SECTION ===== */
.ghl-section { background: var(--off-white); padding: 88px 0; }
.ghl-inner { background: var(--white); border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow-lg); text-align: center; }
.ghl-inner h2 { font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 16px; }
.ghl-inner > p { color: var(--text-gray); font-size: 17px; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.ghl-embed-placeholder {
  background: var(--off-white); border: 2px dashed var(--light-gray); border-radius: var(--radius);
  padding: 64px 32px; margin-bottom: 24px; color: var(--text-gray); font-size: 14px; line-height: 1.8;
}
.ghl-embed-placeholder i { font-size: 48px; margin-bottom: 16px; display: block; color: var(--navy); opacity: 0.25; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 12px; left: 20px; font-size: 88px; color: var(--red); opacity: 0.12; font-family: Georgia, serif; line-height: 1; }
.stars { color: #F59E0B; margin-bottom: 16px; font-size: 17px; }
.testimonial-card p { color: var(--text-gray); font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--red)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.author-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 15px; }
.author-location { font-size: 13px; color: var(--text-gray); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); padding: 72px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 4vw, 40px); color: var(--white); margin-bottom: 16px; font-weight: 900; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; opacity: 0.72; }
.footer-heading { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--white); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: 0.55; flex-wrap: wrap; gap: 12px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); padding: 148px 0 88px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); color: var(--white); margin-bottom: 16px; font-weight: 900; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 14px; color: rgba(255,255,255,0.55); font-family: 'Montserrat', sans-serif; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span:last-child { color: #FF8A8A; }

/* ===== SERVICES DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-detail-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.service-detail-card:hover { transform: translateY(-4px); }
.service-detail-header { background: linear-gradient(135deg, var(--navy), #004080); padding: 32px; display: flex; align-items: center; gap: 20px; }
.service-detail-header i { font-size: 40px; color: var(--white); opacity: 0.9; }
.service-detail-header h3 { color: var(--white); font-size: 22px; }
.service-detail-body { padding: 32px; }
.service-detail-body p { color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 28px; }
.service-features li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--light-gray); font-size: 14px; color: var(--text-dark); }
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.contact-info-card h2 { font-size: 30px; color: var(--navy); margin-bottom: 12px; }
.contact-info-card > p { color: var(--text-gray); margin-bottom: 32px; line-height: 1.7; }
.contact-method { display: flex; align-items: center; gap: 20px; padding: 18px; background: var(--off-white); border-radius: var(--radius); margin-bottom: 12px; transition: background 0.2s; }
.contact-method:hover { background: var(--light-gray); }
.contact-method-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; flex-shrink: 0; }
.contact-method-label { font-size: 11px; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-method-value { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 17px; }
.contact-method-value a { color: var(--navy); }
.contact-method-value a:hover { color: var(--red); }
.hours-grid { margin-top: 32px; }
.hours-title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); margin-bottom: 16px; font-size: 15px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--light-gray); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-dark); font-weight: 600; }
.hours-time { color: var(--text-gray); }
.contact-embed-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.contact-embed-card h2 { font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.contact-embed-card > p { color: var(--text-gray); margin-bottom: 28px; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--light-gray); border-right: 1px solid var(--light-gray); }
  .agent-grid { grid-template-columns: 1fr; gap: 40px; }
  .agent-photo { max-width: 300px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark); justify-content: center; align-items: center;
    gap: 32px; font-size: 20px; z-index: 999;
  }
  .hamburger { display: flex; z-index: 1000; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ghl-inner { padding: 32px 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .agent-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
