/* === CONTACT PAGE PREMIUM ENHANCEMENTS === */
.contact-section .contact-info,
.contact-section .block-9 {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(240, 93, 35, 0.08);
  box-shadow: 0 12px 48px rgba(240, 93, 35, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-section .contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1.08rem;
  color: #333;
}

.contact-section .contact-info p span {
  display: inline-flex;
  align-items: center;
  font-size: 1.15em;
  color: #f05d23;
  margin-right: 7px;
}

.contact-section .contact-info p a {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-size: 1.08rem;
  color: #f05d23;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-section .contact-info p a:hover {
  color: #d94810;
}

.contact-section .contact-info .col-md-3:not(:last-child) {
  border-right: 1px solid #f3e7e2;
}

.contact-section .contact-info .col-md-3 {
  padding-bottom: 1.2em;
}

.contact-section .contact-info .col-md-12 {
  margin-bottom: 0.5em;
}

.contact-section .contact-info h2 {
  position: relative;
  padding-left: 18px;
}

.contact-section .contact-info h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 32px;
  background: linear-gradient(135deg, #f05d23 0%, #d94810 100%);
  border-radius: 4px;
}

.contact-section .block-9 {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid #f3e7e2;
  box-shadow: 0 1px 4px rgba(240, 93, 35, 0.03);
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  border-color: #f05d23;
  box-shadow: 0 0 0 3px rgba(240, 93, 35, 0.1);
}

.contact-section .btn.btn-primary {
  letter-spacing: 1px;
  font-size: 1.13rem;
  box-shadow: 0 6px 24px rgba(240, 93, 35, 0.13);
  position: relative;
  overflow: hidden;
}

.contact-section .btn.btn-primary::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.contact-section .btn.btn-primary:hover::after {
  opacity: 1;
}

.contact-section .btn.btn-primary span {
  position: relative;
  z-index: 1;
}

.contact-section .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f05d23 0%, #d94810 100%);
  border-radius: 2px;
  margin: 1.5rem auto 2.5rem auto;
  opacity: 0.8;
}

/* === CONTACT PAGE PROFESSIONAL ENHANCEMENTS === */
.contact-section .container {
  max-width: 980px;
}

.contact-section .contact-info {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}

.contact-section .contact-info h2 {
  color: #f05d23;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  border-left: 5px solid #f05d23;
  padding-left: 12px;
}

.contact-section .contact-info p span {
  font-weight: 600;
  color: #222;
  margin-right: 4px;
}

.contact-section .contact-info p a {
  color: #f05d23;
  text-decoration: none;
  font-weight: 500;
}

.contact-section .contact-info p a:hover {
  text-decoration: underline;
}

.contact-section .block-9 {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
}

.contact-section form {
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
  padding: 0;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.1rem;
  background: #f9f9f9;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  border-color: #f05d23;
  box-shadow: 0 0 0 2px rgba(240, 93, 35, 0.1);
  background: #fff;
}

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

.contact-section .btn.btn-primary {
  background: linear-gradient(135deg, #f05d23 0%, #d94810 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 4px 16px rgba(240, 93, 35, 0.13);
  transition: background 0.3s, box-shadow 0.3s;
}

.contact-section .btn.btn-primary:hover {
  background: linear-gradient(135deg, #e85419 0%, #c03f0a 100%);
  box-shadow: 0 8px 24px rgba(240, 93, 35, 0.18);
}

.contact-section iframe {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: none;
  min-height: 340px;
  margin-top: 0.5rem;
}

.contact-info-panel {
  background: linear-gradient(135deg, #f05d23 0%, #d94810 100%);
}

.btn-hover {
  transition: all 0.3s ease;
}

.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(240, 93, 35, 0.4);
}

@media (max-width: 992px) {
  .contact-card {
    flex-direction: column !important;
  }
}

@media (max-width: 991px) {
  .contact-section .block-9 {
    flex-direction: column;
    padding: 1.5rem 0.7rem;
  }

  .contact-section .contact-info {
    padding: 1.5rem 0.7rem 1rem 0.7rem;
  }
}

/* --- FORCE FOOTER CONTACT VISIBILITY FIX --- */
.ftco-footer .ftco-footer-widget,
.block-23,
.block-23 ul,
.block-23 li,
.block-23 .text,
.block-23 .icon {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: white !important;
  height: auto !important;
  min-height: 10px !important;
}

/* UI Enhancements - Modern Styling */

/* ===========================================
   ANIMATIONS & TRANSITIONS
   =========================================== */

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(240, 93, 35, 0.5);
  }

  50% {
    box-shadow: 0 0 20px rgba(240, 93, 35, 0.8);
  }
}

