/*
Theme Name: Amorim e Castro Advogados
Theme URI: https://amorimecastro.com
Description: Template profissional para escritórios de advocacia. Design elegante e responsivo com cores vermelha, dourada e preta.
Version: 1.0.0
Author: Amorim e Castro
Author URI: https://amorimecastro.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amorim-castro
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* 
 * Amorim e Castro WordPress Theme
 * Tema profissional para escritórios de advocacia
 * 
 * Cores principais:
 * - Vermelho: #ED1C24 (botões, CTAs, destaque)
 * - Dourado: #CF9455 (títulos, elementos decorativos)
 * - Preto: #000000 (rodapé, textos principais)
 * - Branco: #FFFFFF (fundos)
 * - Cinza: #666666 (textos secundários)
 */

:root {
  --primary-red: #ED1C24;
  --primary-gold: #CF9455;
  --primary-black: #000000;
  --primary-white: #FFFFFF;
  --secondary-gray: #666666;
  --light-gray: #F5F5F5;
  --border-gray: #DDDDDD;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--secondary-gray);
  background-color: var(--primary-white);
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 48px;
  color: var(--primary-gold);
}

h2 {
  font-size: 36px;
  color: var(--primary-black);
}

h3 {
  font-size: 24px;
  color: var(--primary-black);
}

h4 {
  font-size: 20px;
  color: var(--primary-black);
}

p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-gold);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.site-header {
  background-color: var(--primary-white);
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: #6D6E71;
  color: var(--primary-white);
  padding: 0.75rem 0;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.header-top-left {
  flex: 1;
}

.header-top-right {
  display: flex;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-phone:hover {
  color: var(--primary-gold);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-logo img {
  width: 350px;
  height: auto;
  margin: 7px 0 -10px 0;
}

.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-black);
  letter-spacing: -0.5px;
}

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

.logo-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Main Navigation */
.site-navigation {
  display: flex;
  align-items: center;
}

.main-navigation {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation>li {
  position: relative;
}

.current-menu-item {
  color: #c41820;
}

.main-navigation>li>a {
  display: block;
  padding: 0.75rem 0.8rem;
  color: var(--secondary-gray);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-navigation>li>a:hover {
  color: var(--primary-red);
}

/* Dropdown Menu */
.main-navigation ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-red);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.main-navigation li:hover>ul {
  display: block;
}

.main-navigation ul li {
  margin: 0;
}

.main-navigation ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--primary-white);
  font-weight: 500;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
}

.main-navigation ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    height: 600px;
  }
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary-white);
}

.hero-content h2 {
  color: var(--primary-white);
  font-size: 36px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-content h2 {
    font-size: 48px;
  }
}

.hero-content p {
  color: var(--primary-white);
  font-size: 18px;
  max-width: 600px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.hero-nav:hover {
  background-color: var(--primary-white);
}

.hero-nav.prev {
  left: 20px;
}

.hero-nav.next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot.active {
  background-color: var(--primary-white);
}

/* Welcome Section */
.welcome-section {
  padding: 4rem 0;
  background-color: var(--primary-white);
}

.welcome-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.welcome-title {
  font-size: 48px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.welcome-title .gold {
  color: var(--primary-gold);
}

.welcome-divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary-gold);
  margin: 0 auto 2rem;
}

.welcome-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--secondary-gray);
}

.mvv-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gray);
}

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

.mvv-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-white);
}

.mvv-icon svg {
  width: 40px;
  height: 40px;
}

.mvv-item h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 20px;
}

