/* ==========================================================================
   フジワラルーツファーム - 完全修正CSS
   ========================================================================== */

/* CSS Variables */
:root {
  --primary-color: #90353C;
  --secondary-color: #90353C;
  --accent-color: #6CC;
  --text-color: #333;
  --text-light: #666;
  --white: #fff;
  --gray-light: #f5f5f5;
  --gray-medium: #ddd;
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --font-family: 'Noto Serif JP', 'Times New Roman', 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  color: var(--text-color);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  padding-bottom: 120px; /* フローティングボタン用の余白 */
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Remove all list styling */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--primary-color);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}
/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

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

/* ==========================================
   HEADER AND NAVIGATION
   ========================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Logo */
.logo a {
  display: block;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Main Navigation */
.main-nav {
  position: relative;
}

/* Desktop Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger .line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .logo img {
    height: 35px;
  }
  
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
  }
  
  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
  }
  
  .nav-link:hover {
    background: var(--primary-color);
    color: white;
  }
  
  .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
  }
  
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
  }
  
  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(144, 53, 60, 0.7) 0%,
    rgba(144, 53, 60, 0.4) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  color: var(--white);
}

.hero-text-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-logo {
  margin-bottom: 30px;
  animation: fadeInDown 1s ease-out;
}

.hero-logo img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-main-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4),
    2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease-out 0.3s both;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(144, 53, 60, 0.3);
}

.btn-primary:hover {
  background: #7a2d34;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(144, 53, 60, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--white);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  animation: fadeIn 2s ease-out 2s both;
}

.scroll-arrow {
  width: 2px;
  height: 40px;
  background: var(--white);
  margin: 10px auto 0;
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--white);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive adjustments for Hero */
@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }
  
  .hero-logo img {
    max-width: 220px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-text-wrapper {
    padding: 0 15px;
  }
  
  .hero-logo {
    margin-bottom: 20px;
  }
  
  .hero-logo img {
    max-width: 180px;
  }
  
  .hero-description br {
    display: none;
  }
}

/* ==========================================
   SECTIONS
   ========================================== */

/* Yukimachi Section */
.yukimachi-section {
  background: var(--primary-color);
  color: var(--white);
}

.content-column h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 30px;
}

.content-column p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

/* Certification Section */
.certification-section {
  background: var(--gray-light);
}

.certification-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.certification-image {
  max-width: 300px;
}

.certification-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.certification-number {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .certification-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Story Section */
.story-section {
  background: var(--white);
}

.story-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.story-images img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.story-images img:hover {
  transform: scale(1.02);
}

/* Product Lineup Section */
.lineup-section {
  background: var(--primary-color);
  color: var(--white);
}

.lineup-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

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

.product-item {
  background: var(--white);
  color: var(--text-color);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
}

.product-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.season {
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.season-juice {
  background: #F36;
  color: var(--white);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* ==========================================
   UPDATED FOOTER SECTION
   ========================================== */

.footer {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2322467a;stop-opacity:1" /><stop offset="100%" style="stop-color:%2315385c;stop-opacity:1" /></linearGradient></defs><rect width="100%" height="100%" fill="url(%23bg)"/></svg>'), linear-gradient(135deg, #22467a 0%, #15385c 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  margin-top: 0;
}

.contact-section {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><rect width="100%" height="100%" fill="url(%23grad)"/></svg>');
  padding: 60px 0;
  background-size: cover;
  background-position: center;
}

.contact-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #48bb78, #4299e1);
}

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

.contact-card h3 {
  color: #2d3748;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #48bb78;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.contact-email {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #4299e1;
  margin-bottom: 8px;
  word-break: break-all;
}

.contact-hours {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.phone-button {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
}

.phone-button:hover {
  background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.email-button {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
}

.email-button:hover {
  background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.contact-icon {
  font-size: 1.2rem;
}

.footer-info {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 0 100px 0; /* 下部パディングを100pxに増加 */
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo img {
  max-width: 200px;
  /* filter: brightness(0) invert(1); */ /* 削除：白くする効果を無効化 */
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--box-shadow);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  transform: translateY(0);
  opacity: 1;
}

.back-to-top:hover {
  background: #7a2d34;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(144, 53, 60, 0.4);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-address {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.copyright {
  margin: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ==========================================
   FLOATING CONTACT BUTTONS
   ========================================== */

.floating-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid #e0e0e0;
  padding: 15px 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.floating-contact.show {
  transform: translateY(0);
}

.floating-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-align: center;
}

.floating-phone {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.floating-phone:hover {
  background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.floating-email {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
}

.floating-email:hover {
  background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.floating-btn i {
  font-size: 1.1rem;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: var(--box-shadow);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  transform: translateY(0);
  opacity: 1;
}

.back-to-top:hover {
  background: #7a2d34;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(144, 53, 60, 0.4);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-number {
    font-size: 1.5rem;
  }

  .contact-email {
    font-size: 1.1rem;
  }

  .contact-button {
    min-width: auto;
    width: 100%;
    padding: 12px 25px;
    font-size: 1rem;
  }

  .floating-contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .floating-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .footer-description br {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  /* バックトップボタンのモバイル調整 */
  .back-to-top {
    bottom: 100px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 25px 15px;
  }

  .contact-number {
    font-size: 1.3rem;
  }

  .contact-email {
    font-size: 1rem;
  }
}

/* Animation for scroll reveal */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}