@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

:root {
  --light-blue: #2196F3;
  --white: #FFFFFF;
  --dark-blue: #1565C0;
  --gray: #f5f7fa;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

html, body {
  font-family: 'Tajawal', Arial, sans-serif;
  direction: rtl;
  background: var(--gray);
  scroll-behavior: smooth;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box !important;
}

body, .container, .container-fluid, section, header, footer, .faq, .about, .services, .gallery, .contact {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

.row, .gallery-grid, .services-cards, .about-flex, .contact-split {
  margin-right: 0 !important;
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

img, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  color: #222;
  background: var(--gray);
}
.container, .container-fluid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
  box-sizing: border-box;
}
.header {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(33,150,243,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
}
.nav {
  position: relative;
  z-index: 100;
}
.nav ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav a {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all var(--transition);
  padding: 8px 16px;
  border-radius: 20px;
}
.nav a:hover {
  color: var(--light-blue);
  transform: translateY(-2px);
}

.nav a:first-child {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(25, 118, 210, 0.1));
  backdrop-filter: blur(10px);
  color: var(--light-blue);
  box-shadow: 0 2px 10px rgba(33, 150, 243, 0.15);
}

.nav a:first-child:hover {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.25), rgba(25, 118, 210, 0.2));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  z-index: 5100;
  position: relative;
  transition: background 0.2s;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3.5px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.hamburger:focus {
  outline: 2px solid #2196F3;
}

/* Nav Close Button */
.nav-close {
  display: none;
  position: absolute;
  top: 18px;
  left: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #e53935 !important;
  cursor: pointer;
  z-index: 1202;
  transition: color 0.2s;
}
.nav.open .nav-close {
  display: block;
}
.nav-close:hover, .nav-close:focus {
  background: #ffcdd2;
  color: #b71c1c !important;
}

