html{
    background-color: #144835;
    height: 100%;
    width: auto;
    overflow-x: hidden;
    padding: 0;
    font-family: serif;
  }
  h1,h2,h3,h4,h5,p,a{
    font-family: serif;
  }
body{
    padding: 0;
    margin: 0;
}

    #form-success {
    transition: opacity 0.4s ease-in-out;
    text-align: center;
    background-color: white;
    padding: 5px;
    margin: 0 10vw;
    border-radius: 5px;
    font-weight: 600;
    }
/* Contact Form Section - Enhanced Style from Franchise Page */
.bg-f-5 {
  background-color: #f5f5dc;
  padding: 80px 0;
    position: relative;
}


/* Contact Form Section - Enhanced Style from Franchise Page */
.container-f-5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* Contact Form Section - Enhanced Style from Franchise Page */
/* Contact Hero Section */
.contact-hero-section {
    position: relative;
  height: 70vh;
  background: linear-gradient(135deg, #144835 0%, #a2c144 100%);
    display: flex;
    align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
    top: 0;
    left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 72, 53, 0.7);
  z-index: 1;
}

.contact-hero-content {
    position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: 'Jost', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-family: 'Jost', sans-serif;
  opacity: 0.95;
}

.contact-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-hero-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
    text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-btn.primary {
  background-color: #a2c144;
  color: white;
  border: 2px solid #a2c144;
}

.contact-hero-btn.primary:hover {
  background-color: transparent;
  color: #a2c144;
  border-color: #a2c144;
}

.contact-hero-btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.contact-hero-btn.secondary:hover {
  background-color: white;
    color: #143e00;
}

/* Contact Form Section - Enhanced Style from Franchise Page */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #144835;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a2c144, #144835);
    border-radius: 2px;
}

.contact-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #64748b;
    font-family: 'Jost', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    border: 1px solid rgba(162, 193, 68, 0.15);
    overflow: hidden;
    left: 0;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #a2c144, #144835, #a2c144);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a2c144, #144835);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 
        0 15px 35px rgba(162, 193, 68, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  } 

.form-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.form-icon i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-size: 2.2rem;
    color: #144835;
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.form-header p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    left: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.form-group label {
    font-size: 1rem;
    color: #374151;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #a2c144;
    border-radius: 50%;
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a2c144;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(162, 193, 68, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

.char-count {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: right;
    margin-top: 5px;
    font-weight: 500;
}

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

.submit-btn {
    background: linear-gradient(135deg, #a2c144, #144835);
    color: white;
    border: none;
    padding: 22px 50px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Jost', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 30px rgba(162, 193, 68, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    align-self: center;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(162, 193, 68, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 20px 0 0 0;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    line-height: 1.5;
}

.form-note i {
    color: #a2c144;
    font-size: 16px;
}

.success-message {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #86efac;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: tickAnimation 0.6s ease-in-out, pulse 2s ease-in-out 0.6s infinite;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.success-icon i {
    font-size: 32px;
    color: white;
}

@keyframes tickAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

.success-message h3 {
    font-size: 1.8rem;
    color: #065f46;
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.success-message p {
    font-size: 1.1rem;
    color: #047857;
    margin: 0 0 25px 0;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

.success-details {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.success-details p {
    font-weight: 700;
    margin-bottom: 15px;
    color: #065f46;
    font-size: 1rem;
}

.success-details ul {
    margin: 0;
    padding-left: 25px;
}

.success-details li {
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    color: #047857;
    line-height: 1.5;
}

/* Map Section */
.map-section {
  padding: 5rem 0;
    background-color: white;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;  
  padding: 0 2rem;
}

.map-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #143e00;
  margin-bottom: 3rem;
  font-family: 'Jost', sans-serif;
}

.map-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-wrapper {
  border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-display {
  height: 400px;
    width: 100%;
  }

.map-info {
  padding: 2rem;
  background-color: #faf1e2;
  border-radius: 15px;
}

.map-info h3 {
  font-size: 1.8rem;
    font-weight: 600;
  color: #143e00;    
  margin-bottom: 1rem;
  font-family: 'Jost', sans-serif;
}

.map-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'Jost', sans-serif;
}

.map-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-btn {
  padding: 1rem 1.5rem;
  border-radius: 8px;
    text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-family: 'Jost', sans-serif;
}

.map-btn:not(.secondary) {
  background-color: #a2c144;
  color: white;
}

.map-btn.secondary {
    background-color: transparent;
  color: #144835;
  border: 2px solid #144835;
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Social Media Section */

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-hero-section {
    height: 60vh;
    padding: 2rem 0;
  }
  
  .contact-hero-content {
    padding: 0 1.5rem;
    max-width: 100%;
  }

  .contact-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .contact-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }
  
  .contact-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .contact-hero-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  width: 100%;
    max-width: 280px;
  text-align: center;
  }
  
  .map-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-display {
    height: 300px;
  }
  
  .map-title {
    font-size: 2rem;
  }
  
  /* Contact Form Responsive */
  .bg-f-5 {
    padding: 3rem 0;
  }
  
  .container-f-5 {
    padding: 0 1rem;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .form-header {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .form-header p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .form-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .form-icon i {
    font-size: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  
  .char-count {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }
  
  .form-actions {
    margin-top: 1.5rem;
  }
  
  .submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
        width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
  
  .form-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
  }
  
  .success-message {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .success-message p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .success-details {
    margin-top: 1.5rem;
  }
  
  .success-details ul {
    text-align: left;
    margin-top: 1rem;
  }
  
  .success-details li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-section {
    height: 70vh;
    padding: 1.5rem 0;
  }
  
  .contact-hero-content {
    padding: 0 1rem;
  }
  
  .contact-hero-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.1;
  }
  
  .contact-hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding: 0 0.3rem;
  }
  
  .contact-hero-buttons {
    gap: 0.8rem;
  }
  
  .contact-hero-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    max-width: 260px;
  }
  
  .map-info {
    padding: 1.5rem;
  }
  
  /* Contact Form Mobile */
  .bg-f-5 {
    padding: 2rem 0;
  }
  
  .container-f-5 {
    padding: 0 0.8rem;
  }
  
  .contact-form-container {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  
  .form-header {
    margin-bottom: 1.5rem;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  
  .form-header p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  .form-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }
  
  .form-icon i {
    font-size: 20px;
  }
  
  .form-row {
    gap: 0.8rem;
  }
  
  .form-group {
    margin-bottom: 0.8rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem;
    font-size: 0.9rem;
    border-radius: 6px;
  }
  
  .char-count {
    font-size: 0.75rem;
    margin-top: 0.2rem;
  }
  
  .form-actions {
    margin-top: 1.2rem;
  }
  
  .submit-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    max-width: 280px;
  }
  
  .form-note {
    font-size: 0.8rem;
    margin-top: 0.8rem;
  }
  
  .success-message {
    padding: 1.5rem 1rem;
  }
  
  .success-message h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .success-message p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .success-details {
    margin-top: 1.2rem;
  }
  
  .success-details li {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 360px) {
  .contact-hero-section {
    height: 65vh;
    padding: 1rem 0;
  }
  
  .contact-hero-content {
    padding: 0 0.8rem;
  }
  
  .contact-hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    line-height: 1.1;
  }
  
  .contact-hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    padding: 0 0.2rem;
  }
  
  .contact-hero-buttons {
    gap: 0.6rem;
  }
  
  .contact-hero-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    max-width: 240px;
  }
  
  /* Contact Form Small Mobile */
  .bg-f-5 {
    padding: 1.5rem 0;
  }
  
  .container-f-5 {
    padding: 0 0.6rem;
  }
  
  .contact-form-container {
    padding: 1.2rem 0.8rem;
    border-radius: 14px;
  }
  
  .form-header {
    margin-bottom: 1.2rem;
  }
  
  .form-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  
  .form-header p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .form-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.6rem;
  }
  
  .form-icon i {
    font-size: 18px;
  }
  
  .form-row {
    gap: 0.6rem;
  }
  
  .form-group {
    margin-bottom: 0.6rem;
  }
  
  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.85rem;
    border-radius: 5px;
  }
  
  .char-count {
    font-size: 0.7rem;
    margin-top: 0.2rem;
  }
  
  .form-actions {
    margin-top: 1rem;
  }
  
  .submit-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    max-width: 260px;
  }
  
  .form-note {
    font-size: 0.75rem;
    margin-top: 0.6rem;
  }
  
  .success-message {
    padding: 1.2rem 0.8rem;
  }
  
  .success-message h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .success-message p {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .success-details {
    margin-top: 1rem;
  }
  
  .success-details li {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }
}

