/*
* Roundbracket - Modern Corporate Website
* Redesigned: January 2026
* Theme: Dark Flat
*/

/* ==========================================================================
   1. IMPORT GOOGLE FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   2. CSS VARIABLES & ROOT
   ========================================================================== */
:root {
  /* Primary palette */
  --primary: #2cb5f0;
  --primary-light: #5cc8f5;
  --primary-dark: #1a9ad4;
  --accent: #3dc9a3;
  --accent-light: #6dd9bc;
  
  /* Dark flat backgrounds - neutral grays, no blue tint */
  --bg-body: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-section-alt: #151515;
  
  /* Text colors */
  --text-primary: #eeeeee;
  --text-secondary: #999999;
  --text-muted: #666666;
  
  /* Borders & effects - flat, no shadows */
  --border-subtle: #2a2a2a;
  --border-hover: #3a3a3a;
  --shadow-card: none;
  --shadow-card-hover: none;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.25s ease;
}

/* ==========================================================================
   3. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  background: var(--bg-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}

/* No decorative background overlay in flat design */
body::before {
  display: none;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

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

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: var(--text-primary);
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* ==========================================================================
   4. UTILITY CLASSES
   ========================================================================== */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

.main-logo {
  height: 100%;
  width: 100%;
  max-width: 380px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.main-logo:hover {
  opacity: 0.85;
}

/* ==========================================================================
   5. SECTION STYLES
   ========================================================================== */
.section {
  padding: var(--section-padding) 0;
  position: relative;
  scroll-margin-top: 80px;
}

.section-border-bottom {
  border: none;
  position: relative;
}

.section-border-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-header .section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.section-header .section-subtitle {
  margin-top: 25px;
  color: var(--text-secondary);
  font-size: 17px;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.section-header .lines {
  display: none;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  display: none;
}

.btn:focus, .btn:active {
  box-shadow: none;
  outline: none;
}

.btn-common {
  background: var(--primary);
  border: none;
  color: #fff;
}

.btn-common:hover {
  background: var(--primary-dark);
  color: #fff;
}

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

.btn-border:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn-rm {
  padding: 8px 0;
  color: var(--text-secondary);
  text-transform: capitalize;
  background: transparent;
  border: none;
}

.btn-rm:hover {
  color: var(--primary);
}

.btn-rm i {
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

.btn-rm:hover i {
  transform: translateX(4px);
}

button:focus {
  outline: none !important;
}

.clear {
  clear: both;
}

/* ==========================================================================
   7. SOCIAL ICONS
   ========================================================================== */
.social-icons {
  margin-top: 40px;
}

.social-icons ul {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-section-alt);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.social-icons ul li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.facebook a:hover { background: #4867aa; border-color: #4867aa; }
.twitter a:hover { background: #1da1f2; border-color: #1da1f2; }
.linkedin a:hover { background: #007bb6; border-color: #007bb6; }
.dribbble a:hover { background: #ea4c89; border-color: #ea4c89; }

/* ==========================================================================
   8. PRELOADER
   ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111111;
  z-index: 9999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 50px;
  height: 50px;
  position: relative;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% { transform: scale(0); }
  50% { transform: scale(1); }
}

/* ==========================================================================
   9. SCROLL TO TOP
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.back-to-top:hover i {
  background: var(--primary-dark);
}

/* ==========================================================================
   10. HERO AREA
   ========================================================================== */
#hero-area {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg-body);
}

#hero-area::before,
#hero-area::after {
  display: none;
}

#hero-area .overlay {
  display: none;
}

/* Hero Content Section */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}

.hero-center {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

/* Hero Logo */
.hero-logo-wrapper {
  margin-bottom: 40px;
}

.hero-logo {
  width: 100%;
  max-width: 800px;
  height: auto;
}

/* Hero Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 36px 0;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.tagline-item {
  display: inline;
  margin: 0 6px;
}

/* Single CTA Button */
.hero-cta-single {
  margin-bottom: 48px;
}

.hero-cta-single .btn {
  min-width: 180px;
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.trust-item i {
  font-size: 32px;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.trust-item span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-item:hover {
  color: var(--primary);
}

.trust-item:hover i {
  color: var(--accent);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -15px;
  z-index: 10;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 15px;
  background: var(--bg-card);
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.scroll-indicator a:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.scroll-indicator span {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(45deg);
  will-change: opacity;
  backface-visibility: hidden;
}

.scroll-indicator span:nth-child(1) {
  animation: scroll-bounce-1 2s infinite;
}

.scroll-indicator span:nth-child(2) {
  animation: scroll-bounce-2 2s infinite;
}

.scroll-indicator span:nth-child(3) {
  animation: scroll-bounce-3 2s infinite;
}

@keyframes scroll-bounce-1 {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes scroll-bounce-2 {
  0%, 7.5%, 100% { opacity: 0.3; }
  57.5% { opacity: 1; }
}

@keyframes scroll-bounce-3 {
  0%, 15%, 100% { opacity: 0.3; }
  65% { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================================================
   11. NAVBAR
   ========================================================================== */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.navigation.sticky {
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.navbar-brand img {
  height: 42px;
  transition: var(--transition-smooth);
}

.navigation.sticky .navbar-brand img {
  height: 38px;
}

.navbar-toggler {
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.navbar-toggler .toggler-icon {
  width: 26px;
  height: 2px;
  background: var(--text-secondary);
  display: block;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-item a {
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-nav .nav-item:hover a,
.navbar-nav .nav-item.active a {
  color: var(--text-primary);
}

.navbar-nav .nav-item.active a {
  background: var(--primary);
  color: #fff !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-top: none;
    padding: 16px;
  }
  
  .navbar-nav .nav-item a {
    display: block;
    padding: 12px 18px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-top: none;
    padding: 16px;
  }
  
  .navbar-nav .nav-item a {
    display: block;
    padding: 12px 18px;
  }
}

/* ==========================================================================
   12. SERVICE CARDS (About Us Section)
   ========================================================================== */
.item-boxes {
  text-align: center;
  padding: 35px 25px;
  margin-bottom: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.item-boxes::before {
  display: none;
}

.item-boxes:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.item-boxes .icon,
.item-boxes .icon-green,
.item-boxes .icon-pink,
.item-boxes .icon-grey {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.item-boxes .icon {
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
}

.item-boxes .icon i {
  font-size: 28px;
  line-height: 1;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.item-boxes:hover .icon {
  background: var(--primary);
  border-color: var(--primary);
}

.item-boxes:hover .icon i {
  color: #fff;
}

/* Green icon variant */
.item-boxes .icon-green {
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
}

.item-boxes .icon-green i {
  font-size: 28px;
  line-height: 1;
  color: #83a02b;
}

.item-boxes:hover .icon-green {
  background: #83a02b;
  border-color: #83a02b;
}

.item-boxes:hover .icon-green i {
  color: #fff;
}

/* Pink/Coral icon variant */
.item-boxes .icon-pink {
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
}

.item-boxes .icon-pink i {
  font-size: 28px;
  line-height: 1;
  color: #EA1C48;
}

.item-boxes:hover .icon-pink {
  background: #EA1C48;
  border-color: #EA1C48;
}

.item-boxes:hover .icon-pink i {
  color: #fff;
}

/* Grey icon variant */
.item-boxes .icon-grey {
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
}

.item-boxes .icon-grey i {
  font-size: 28px;
  line-height: 1;
  color: var(--text-secondary);
}

.item-boxes:hover .icon-grey {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
}

.item-boxes:hover .icon-grey i {
  color: #fff;
}

.item-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.item-boxes p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* Header item boxes (no background card) */
.section-header .item-boxes {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 15px;
  margin-bottom: 15px;
}

.section-header .item-boxes:hover {
  transform: none;
  box-shadow: none;
}

.section-header .item-boxes::before {
  display: none;
}

.section-header .item-boxes img {
  transition: var(--transition-smooth);
}

.section-header .item-boxes:hover img {
  opacity: 0.9;
}

/* ==========================================================================
   13. FEATURES SECTION
   ========================================================================== */
#features {
  background: var(--bg-section-alt);
  position: relative;
  overflow: hidden;
}

#features::before {
  display: none;
}

#features .section-title {
  color: var(--text-primary);
}

#features .section-subtitle {
  color: var(--text-secondary);
}

#features .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
}

#features .box-item {
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

#features .box-item .icon {
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

#features .box-item .icon i {
  color: var(--primary);
  font-size: 24px;
}

#features .box-item .text h4 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
}

#features .box-item .text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

#features .box-item:hover .icon {
  background: var(--primary);
  border-color: var(--primary);
}

#features .box-item:hover .icon i {
  color: #fff;
}

#features .show-box img {
  position: absolute;
  bottom: -120px;
}

/* ==========================================================================
   14. VIDEO PROMO
   ========================================================================== */
.video-promo {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.video-promo .video-promo-content {
  position: relative;
  z-index: 1;
}

.video-promo .video-promo-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.video-promo .video-promo-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.video-promo .video-promo-content .video-popup {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  transition: var(--transition-smooth);
}

.video-promo .video-promo-content .video-popup:hover {
  background: #fff;
  color: var(--primary);
  transform: scale(1.1);
}

.overlay {
  display: none;
}

/* ==========================================================================
   15. PORTFOLIO
   ========================================================================== */
#portfolios .mix,
#portfolio .mix {
  padding: 12px;
}

#portfolio .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0 0 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.controls .active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.controls .btn {
  background: var(--bg-section-alt);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  margin: 0;
}

.controls .btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.shot-item {
  border-radius: 14px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.shot-item img {
  width: 100%;
  transition: var(--transition-smooth);
}

.shot-item .overlay {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: var(--transition-smooth);
}

.shot-item:hover .overlay {
  opacity: 1;
}

.shot-item:hover img {
  transform: scale(1.1);
}

.overlay .item-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: var(--primary);
  font-size: 22px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: scale(0.8);
}

.shot-item:hover .item-icon {
  opacity: 1;
  transform: scale(1);
}

.item-icon:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================================================
   16. PRICING TABLE
   ========================================================================== */
.pricing-table {
  padding: 0;
  margin: 0 auto 25px;
  border-radius: 20px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.pricing-table:hover {
  border-color: var(--border-hover);
}

.pricing-table .pricing-details h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: var(--bg-section-alt);
  padding: 28px 0;
}

.pricing-table .pricing-details span {
  display: inline-block;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin: 18px 0;
}

.pricing-table .pricing-details ul {
  margin-bottom: 28px;
  padding: 0 28px;
}

.pricing-table .pricing-details ul li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-table .pricing-details ul li:last-child {
  border-bottom: none;
}

.pricing-table .plan-button {
  padding: 0 28px 28px;
}

/* ==========================================================================
   17. COUNTER SECTION
   ========================================================================== */
.counters {
  background: var(--bg-section-alt);
  position: relative;
}

.counters .facts-item {
  text-align: center;
  padding: 28px;
}

.counters .facts-item .icon {
  margin-bottom: 18px;
}

.counters .facts-item .icon i {
  font-size: 44px;
  color: var(--primary);
}

.counters .facts-item .fact-count h3 {
  font-size: 38px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.counters .facts-item .fact-count h4 {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ==========================================================================
   18. TESTIMONIALS
   ========================================================================== */
#testimonial {
  background: var(--bg-section-alt);
  position: relative;
}

.testimonial-item {
  text-align: center;
  padding: 35px 28px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.testimonial-item img {
  width: 75px;
  height: 75px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  margin-bottom: 18px;
}

.testimonial-item .testimonial-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-item .testimonial-text span {
  font-size: 14px;
  color: var(--primary);
}

.testimonial-item .testimonial-text p {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 25px 0;
  line-height: 1.8;
}

.owl-theme .owl-controls .owl-page span {
  background: var(--primary);
}

/* ==========================================================================
   19. TEAM SECTION
   ========================================================================== */
.single-team {
  position: relative;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

.single-team:hover {
  border-color: var(--border-hover);
}

.single-team img {
  width: 100%;
  transition: var(--transition-smooth);
}

.single-team:hover img {
  opacity: 0.9;
}

.single-team .team-details {
  padding: 22px;
  background: var(--bg-card);
}

.single-team .team-details .team-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.single-team .team-details p {
  color: var(--primary);
  margin-bottom: 12px;
}

.single-team .social-list li {
  display: inline-block;
}

.single-team .social-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 2px;
  background: var(--bg-section-alt);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  transition: var(--transition-smooth);
}

.single-team .social-list li a:hover {
  background: var(--primary);
  color: #fff;
}

/* ==========================================================================
   20. BLOG SECTION
   ========================================================================== */
#blog .blog-item-wrapper {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}

#blog .blog-item-wrapper:hover {
  border-color: var(--border-hover);
}

#blog .blog-item-img {
  position: relative;
  overflow: hidden;
}

#blog .blog-item-img img {
  width: 100%;
  transition: var(--transition-smooth);
}

#blog .blog-item-wrapper:hover .blog-item-img img {
  opacity: 0.9;
}

#blog .blog-item-text {
  padding: 22px;
}

#blog .blog-item-text h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

#blog .blog-item-text h3 a {
  color: var(--text-primary);
}

#blog .blog-item-text h3 a:hover {
  color: var(--primary);
}

#blog .blog-item-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.meta-tags {
  margin-bottom: 12px;
}