.hero {
  background: var(--gray);
  margin-top: 0.3rem;
  padding-top: 90px;
  border-radius: 0;
  box-shadow: none;
}
.hero::after {
  display: none;
}
.hero-content {
  position: relative;
  width: 100%;
  height: 420px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.hero-text {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: right;
  padding: 2.5rem 2rem 2rem 2rem;
  color: #fff;
  background: linear-gradient(90deg, rgba(21,101,192,0.72) 0%, rgba(33,150,243,0.38) 100%);
  border-radius: 0 0 36px 36px;
  max-width: 700px;
  margin-right: auto;
  margin-left: 0;
  box-shadow: 0 2px 16px rgba(33,150,243,0.10);
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeInDown 1s;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s;
}
.cta-btn {
  background: linear-gradient(to right, #2196F3, #1565C0);
  color: white;
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(33,150,243,0.15);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  animation: pulse 2s infinite;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}
.cta-btn:hover {
  background: var(--light-blue);
  color: var(--white);
  transform: translateY(-3px) scale(1.04);
}
.hero-bg {
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  background: url('assets/hero-bg.png') no-repeat center/cover;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}
section, .about, .services, .gallery, .faq, .contact, .contact-card, .testimonials {
  margin-bottom: 2.5rem;
  width: 100%;
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  overflow: visible;
  border-radius: 18px;
}
.about, .services, .gallery, .faq, .contact, .contact-card, .testimonials {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(33,150,243,0.13), 0 1.5px 8px rgba(33,150,243,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 2.7rem 1.5rem 2.2rem 1.5rem;
  animation: fadeIn 1.2s;
  transition: box-shadow 0.25s, border 0.25s, background 0.25s;
}
.about:hover, .services:hover, .gallery:hover, .faq:hover, .contact:hover, .contact-card:hover, .testimonials:hover {
  box-shadow: 0 8px 48px rgba(33,150,243,0.18), 0 2.5px 12px rgba(33,150,243,0.10);
  border: 1.5px solid rgba(33,150,243,0.18);
  background: rgba(255,255,255,0.55);
}
.about h2, .services h2, .contact h2 {
  color: var(--dark-blue);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.about p, .contact p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.3px;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-card {
  background: var(--gray);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(33,150,243,0.08);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: slideInUp 1.1s;
}
.service-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 6px 24px rgba(33,150,243,0.13);
}
.service-card i {
  display: block;
  margin: 0 auto 1rem auto;
  font-size: 2.5rem;
  color: var(--light-blue);
  transition: color var(--transition), transform var(--transition);
}
.service-card:hover i {
  color: var(--dark-blue);
  transform: scale(1.12);
}
.service-card h3 {
  color: var(--light-blue);
  font-size: 1.1rem;
  font-weight: 700;
}
.promo-messages {
  text-align: center;
  margin-top: 1.2rem;
}
.promo-messages p {
  color: var(--dark-blue);
  font-weight: 700;
  margin: 0.3rem 0;
}
.promo-messages .keywords {
  color: #444;
  font-size: 1.01rem;
  font-weight: 500;
}
.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-phones.bg-primary a {
  background: var(--light-blue);
  color: var(--dark-blue);
  border-radius: 22px;
  padding: 0.7rem 1.5rem;
  margin: 0.2rem 0.5rem;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition);
}
.contact-phones.bg-primary a i {
  color: var(--white);
  transition: color var(--transition);
}
.contact-phones.bg-primary a:hover {
  background: var(--dark-blue);
  color: var(--white);
}
.contact-phones.bg-primary a:hover i {
  color: var(--white);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: #4CAF50;
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.whatsapp-btn i {
  font-size: 1.1em;
  color: var(--white) !important;
  vertical-align: middle;
}
.whatsapp-btn:hover {
  background: #128C7E;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(33,150,243,0.13);
}
.footer {
  background: #0d47a1;
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
  border-radius: 18px 18px 0 0;
  margin-top: 0.3rem;
}
.footer p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.footer-phones {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-phones a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-phones a i {
  font-size: 1.2rem;
  color: var(--light-blue);
  transition: color var(--transition);
}
.footer-phones a:hover i,
.footer-phones a:hover {
  color: var(--white);
}
.footer-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: background 0.3s;
}
.footer-social i {
  font-size: 1.5rem;
  color: var(--white);
}
.footer-social a:hover {
  background: var(--light-blue);
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@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 slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(33,150,243, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(33,150,243, 0); }
}
/* Responsive Design - Comprehensive */
/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.5rem;
  }
  .services-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-content {
    height: 380px;
  }
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait */
@media (max-width: 900px) {
  .header-flex { 
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .nav {
    position: relative;
    z-index: 100;
  }
  .nav ul {
    display: none;
  }
  .nav.open ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(255,255,255,0.97) !important;
    z-index: 5000 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2.5rem !important;
    box-shadow: 0 2px 16px rgba(33,150,243,0.10);
  }
  .hamburger {
    display: flex !important;
  }
  .hero h1 { 
    font-size: 2rem; 
  }
  .hero-content { 
    height: 320px; 
    min-height: 220px; 
  }
  .hero-text { 
    padding: 1.2rem 0.7rem; 
    max-width: 98vw; 
  }
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .about-flex { 
    flex-direction: column; 
    gap: 1.2rem; 
  }
  .about-img img { 
    max-width: 70vw; 
  }
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .container, .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }
  .header-flex { 
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .nav { 
    position: sticky; 
    top: 0; 
    right: -100vw; 
    width: 80vw; 
    height: 100vh; 
    background: var(--white); 
    box-shadow: -2px 0 16px rgba(33,150,243,0.08); 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    padding: 2rem 1.5rem; 
    transition: right var(--transition); 
    z-index: 200; 
  }
  .nav.open {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 5000 !important;
    background: rgba(255,255,255,0.97) !important;
    box-shadow: 0 2px 16px rgba(33,150,243,0.10);
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .nav.open .nav-close {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4100;
    display: block;
  }
  .nav.open ul {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
  }
  .nav a {
    font-size: 1.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
  }
  .hamburger { 
    display: flex; 
    font-size: 2.2rem; 
    width: 40px; 
    height: 40px; 
    gap: 7px; 
  }
  .hero {
    padding-top: 70px;
    border-radius: 0;
  }
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .hero p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .hero-content {
    height: 300px;
    min-height: 250px;
  }
  .hero-text {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }
  .services-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    padding: 1.5rem 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 300px;
  }
  .gallery-img {
    height: 100px;
  }
  .contact-card {
    padding: 1.2rem 0.5rem;
  }
  /* Hide decorative elements on mobile */
  .hero::before {
    display: none;
  }
  .about::before,
  .services::before,
  .gallery::before,
  .contact::before {
    display: none;
  }
  .chatbot-container {
    width: 320px;
    height: 450px;
    right: 10px;
    bottom: 80px;
  }
  
  .chatbot-messages {
    padding: 15px;
  }
  
  .chatbot-input {
    padding: 12px 15px;
  }
  
  .chatbot-quick-actions {
    gap: 6px;
  }
  
  .quick-action-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .chatbot-container {
    width: 300px;
    height: 400px;
    right: 5px;
    bottom: 70px;
  }
  
  .chatbot-header {
    padding: 12px 15px;
  }
  
  .chatbot-title {
    font-size: 14px;
  }
  
  .chatbot-messages {
    padding: 12px;
  }
  
  .chatbot-message {
    font-size: 13px;
    padding: 10px 14px;
  }
  
  .chatbot-input input {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .chatbot-input button {
    width: 36px;
    height: 36px;
  }
}

/* Mobile Medium */
@media (max-width: 600px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  section, .about, .services, .gallery, .faq, .contact, .contact-card {
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 12px;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .hero-text {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-content {
    height: 280px;
  }
  .about h2, 
  .services h2, 
  .contact h2,
  .gallery h2,
  .faq h2 {
    font-size: 1.5rem;
  }
  .cta-btn {
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
  }
  .service-card {
    padding: 1.5rem 1rem;
  }
  .contact-item {
    padding: 12px;
  }
  .contact-item i {
    font-size: 20px;
  }
  .floating-call-btn, .fixed-call {
    bottom: 16px;
    right: 10px;
  }
  .fixed-whatsapp {
    bottom: 74px;
    right: 10px;
  }
  .chatbot-widget {
    bottom: 132px;
    right: 10px;
  }
  .back-to-top {
    bottom: 16px;
    left: 10px;
  }
  .chatbot-container {
    width: 96vw !important;
    min-width: 0 !important;
    left: auto !important;
    right: 2vw !important;
  }
}

/* Mobile Small */
@media (max-width: 500px) {
  .container {
    width: 100%;
    padding: 0 0.5rem;
  }
  .header-flex {
    padding: 0.3rem 0.5rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero h1 { 
    font-size: 1.3rem; 
    line-height: 1.2;
  }
  .about h2, 
  .services h2, 
  .contact h2,
  .gallery h2,
  .faq h2 { 
    font-size: 1.3rem; 
  }
  .footer-social img { 
    width: 22px; 
    height: 22px; 
  }
  .hero-content { 
    height: 220px; 
    min-height: 180px; 
  }
  .hero-text { 
    font-size: 1rem; 
    padding: 1rem 0.5rem; 
    margin: 0 0.3rem;
  }
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .cta-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  .services-cards {
    gap: 0.8rem;
  }
  .service-card {
    padding: 1rem 0.8rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card i {
    font-size: 2rem;
  }
  .contact-card {
    padding: 1rem 0.8rem;
  }
  .chatbot-container {
    width: 280px;
    height: 320px;
  }
  .fixed-call span,
  .fixed-whatsapp span,
  .chatbot-toggle span {
    display: none;
  }
  .fixed-call,
  .fixed-whatsapp,
  .chatbot-toggle {
    padding: 15px;
  }
  .nav {
    width: 85vw;
    padding: 1.5rem 1rem;
  }
  .nav a {
    font-size: 1.1rem;
    padding: 0.6rem 0;
  }
}

/* Mobile Extra Small */
@media (max-width: 400px) {
  .container {
    width: 100%;
    padding: 0 0.3rem;
  }
  .header-flex {
    padding: 0.2rem 0.3rem;
  }
  .logo {
    font-size: 1rem;
  }
  .badge-service {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
  .hero h1 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .hero-content {
    height: 180px;
    min-height: 150px;
  }
  .hero-text {
    padding: 0.8rem 0.4rem;
    margin: 0 0.2rem;
  }
  .about h2, 
  .services h2, 
  .contact h2,
  .gallery h2,
  .faq h2 {
    font-size: 1.1rem;
  }
  .cta-btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
  }
  .service-card {
    padding: 0.8rem 0.6rem;
  }
  .service-card h3 {
    font-size: 0.9rem;
  }
  .service-card i {
    font-size: 1.8rem;
  }
  .contact-item {
    padding: 8px;
  }
  .contact-item i {
    font-size: 18px;
  }
  .nav {
    width: 90vw;
    padding: 1rem 0.8rem;
  }
  .nav a {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  .floating-call-btn, .fixed-call {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .fixed-call,
  .fixed-whatsapp,
  .chatbot-toggle {
    padding: 12px;
  }
  .chatbot-container {
    width: 260px;
    height: 300px;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-content {
    height: 180px;
  }
  .hero h1 {
    font-size: 1.2rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .nav {
    padding: 1rem;
  }
  .nav ul {
    gap: 1rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-img img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .header,
  .floating-call-btn,
  .fixed-call,
  .fixed-whatsapp,
  .chatbot-widget,
  .back-to-top {
    display: none !important;
  }
  
  .hero {
    padding-top: 0;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .service-card,
  .contact-card {
    page-break-inside: avoid;
  }
}

.ltr-contact {
  direction: ltr;
  text-align: left;
  unicode-bidi: embed;
}
.ltr-contact i {
  margin-left: 0.7em;
  margin-right: 0;
}
.contact-card {
  background: var(--gray);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,150,243,0.08);
  padding: 2rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
}
.contact-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-label {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.contact-divider {
  height: 1px;
  background: linear-gradient(to left, #2196F3 0%, #f5f7fa 100%);
  margin: 0.7rem 0;
  border: none;
  opacity: 0.5;
}
.contact-note {
  background: #e3f2fd;
  color: #0d47a1;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.2rem;
}
.contact-extra-info {
  text-align: center;
  color: #333;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.about-text {
  flex: 2 1 320px;
}
.about-img {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img {
  max-width: 180px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(33,150,243,0.10);
  object-fit: cover;
}

.gallery {
  background: #f0f8ff;
  margin: 2rem 0;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,150,243,0.07);
  padding: 2.5rem 0 2rem 0;
  animation: fadeIn 1.2s;
}
.gallery h2 {
  color: var(--dark-blue);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-item {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  transition: all 0.3s ease;
}
.gallery-item:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.45);
  transform: translateY(-2px);
}
.gallery-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.02);
}
.gallery-caption {
  padding: 0.8rem;
  background: rgba(102, 126, 234, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.floating-call-btn, .fixed-call, .fixed-whatsapp, .chatbot-widget, .back-to-top {
  position: fixed;
  z-index: 1205;
  box-shadow: 0 2px 12px rgba(33,150,243,0.13);
  border-radius: 50%;
  transition: box-shadow 0.18s, background 0.18s;
}
.floating-call-btn, .fixed-call {
  bottom: 22px;
  right: 18px;
}
.fixed-whatsapp {
  bottom: 90px;
  right: 18px;
}
.chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 1000;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 280px;
  height: 350px;
  max-width: 90vw;
  max-height: 60vh;
}

.chatbot-widget.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.back-to-top {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.badge-service {
  display: inline-block;
  background: #1565C0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.2em 0.9em;
  margin-right: 0.7em;
  vertical-align: middle;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
}
.faq {
  background: var(--white);
  margin: 2rem 0;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,150,243,0.07);
  padding: 2.5rem 0 2rem 0;
  animation: fadeIn 1.2s;
}
.faq h2 {
  color: var(--dark-blue);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 1px 4px rgba(33,150,243,0.04);
}
.faq-q {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 0.4em;
}
.faq-a {
  color: #333;
  font-size: 1.08rem;
}
.testimonials {
  background: var(--white);
  margin: 2rem 0;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,150,243,0.07);
  padding: 2.5rem 0 2rem 0;
  animation: fadeIn 1.2s;
}
.testimonials h2 {
  color: var(--dark-blue);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
.testimonial-item {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 1px 4px rgba(33,150,243,0.04);
  max-width: 500px;
  width: 100%;
}
.testimonial-text {
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 0.5em;
}
.testimonial-author {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 0.98rem;
  text-align: left;
}
.internal-link {
  color: var(--light-blue);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s;
}
.internal-link:hover {
  color: var(--dark-blue);
}
.header.scrolled {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  padding: 0.5rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.open::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.back-to-top, .chatbot-toggle {
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(33,150,243,0.13) !important;
  border-radius: 50% !important;
  color: #2196F3 !important;
  border: none !important;
  z-index: 1206 !important;
}
.back-to-top:hover, .chatbot-toggle:hover {
  color: #1565C0 !important;
  box-shadow: 0 4px 16px rgba(33,150,243,0.18) !important;
  background: #fff !important;
}
.back-to-top {
  bottom: 40px !important;
}
.chatbot-toggle {
  bottom: 100px !important;
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 80px !important;
  }
  .chatbot-toggle {
    bottom: 140px !important;
  }
}
body, .about p, .contact p, .faq-a, .testimonial-text {
  color: #222;
}
h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  letter-spacing: 0.2px;
}
.cta-btn, .whatsapp-btn, .contact-phones a {
  color: white !important;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-map-container, .contact-map {
  width: 100%;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.contact-map-container iframe, .contact-map iframe {
  width: 100% !important;
  min-width: 0 !important;
  height: 350px;
  border-radius: 14px;
  display: block;
  border: none;
}
@media (max-width: 700px) {
  .contact-map-container iframe, .contact-map iframe {
    height: 220px !important;
  }
}

/* Fixed Top Banner */
.fixed-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  padding: 8px 0;
  z-index: 1000;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.fixed-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.banner-cta {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 12px;
  border: 2px solid white;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.banner-cta:hover {
  background: white;
  color: #2196F3;
}



/* Section CTA Buttons */
.section-cta {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
}

.cta-btn-secondary {
  display: inline-block;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.cta-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  color: white;
}

/* Gallery Lightbox */
.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Lightbox with Glassmorphism */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 80%;
  text-align: center;
}

/* Chatbot */
.chatbot-container {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.chatbot-title i {
  font-size: 18px;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  max-height: 200px;
}

.chatbot-message {
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.chatbot-message.bot {
  background: #f0f2f5;
  color: #333;
}

.chatbot-message.user {
  background: #0084ff;
  color: white;
  text-align: left;
}

.chatbot-input {
  padding: 12px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
}

.chatbot-input input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
}

.chatbot-input button {
  background: #0084ff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Quick action buttons */
.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-action-btn {
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}

.quick-action-btn:hover {
  background: #2196F3;
  color: white;
  border-color: #2196F3;
}

/* WhatsApp action button */
.whatsapp-action {
  background: #25d366 !important;
  color: white !important;
  border-color: #25d366 !important;
  font-weight: 600;
}

.whatsapp-action:hover {
  background: #128c7e !important;
  border-color: #128c7e !important;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-buttons-left {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.chatbot-toggle {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  animation: pulse 2s infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.chatbot-toggle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #25d366, #128c7e, #25d366);
  border-radius: 50%;
  z-index: -1;
  animation: rotate 3s linear infinite;
}



@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
}



@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.back-to-top {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .floating-buttons,
  .floating-buttons-left {
    bottom: 20px;
  }
  
  .floating-buttons {
    right: 20px;
  }
  
  .floating-buttons-left {
    left: 20px;
  }
  
  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

/* منع أي تجاوز أفقي للحاويات الشبكية */
.services-cards,
.gallery-grid,
.contact-split,
.about-flex {
  max-width: 100vw !important;
  overflow-x: auto !important;
  box-sizing: border-box;
}

/* جعل الأعمدة عمود واحد على الشاشات الصغيرة */
@media (max-width: 700px) {
  .services-cards,
  .gallery-grid,
  .contact-split,
  .about-flex {
    display: block !important;
  }
  .services-cards > *,
  .gallery-grid > *,
  .contact-split > *,
  .about-flex > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}

/* Glassmorphism Navbar */
.bg-glass {
  background: rgba(255,255,255,0.65) !important;
  box-shadow: 0 8px 32px 0 rgba(33,150,243,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  border: 1.5px solid rgba(33,150,243,0.13);
}

.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar-sticky {
  background: #fff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 1px solid #e3e3e3;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1976D2 !important;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(33,150,243,0.08);
}

.badge-glass {
  background: rgba(33,150,243,0.13);
  color: #1976D2;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(33,150,243,0.10);
  border: 1.5px solid rgba(33,150,243,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar-nav .nav-link.nav-glass {
  background: rgba(33,150,243,0.07);
  border-radius: 18px;
  color: #1976D2 !important;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  margin: 0 0.2rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(33,150,243,0.07);
  border: 1.2px solid rgba(33,150,243,0.10);
}

.navbar-nav .nav-link.nav-glass.active,
.navbar-nav .nav-link.nav-glass:focus,
.navbar-nav .nav-link.nav-glass:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #0d47a1 !important;
  box-shadow: 0 4px 16px rgba(33,150,243,0.13);
  border: 1.5px solid #2196F3;
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar {
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .bg-glass {
    border-radius: 0;
  }
  .navbar-nav .nav-link {
    transition: background 0.2s, color 0.2s;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background: linear-gradient(90deg, #7f53ac 0%, #647dee 100%) !important;
    color: #fff !important;
    border-radius: 12px;
  }
}

.brand-subtext {
  font-size: 1rem;
  background: linear-gradient(90deg, #b39ddb 0%, #7f53ac 50%, #90caf9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  position: relative;
  top: 6px;
  letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #E8F5E8 0%, #D4EDDA 50%, #C3E6CB 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(0,0,0,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contact h2 {
  color: #2E7D32;
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-info h3 {
  color: #2E7D32;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-item i {
  font-size: 1.5rem;
  color: #4CAF50;
  min-width: 30px;
  text-align: center;
  text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.contact-link {
  color: #2E7D32;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.contact-link:hover {
  color: #1B5E20;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transform: scale(1.05);
}

.location-btn {
  cursor: pointer;
  padding: 8px 16px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
}

.location-btn:hover {
  background: rgba(76, 175, 80, 0.2);
  transform: scale(1.05);
}

.contact-map-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-map-container iframe {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-map-container:hover iframe {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info,
  .contact-map-container {
    padding: 25px;
  }
  
  .contact h2 {
    font-size: 2rem;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
  }
} 