/* Social Media Section */
.social-media-section {
  padding: 5rem 0;
  background-color: #144835;
}

.social-media-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.social-media-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: 'Jost', sans-serif;
}

.social-media-description {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  font-family: 'Jost', sans-serif;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.social-media-card {
  background: white;
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 1;
  display: flex;
    flex-direction: column;
  justify-content: space-between;
    align-items: center;
  min-height: 250px;
}

.social-media-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(162, 193, 68, 0.3), transparent);
}

.social-media-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(162, 193, 68, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: white;
}

.social-media-card::after {
  content: 'Click to visit';
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #a2c144;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: 'Jost', sans-serif;
}

.social-media-card:hover::after {
  opacity: 1;
}

.social-media-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.social-media-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.4), transparent);
  z-index: -1;
}

.social-media-card:hover .social-media-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.social-media-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #42a5f5, #64b5f6);
}

.social-media-icon.instagram {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045, #f77737);
}

.social-media-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #ff4444, #ff6b6b);
}

.social-media-icon.linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc, #40c4ff);
}

.social-media-icon i {
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.social-media-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #144835;
  margin-bottom: 0.5rem;
  font-family: 'Jost', sans-serif;
  text-shadow: none;
}

.social-media-card p {
  color: #666;
  line-height: 1.4;
  margin-bottom: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
}


@media (max-width: 768px) {
  .social-media-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .social-media-title {
    font-size: 2rem;
  }
  
  .social-media-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .social-media-grid {
    grid-template-columns: 1fr;
  }
  
  .social-media-card {
    padding: 1.5rem;
  }
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

.scroll-animate-fade {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.scroll-animate-fade.animate-in {
  opacity: 1;
}

/* Staggered animations for multiple elements */
.scroll-animate-delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
  transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
  transition-delay: 0.5s;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Animation for form elements */
.form-group {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for social media cards */
.social-media-card {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-media-card.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Animation for map section */
.map-container {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for hero section elements */
.contact-hero-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-hero-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero-description {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s;
}

.contact-hero-description.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.4s;
}

.contact-hero-buttons.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for form header */
.form-header {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for success message */
.success-message {
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-message.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .scroll-animate-left,
  .scroll-animate-right,
  .scroll-animate-scale,
  .scroll-animate-fade,
  .form-group,
  .social-media-card,
  .map-container,
  .contact-hero-title,
  .contact-hero-description,
  .contact-hero-buttons,
  .form-header,
  .success-message {
    opacity: 1;
    transform: none;
    transition: none;
  }
}