.meta-tags span {
  color: var(--text-muted);
  margin-right: 14px;
  font-size: 13px;
}

.meta-tags span i {
  margin-right: 4px;
  color: var(--primary);
}

.meta-tags span a {
  color: var(--text-muted);
}

.meta-tags span a:hover {
  color: var(--primary);
}

/* ==========================================================================
   21. CONTACT SECTION
   ========================================================================== */
.contact-us h3 {
  font-size: 30px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.contact-us p {
  color: var(--text-secondary);
}

.contact-us p span {
  color: var(--primary);
  padding-left: 8px;
}

#contact {
  background: var(--bg-section-alt);
  position: relative;
}

.form-control {
  width: 100%;
  margin-bottom: 18px;
  padding: 15px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  background: var(--bg-card);
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--bg-card);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.btn.disabled, .btn:disabled {
  opacity: 0.6;
}

.text-danger {
  font-size: 14px;
  margin-top: 6px;
  color: #dc3545;
}

.list-unstyled li {
  color: #dc3545;
}

/* ==========================================================================
   22. FOOTER
   ========================================================================== */
footer {
  background: #0d0d0d;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-links {
  line-height: 42px;
}

.footer-links li {
  display: inline-block;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 18px;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-links li a:hover {
  color: #fff;
}

.copyright {
  margin-top: 8px;
  float: right;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.copyright p a {
  color: var(--primary-light);
}

.copyright p a:hover {
  color: #fff;
}

/* ==========================================================================
   23. ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth reveal animations for WOW.js elements */
.wow {
  visibility: visible !important;
}

.fadeIn, .fadeInDown, .fadeInUp, .zoomIn {
  animation-fill-mode: both;
}