.mvv-item p {
  color: var(--secondary-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Highlights Section */
.highlights-section {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

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

.highlights-header h2 {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlights-header p {
  color: var(--secondary-gray);
  margin-bottom: 0;
  font-size: 14px;
}

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

.highlight-card {
  background-color: var(--primary-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.highlight-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.highlight-card-content {
  padding: 1.5rem;
}

.highlight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 12px;
}

.highlight-category {
  background-color: var(--primary-red);
  color: var(--primary-white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.highlight-date {
  color: var(--secondary-gray);
}

.highlight-card h3 {
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  font-size: 18px;
}

.highlight-card h3 a {
  color: var(--primary-black);
  text-decoration: none;
}

.highlight-card h3 a:hover {
  color: var(--primary-gold);
}

.highlight-excerpt {
  color: var(--secondary-gray);
  font-size: 14px;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.highlight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gray);
  font-size: 12px;
}

.highlight-author {
  color: var(--secondary-gray);
}

.highlight-link {
  color: var(--primary-red);
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.highlights-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-red);
  color: var(--primary-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #c41820;
}

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

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

/* Team CTA Section */
.team-cta-section {
  padding: 6rem 0;
  background-image: url(images/imoHome.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--primary-white);
}

.team-cta-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.team-cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.team-cta-content h2 {
  color: var(--primary-white);
  font-size: 32px;
  margin: 0;
}

@media (min-width: 768px) {
  .team-cta-content h2 {
    font-size: 40px;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 4rem 0;
  background-color: var(--primary-red);
  color: var(--primary-white);
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.final-cta-content h2 {
  color: var(--primary-white);
  margin-bottom: 1rem;
  font-size: 28px;
}

@media (min-width: 768px) {
  .final-cta-content h2 {
    font-size: 32px;
  }

}

/* Page Header */
.page-header {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-content {
  text-align: center;
  color: var(--primary-white);
  z-index: 2;
}

.page-header-content h1 {
  color: var(--primary-white);
  font-size: 42px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .page-header {
    height: 180px;
  }

  .site-logo img {
    width: 85%;
    height: auto;
    margin: 7px 0 -10px 0;
  }

  .header-top{
    display: none;
  }

  .page-header-content h1 {
    font-size: 28px;
  }

  
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
  padding: 1.5rem 0;
  background-color: var(--light-gray);
  margin-bottom: 2rem;
}

.breadcrumbs {
  font-size: 13px;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--secondary-gray);
}

.breadcrumb-link {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
  color: var(--secondary-gray);
  font-weight: 600;
}

/*content*/
.entry-content {
  padding-bottom: 45px;
}

/* Footer */
.site-footer {
  background-color: var(--primary-black);
  color: var(--primary-white);
  padding: 3rem 0 1rem;
}

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

.footer-column h3 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 0;
  height: auto;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-red);
  color: var(--primary-white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #c41820;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header {
    height: 180px;
  }

  .page-header-content h1 {
    font-size: 28px;
  }

  .header-top-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .header-top-right {
    justify-content: center;
  }

  .menu-toggle {
    display: none;
  }

  .site-navigation {
    display: none;
  }

  .main-navigation {
    display: none;
  }

  .main-navigation>li>a {
    display: none;
  }

  .main-navigation ul {
    display: none;
  }

  .main-navigation li:hover>ul {
    display: none;
  }

  .main-navigation ul li a {
    display: none;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }
}

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

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

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

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

.section-padding {
  padding: 3rem 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

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

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

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.pt-1 {
  padding-top: 0.5rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}


/* Contact Section */
.contact-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Info Column */
.contact-info-column {
  padding-right: 2rem;
}

.contact-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ED1C24;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.contact-item {
  display: grid;
  gap: 0;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ED1C24;
  font-size: 24px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ED1C24;
  margin-bottom: 0.5rem;
}

.contact-content p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.email-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.email-list li {
  margin-bottom: 0.5rem;
}

.email-list li:before {
  content: '▸ ';
  color: #ED1C24;
  margin-right: 0.5rem;
  font-weight: bold;
}

.email-list a {
  color: #666666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.email-list a:hover {
  color: #ED1C24;
}

/* Contact Form Column */
.contact-form-column {
  background-color: #f0f0f0;
  padding: 2rem;
  border-radius: 8px;
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ED1C24;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-form-header h2 svg {
  width: 24px;
  height: 24px;
  stroke: #ED1C24;
}

.contact-form-header p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  margin-top: 1.5rem;
}

/* Contact Form 7 Styles */
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-form-wrapper .form-row.full-width,
.contact-form-wrapper .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form-wrapper .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #000000;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #ED1C24;
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.1);
}

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

.contact-form-wrapper select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23666%22 stroke-width=%222%22%3e%3cpolyline points=%226 9 12 15 18 9%22%3e%3c/polyline%3e%3c/svg%3e');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 35px;
}

.contact-form-wrapper .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  color: #666666;
}

.contact-form-wrapper .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-form-wrapper .wpcf7-recaptcha {
  margin: 1rem 0;
}

.contact-form-wrapper .wpcf7-submit,
.contact-form-wrapper .btn-submit {
  background-color: #ED1C24;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.contact-form-wrapper .wpcf7-submit:hover,
.contact-form-wrapper .btn-submit:hover {
  background-color: #c41a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 28, 36, 0.3);
}

.contact-form-wrapper .wpcf7-submit::after {
  content: '▶';
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-column {
    padding-right: 0;
  }

  .contact-intro h2 {
    font-size: 22px;
  }

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

  .contact-form-wrapper .form-row.full-width,
  .contact-form-wrapper .form-group.full-width {
    grid-column: 1;
  }
}

/* ============================================================================
   MOBILE MENU - FULLSCREEN WITH ANIMATION
   ============================================================================ */

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 998;
  position: relative;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active .line-1 {
  transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-toggle.active .line-2 {
  opacity: 0;
}

.mobile-menu-toggle.active .line-3 {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}

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

/* Close Button */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ED1C24;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 32px;
  height: 32px;
  stroke: #ED1C24;
}

/* Mobile Menu Content */
.mobile-menu-content {
  padding: 140px 20px 80px;
  max-width: 100%;
  animation: slideInFromRight 0.4s ease;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Menu Header */
.mobile-menu-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInDown 0.5s ease 0.1s both;
}

.mobile-menu-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ED1C24;
  margin: 0;
  margin-bottom: 5px;
}

.mobile-menu-header p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu List */
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.mobile-menu-item {
  margin: 0;
  animation: fadeInUp 0.5s ease both;
}

.mobile-menu-item:nth-child(1) {
  animation-delay: 0.15s;
}

.mobile-menu-item:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-menu-item:nth-child(3) {
  animation-delay: 0.25s;
}

.mobile-menu-item:nth-child(4) {
  animation-delay: 0.3s;
}

.mobile-menu-item:nth-child(5) {
  animation-delay: 0.35s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Menu Link */
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-link:hover {
  color: #ED1C24;
  padding-left: 10px;
}

.mobile-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #ED1C24;
  transition: width 0.3s ease;
}

.mobile-menu-link:hover::after {
  width: 30px;
}

/* Mobile Submenu Toggle */
.mobile-submenu-toggle {
  width: 100%;
}

.mobile-submenu-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.mobile-submenu-toggle.active svg {
  transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f5f5f5;
}

.mobile-submenu.active {
  max-height: 500px;
}

.mobile-submenu li {
  margin: 0;
}

.mobile-submenu a {
  display: block;
  padding: 12px 0 12px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-submenu a:before {
  content: '→';
  position: absolute;
  left: 10px;
  color: #ED1C24;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-submenu a:hover {
  color: #ED1C24;
  padding-left: 40px;
}

.mobile-submenu a:hover:before {
  opacity: 1;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding-top: 2rem;
  border-top: 2px solid #ED1C24;
  animation: fadeInUp 0.5s ease 0.4s both;
}

.mobile-contact-info {
  margin-bottom: 1rem;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-contact-link:hover {
  color: #ED1C24;
  padding-left: 10px;
}

.mobile-contact-link svg {
  width: 20px;
  height: 20px;
  stroke: #ED1C24;
  flex-shrink: 0;
}

/* Show Mobile Menu on Small Screens */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide desktop menu on mobile */
  .site-navigation {
    display: none;
  }
}

/* Tablet and Up */
@media (min-width: 769px) {

  .mobile-menu-overlay,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Smooth scrolling in mobile menu */
.mobile-menu-overlay {
  -webkit-overflow-scrolling: touch;
}