/* ===========================================
   ENHANCED BLOG CARDS
   =========================================== */

.blog-entry {
  animation: fadeInUp 0.6s ease-out both;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: white !important;
}

.blog-entry:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-10px) !important;
}

.blog-entry:hover .img {
  transform: scale(1.08) !important;
}

.blog-entry .img {
  border-radius: 12px 12px 0 0 !important;
  overflow: hidden !important;
  height: 330px !important;
  transition: transform 0.5s ease-out !important;
}

.blog-entry .text {
  padding: 2rem !important;
}

.blog-entry .text h3 {
  font-size: 24px !important;
  line-height: 1.4 !important;
  margin: 1rem 0 !important;
  font-weight: 700 !important;
  transition: color 0.3s ease !important;
}

.blog-entry .text h3 a:hover {
  color: #f05d23 !important;
}

.blog-entry .text .category {
  display: inline-block !important;
  background: rgba(240, 93, 35, 0.1) !important;
  color: #f05d23 !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

.blog-entry .text p {
  color: rgba(0, 0, 0, 0.6) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

.blog-entry .meta-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 1.5rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.blog-entry .meta {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.blog-entry .meta span {
  color: rgba(0, 0, 0, 0.5) !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
}

.blog-entry .meta i {
  color: #f05d23 !important;
}

/* ===========================================
   ENHANCED BUTTONS
   =========================================== */

.btn {
  border-radius: 8px !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.5rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-size: 13px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: none !important;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease !important;
  z-index: 0;
}

.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.btn.btn-primary {
  background: linear-gradient(135deg, #f05d23 0%, #d94810 100%) !important;
  border: 1px solid #f05d23 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(240, 93, 35, 0.3) !important;
}

.btn.btn-primary:hover {
  background: linear-gradient(135deg, #e85419 0%, #c03f0a 100%) !important;
  box-shadow: 0 8px 20px rgba(240, 93, 35, 0.4) !important;
}

.btn.btn-outline-primary {
  border: 2px solid #f05d23 !important;
  background: transparent !important;
  color: #f05d23 !important;
}

.btn.btn-outline-primary:hover {
  background: #f05d23 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(240, 93, 35, 0.3) !important;
}

.btn-custom {
  color: #f05d23 !important;
  border-bottom: 3px solid #f05d23 !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  padding: 10px 8px !important;
  font-size: 14px !important;
  text-decoration: none !important;
  position: relative !important;
  z-index: 10 !important;
  margin-top: 15px !important;
}

.btn-custom:hover {
  color: #d94810 !important;
  border-bottom-color: #d94810 !important;
  text-decoration: none !important;
}

.btn-custom span {
  margin-left: 5px !important;
}

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

.hero-wrap .overlay {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.6) 100%) !important;
  opacity: 0.6 !important;
}

.hero-wrap .text .img {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  border: 5px solid white !important;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-wrap .text h1 {
  font-size: 52px !important;
  font-weight: 900 !important;
  margin: 20px 0 !important;
  line-height: 1.2 !important;
  letter-spacing: -1px !important;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-wrap .text .subheading {
  font-size: 24px !important;
  font-weight: 300 !important;
  letter-spacing: 1px !important;
  color: rgba(0, 0, 0, 0.6) !important;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-wrap .text p {
  font-size: 16px !important;
  max-width: 600px !important;
  margin: 20px auto !important;
  line-height: 1.8 !important;
  color: rgba(0, 0, 0, 0.7) !important;
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-wrap .text p a {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

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

.heading-section h2 {
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  letter-spacing: -1px !important;
}

.heading-section .subheading {
  color: #f05d23 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 14px !important;
  display: block !important;
  margin-bottom: 15px !important;
}

/* ===========================================
   SECTIONS & BACKGROUNDS
   =========================================== */

.ftco-section {
  padding: 7em 1.8em !important;
  transition: all 0.3s ease !important;
}

.ftco-section:nth-child(even) {
  background: #182a41;
}

/* ===========================================
   PHOTOGRAPHY ENTRIES
   =========================================== */

.photography-entry {
  border-radius: 0px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.photography-entry:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-6px) !important;
}

.photography-entry .overlay {
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.7) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  z-index: 1 !important;
}

.photography-entry .text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.photography-entry:hover .overlay {
  opacity: 1 !important;
}

.photography-entry:hover .text {
  opacity: 1 !important;
}

.photography-entry .text h3 {
  color: white !important;
  font-size: 22px !important;
  text-align: center !important;
  margin-bottom: 10px !important;
}

.photography-entry .text span {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

/* ===========================================
   SIDEBAR
   =========================================== */

.sidebar-box {
  background: #f9f9f9 !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  border-left: 4px solid #f05d23 !important;
  padding: 30px !important;
  transition: all 0.3s ease !important;
}

.sidebar-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
}

.sidebar-box h3.sidebar-heading {
  color: #000 !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 30px !important;
}

/* ===========================================
   FOOTER
   =========================================== */

.ftco-footer {
  /* background: linear-gradient(135deg, #132238 0%, #1a2f47 100%) !important; */
  /* Background now controlled dynamically from Admin Settings */
  padding: 7em 0 !important;
}

.ftco-footer .ftco-footer-widget h2 {
  color: white !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  position: relative !important;
  padding-bottom: 15px !important;
  margin-bottom: 40px !important;
}

.ftco-footer .ftco-footer-widget h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f05d23;
  border-radius: 2px;
}

.ftco-footer .ftco-footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease !important;
}

.ftco-footer .ftco-footer-widget ul li a:hover {
  color: #f05d23 !important;
  padding-left: 5px !important;
}

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

.ftco-footer a:hover {
  color: #f05d23 !important;
}

.ftco-footer p {
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.8 !important;
}

.ftco-footer .categories li {
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ftco-footer .categories li a {
  color: rgba(255, 255, 255, 0.6) !important;
  transition: color 0.3s ease !important;
}

.ftco-footer .categories li a:hover {
  color: #f05d23 !important;
}

/* ===========================================
   SOCIAL ICONS
   =========================================== */

.ftco-social li a {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgba(240, 93, 35, 0.1) !important;
  border: 2px solid rgba(240, 93, 35, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.ftco-social li a span {
  font-size: 20px !important;
  color: #f05d23 !important;
  transition: all 0.3s ease !important;
}

.ftco-social li a:hover {
  background: #f05d23 !important;
  border-color: #f05d23 !important;
}

.ftco-social li a:hover span {
  color: white !important;
  transform: scale(1.15) !important;
}

/* ===========================================
   FORMS
   =========================================== */

.form-control {
  border-radius: 8px !important;
  border: 1px solid #e0e0e0 !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  height: 52px !important;
}

.form-control:focus {
  border-color: #f05d23 !important;
  box-shadow: 0 0 0 3px rgba(240, 93, 35, 0.1) !important;
}

.subscribe-form .form-group input {
  background: rgba(255, 255, 255, 0.95) !important;
  border: none !important;
  color: #000 !important;
  border-radius: 8px !important;
  padding: 15px 20px !important;
  transition: all 0.3s ease !important;
}

.subscribe-form .form-group input:focus {
  background: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.subscribe-form .form-group .submit {
  color: #f05d23 !important;
  background: white !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  border: 2px solid white !important;
  padding: 12px 30px !important;
  transition: all 0.3s ease !important;
}

.subscribe-form .form-group .submit:hover {
  background: transparent !important;
  color: white !important;
  border-color: white !important;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */

@media (max-width: 768px) {
  .hero-wrap .text h1 {
    font-size: 36px !important;
  }

  .heading-section h2 {
    font-size: 28px !important;
  }

  .blog-entry {
    margin-bottom: 3em !important;
  }

  .ftco-section {
    padding: 4em 1.2em !important;
  }

  .sidebar-box {
    padding: 20px !important;
  }

  .btn {
    padding: 0.5rem 1rem !important;
    font-size: 12px !important;
  }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.shadow-soft {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.shadow-medium {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.shadow-hard {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25) !important;
}

.transition-smooth {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.text-primary {
  color: #f05d23 !important;
}

.bg-light-primary {
  background: rgba(240, 93, 35, 0.05) !important;
}

/* --- FORCE IMAGE VISIBILITY FIX --- */
.img,
.img-2,
.blog-entry .img,
.hero-wrap .text .img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 50px !important;
  min-width: 100px !important;
  color: black !important;
}

/* --- FORCE TEXT VISIBILITY FIX --- */
.text,
.text-2,
.text.text-2,
.text-2.pt-2.mt-3 {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: inherit !important;
  height: auto !important;
  min-height: 20px !important;
}

/* --- SMOOTH IMAGE HOVER ANIMATION --- */
/* --- SMOOTH IMAGE HOVER ANIMATION --- */
.img,
.img-2,
.blog-entry .img,
.photography-entry.img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.img:hover,
.img-2:hover,
.blog-entry .img:hover,
.photography-entry.img:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18) !important;
  z-index: 2 !important;
}