/* ==========================================
   CLEANED & OPTIMIZED CSS
   Gereksiz kodlar kaldırıldı - Sadece kullanılan sınıflar
   ========================================== */

/* ==========================================
   GENEL STİLLER
   ========================================== */
   body,
   html {
     font-family: "Open Sans", sans-serif;
     text-rendering: optimizeLegibility !important;
     -webkit-font-smoothing: antialiased !important;
     color: #777;
     font-weight: 400;
     width: 100% !important;
     height: 100% !important;
     transition: background-color 0.4s ease, color 0.4s ease;
   }
   
   h2,
   h3,
   h4 {
     font-family: "Raleway", sans-serif;
   }
   
   h2 {
     text-transform: uppercase;
     margin: 0 0 20px;
     font-weight: 800;
     font-size: 36px;
     color: #333;
   }
   
   h3 {
     font-size: 20px;
     font-weight: 600;
     color: #333;
   }
   
   h4 {
     font-size: 18px;
     color: #333;
     font-weight: 600;
   }
   
   h5 {
     text-transform: uppercase;
     font-weight: 700;
     line-height: 20px;
   }
   
   p {
     font-size: 15px;
   }
   
   p.intro {
     margin: 12px 0 0;
     line-height: 24px;
   }
   
   a {
     color: #1e7a46;
     font-weight: 400;
     transition: color 0.4s ease;
   }
   
   a:hover,
   a:focus {
     text-decoration: none;
     color: #1e7a46;
   }
   
   ul,
   ol {
     list-style: none;
     -webkit-padding-start: 0;
     -moz-padding-start: 0;
     padding-inline-start: 0;
   }
   
   hr {
     height: 2px;
     width: 70px;
     text-align: center;
     position: relative;
     background: #1e7a46;
     margin-bottom: 20px;
     border: 0;
   }
   
   label {
     font-size: 12px;
     font-weight: 400;
     font-family: "Open Sans", sans-serif;
     float: left;
   }
   
   /* ==========================================
      NAVIGATION
      ========================================== */
   #menu {
     padding: 15px;
     transition: all 0.8s;
   }
   
   #menu.navbar-light {
     background-color: #fff;
     border-color: rgba(231, 231, 231, 0);
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
     transition: background-color 0.4s ease, box-shadow 0.4s ease;
   }
   
   #menu a.navbar-brand {
     font-family: "Raleway", sans-serif;
     font-size: 24px;
     font-weight: 700;
     color: #333;
     text-transform: uppercase;
   }
   
   #menu.navbar-light .navbar-nav .nav-link {
     font-family: "Lato", sans-serif;
     text-transform: uppercase;
     color: #555;
     font-size: 15px;
     font-weight: 400;
     padding: 8px 2px;
     border-radius: 0;
     margin: 9px 20px 0;
     position: relative;
   }
   
   #menu.navbar-light .navbar-nav .nav-link:after {
     display: block;
     position: absolute;
     left: 0;
     bottom: -1px;
     width: 0;
     height: 2px;
     background: linear-gradient(to right, #1e7a46 0%, #3a976a 100%);
     content: "";
     transition: width 0.2s;
   }
   
   #menu.navbar-light .navbar-nav .nav-link:hover:after {
     width: 100%;
   }
   
   #menu.navbar-light .navbar-nav .nav-link.quote-btn {
     color: #1e7a46;
     font-weight: 600;
   }
   
   .navbar-light .navbar-nav .nav-link.active,
   .navbar-light .navbar-nav .nav-link.active:hover,
   .navbar-light .navbar-nav .nav-link.active:focus {
     background-color: transparent;
   }
   
   .navbar-light .navbar-nav .nav-link.active:after,
   .navbar-light .navbar-nav .nav-link.active:hover:after,
   .navbar-light .navbar-nav .nav-link.active:focus:after {
     display: block !important;
     position: absolute !important;
     left: 0 !important;
     bottom: -1px !important;
     width: 100% !important;
     height: 2px !important;
     background: linear-gradient(to right, #1e7a46 0%, #3a976a 100%) !important;
     content: "" !important;
     transition: width 0.2s !important;
   }
   
   .navbar-toggler {
     border-radius: 0;
   }
   
   .navbar-light .navbar-toggler:hover,
   .navbar-light .navbar-toggler:focus {
     background-color: #fff;
     border-color: #1e7a46;
   }
   
   .navbar-light .navbar-toggler:hover .navbar-toggler-icon {
     background-color: #1e7a46;
   }
   
   .nav-item.dropdown:hover .dropdown-menu {
     display: block;
   }
   
   .dropdown-menu li {
     transition: background-color 0.4s ease, color 0.4s ease;
   }
   
   .dropdown-menu li:hover {
     background-color: #f8f9fa;
     cursor: pointer;
     color: #333;
   }
   
   /* Mobile Dark Mode Button */
   .dark-mode-fixed-mobile {
     position: fixed;
     bottom: 20px;
     right: 20px;
     z-index: 1050;
     padding: 10px;
     border-radius: 50px;
     background-color: #fff;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
     transition: background-color 0.4s ease, box-shadow 0.4s ease;
   }
   
   body.dark-mode .dark-mode-fixed-mobile {
     background-color: #333;
   }
   
   /* ==========================================
      SECTION TITLES
      ========================================== */
   .section-title {
     margin-bottom: 70px;
   }
   
   .section-title h2 {
     position: relative;
     margin-top: 10px;
     margin-bottom: 15px;
     padding-bottom: 15px;
   }
   
   .section-title h2::after {
     position: absolute;
     content: "";
     background: linear-gradient(to right, #1e7a46 0%, #3a976a 100%);
     height: 4px;
     width: 60px;
     bottom: 0;
     margin-left: -30px;
     left: 50%;
   }
   
   .section-title p {
     font-size: 18px;
   }
   
   /* ==========================================
      BUTTONS
      ========================================== */
   .btn-custom {
     font-family: "Raleway", sans-serif;
     text-transform: uppercase;
     color: #fff;
     background-color: #1e7a46;
     background-image: linear-gradient(to right, #1e7a46 0%, #3a976a 100%);
     padding: 14px 34px;
     letter-spacing: 1px;
     margin: 0;
     font-size: 15px;
     font-weight: 500;
     border-radius: 25px;
     transition: all 0.5s linear;
     border: 0;
   }
   
   .btn-custom:hover,
   .btn-custom:focus,
   .btn-custom.focus,
   .btn-custom:active,
   .btn-custom.active {
     color: #fff;
     background-image: none;
     background-color: #3a976a;
   }
   
   .btn:active,
   .btn.active {
     background-image: none;
     outline: 0;
     -webkit-box-shadow: none;
     box-shadow: none;
   }
   
   a:focus,
   .btn:focus,
   .btn:active:focus,
   .btn.active:focus,
   .btn.focus,
   .btn:active.focus,
   .btn.active.focus {
     outline: none;
     outline-offset: none;
   }
   
   /* ==========================================
      ABOUT SECTION
      ========================================== */
   #about {
     padding: 80px 0 0 0;
   }
   
   .about-hero-full {
     width: 100%;
     height: 700px;
     overflow: hidden;
     border-radius: 10px;
     margin-bottom: 20px;
     margin-left: -15px;
     margin-right: -15px;
     width: calc(100% + 30px);
   }
   
   .about-hero-full img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
     object-position: top;
   }
   
   .mission-vision-box {
     padding: 30px;
     background: #f8f9fa;
     border-radius: 8px;
     height: 100%;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
   }
   
   .mission-vision-box:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }
   
   .mission-vision-box h2 {
     color: #333;
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   
   .mission-vision-text {
     color: #666;
     font-size: 16px;
     line-height: 1.8;
     text-align: justify;
   }
   
   /* ==========================================
      CONTACT INFO SECTION
      ========================================== */
   #contactinfo {
     padding: 100px 0;
     background-color: #f8f9fa;
     transition: background-color 0.4s ease;
   }
   
   #contactinfo .container {
     text-align: center;
   }
   
   #contactinfo .section-title {
     margin-bottom: 60px;
     text-align: center;
     float: none !important;
     margin-left: auto !important;
     margin-right: auto !important;
   }
   
   #contactinfo .section-title h2 {
     color: #333;
     margin-bottom: 20px;
     text-align: center;
   }
   
   #contactinfo .section-title h2::after {
     position: absolute;
     content: "";
     background: linear-gradient(to right, #1e7a46 0%, #3a976a 100%);
     height: 4px;
     width: 60px;
     bottom: 0;
     margin-left: -30px;
     left: 50%;
   }
   
   #contactinfo .section-title p {
     color: #666;
     font-size: 16px;
     max-width: 600px;
     margin: 0 auto;
     text-align: center;
   }
   
   .contact-info-item {
     padding: 40px 20px;
     margin-bottom: 30px;
     background: #ffffff;
     background-color: #ffffff !important;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     height: 280px;
     min-height: 280px;
     max-height: 280px;
     text-align: center;
     opacity: 1 !important;
     -webkit-backdrop-filter: none;
     backdrop-filter: none;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     overflow: hidden;
   }
   
   .contact-info-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   }
   
   .contact-info-item .contact-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #1e7a46 0%, #3a976a 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     transition: all 0.3s ease;
   }
   
   .contact-info-item:hover .contact-icon {
     transform: scale(1.1);
   }
   
   .contact-info-item .contact-icon i {
     font-size: 28px;
     color: #fff;
   }
   
   .contact-info-item .contact-details h4 {
     color: #333;
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 15px;
     text-align: center;
   }
   
   .contact-info-item .contact-details p {
     color: #666;
     font-size: 16px;
     line-height: 1.6;
     margin: 0;
     text-align: center;
   }
   
   .phone-display {
     -webkit-text-size-adjust: none;
     -webkit-touch-callout: none;
     -webkit-user-select: none;
     user-select: none;
     pointer-events: none;
   }
   
   .contact-info-item {
     pointer-events: auto;
   }
   
   /* Google Maps Section */
   .google-maps-section {
     margin-top: 60px;
     padding: 40px 0;
   }
   
   .google-maps-section h3 {
     color: #333;
     font-size: 28px;
     font-weight: 600;
     margin-bottom: 30px;
     text-align: center;
   }
   
   .map-container {
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     margin-bottom: 30px;
     border: 2px solid #1e7a46;
     padding: 5px;
     background-color: #fff;
   }
   
   .map-container:hover {
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
     transform: translateY(-2px);
     border-color: #3a976a;
   }
   
   .map-container iframe {
     border-radius: 5px;
   }
   
   .route-button-container {
     text-align: center;
   }
   
   .route-button {
     display: block;
     width: 100%;
     background: linear-gradient(to right, #1e7a46 0%, #3a976a 100%);
     color: #fff;
     border: none;
     padding: 18px 0;
     font-size: 18px;
     font-weight: 600;
     text-decoration: none;
     border-radius: 10px;
     transition: all 0.3s ease;
     cursor: pointer;
     margin-top: 0;
   }
   
   .route-button:hover {
     background: linear-gradient(to right, #3a976a 0%, #1e7a46 100%);
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(30, 122, 70, 0.3);
   }
   
   .route-button i {
     font-size: 18px;
     margin-right: 10px;
   }
   
   /* ==========================================
      CONTACT FORM
      ========================================== */
   #contact {
     padding: 100px 0 60px;
     background: linear-gradient(to right, #1e7a46 0%, #3a976a 100%);
     color: rgba(255, 255, 255, 0.75);
   }
   
   #contact .container {
     text-align: center;
   }
   
   #contact .section-title {
     margin-bottom: 40px;
     text-align: center !important;
   }
   
   #contact .section-title h2 {
     color: #fff;
     margin-top: 10px;
     margin-bottom: 15px;
     padding-bottom: 15px;
     text-align: center;
   }
   
   #contact .section-title h2::after {
     position: absolute;
     content: "";
     background: rgba(255, 255, 255, 0.3);
     height: 4px;
     width: 60px;
     bottom: 0;
     left: 50%;
     margin-left: -30px;
   }
   
   #contact .section-title p {
     font-size: 16px;
     max-width: 700px;
     margin: 0 auto;
     text-align: center;
   }
   
   #contact .col-md-8 {
     float: none !important;
     margin: 0 auto !important;
   }
   
   #contact form {
     padding-top: 20px;
     text-align: left;
   }
   
   #contact .form-group {
     margin-bottom: 20px;
   }
   
   #contact .form-control {
     display: block;
     width: 100%;
     padding: 12px 15px;
     font-size: 16px;
     line-height: 1.42857143;
     color: #444;
     background-color: #fff;
     background-image: none;
     border: 1px solid #ddd;
     border-radius: 4px;
     -webkit-box-shadow: none;
     box-shadow: none;
     -webkit-transition: border-color 0.3s ease;
     -o-transition: border-color 0.3s ease;
     transition: border-color 0.3s ease;
   }
   
   #contact .form-control:focus {
     border-color: #999;
     outline: 0;
     -webkit-box-shadow: transparent;
     box-shadow: transparent;
   }
   
   .form-control::-webkit-input-placeholder {
     color: #777;
   }
   .form-control:-moz-placeholder {
     color: #777;
   }
   .form-control::-moz-placeholder {
     color: #777;
   }
   .form-control:-ms-input-placeholder {
     color: #777;
   }
   
   #contact .btn-custom {
     margin: 30px 0;
     background: transparent;
     border: 2px solid #fff;
   }
   
   #contact .btn-custom:hover {
     color: #1f386e;
     background: #fff;
   }
   
   /* ==========================================
      FOOTER
      ========================================== */
   #footer {
     background: #f6f6f6;
     padding: 30px 0;
     transition: background 0.4s ease;
   }
   
   #footer p {
     color: #888;
     font-size: 14px;
   }
   
   #footer a {
     color: #1e7a46;
   }
   
   #footer a:hover {
     border-bottom: 2px solid #1e7a46;
   }
   
   /* ==========================================
      WHATSAPP FLOAT BUTTON
      ========================================== */
   .whatsapp-float {
     position: fixed;
     bottom: 25px;
     right: 25px;
     z-index: 1050;
   }
   
   .whatsapp-float a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 65px;
     height: 65px;
     border-radius: 50%;
     background-color: #25d366;
     color: #fff !important;
     font-size: 32px;
     text-decoration: none !important;
     box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
     transition: all 0.3s ease;
   }
   
   .whatsapp-float a:hover {
     transform: scale(1.1);
     box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
     text-decoration: none !important;
   }
   
   body.dark-mode .whatsapp-float a {
     color: #fff !important;
     text-decoration: none !important;
   }
   
   /* ==========================================
      ARTICLES LIST & DETAIL PAGES
      ========================================== */
   .articles-list-page {
     min-height: 100vh;
     padding-bottom: 80px;
   }
   
   .articles-list-page .section-title h2 {
     font-size: 42px;
     font-weight: 800;
     color: #333;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 2px;
   }
   
   .articles-list-page .section-title p {
     font-size: 18px;
     color: #666;
     line-height: 1.8;
     max-width: 800px;
     margin: 0 auto;
   }
   
   .article-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
     cursor: pointer;
     margin-bottom: 30px;
   }
   
   .article-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   }
   
   .article-image {
     position: relative;
     overflow: hidden;
     height: 250px;
   }
   
   .article-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
   }
   
   .article-card:hover .article-image img {
     transform: scale(1.1);
   }
   
   .article-category {
     position: absolute;
     top: 15px;
     right: 15px;
     background: rgba(96, 70, 146, 0.9);
     color: #fff;
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
   }
   
   .article-content {
     padding: 25px;
     flex: 1;
     display: flex;
     flex-direction: column;
   }
   
   .article-meta-info {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     flex-wrap: wrap;
     gap: 10px;
   }
   
   .article-date {
     color: #999;
     font-size: 13px;
     font-weight: 500;
   }
   
   .article-read-time {
     color: #999;
     font-size: 13px;
     font-weight: 500;
   }
   
   .article-read-time i {
     margin-right: 5px;
   }
   
   .article-title {
     font-size: 18px;
     font-weight: 700;
     color: #333;
     margin-bottom: 8px;
     line-height: 1.4;
     text-transform: uppercase;
     letter-spacing: 0.5px;
   }
   
   .article-subtitle {
     font-size: 14px;
     font-weight: 600;
     color: #604692;
     margin-bottom: 15px;
     line-height: 1.4;
   }
   
   .article-description {
     font-size: 14px;
     color: #666;
     line-height: 1.8;
     margin-bottom: 20px;
     flex: 1;
     display: -webkit-box;
     -webkit-line-clamp: 4;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
   }
   
   .read-more-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: #604692;
     font-weight: 600;
     font-size: 14px;
     text-decoration: none;
     transition: all 0.3s ease;
     margin-top: auto;
     cursor: pointer;
   }
   
   .read-more-btn:hover {
     color: #8b6bb7;
     gap: 12px;
   }
   
   .read-more-btn i {
     transition: transform 0.3s ease;
   }
   
   .read-more-btn:hover i {
     transform: translateX(5px);
   }
   
   /* Article Detail Page */
   .article-page {
     min-height: 100vh;
     padding-bottom: 60px;
   }
   
   .back-button {
     background: transparent;
     border: 2px solid #604692;
     color: #604692;
     padding: 10px 25px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 14px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 8px;
   }
   
   .back-button:hover {
     background: #604692;
     color: #fff;
     transform: translateX(-5px);
   }
   
   .article-header {
     padding: 40px 0 30px;
     text-align: center;
   }
   
   .article-meta {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     margin-bottom: 20px;
     flex-wrap: wrap;
   }
   
   .article-category-badge {
     background: #604692;
     color: #fff;
     padding: 6px 18px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
   }
   
   .article-date-meta,
   .article-read-time {
     color: #999;
     font-size: 14px;
     font-weight: 500;
   }
   
   .article-date-meta i,
   .article-read-time i {
     margin-right: 5px;
   }
   
   .article-main-title {
     font-size: 42px;
     font-weight: 800;
     color: #333;
     margin: 20px 0 15px;
     line-height: 1.3;
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   
   .article-main-subtitle {
     font-size: 24px;
     font-weight: 600;
     color: #604692;
     margin-bottom: 20px;
     line-height: 1.4;
   }
   
   .article-author {
     font-size: 16px;
     color: #666;
     font-weight: 600;
     margin-top: 15px;
   }
   
   .article-author i {
     margin-right: 8px;
     color: #604692;
   }
   
   .article-featured-image {
     margin: 40px 0;
   }
   
   .article-featured-image img {
     width: 100%;
     height: auto;
     border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   }
   
   .article-content-wrapper {
     padding: 40px 0;
   }
   
   .article-content {
     font-size: 18px;
     line-height: 1.8;
     color: #444;
   }
   
   .article-content h3 {
     font-size: 28px;
     font-weight: 700;
     color: #333;
     margin: 40px 0 20px;
     padding-bottom: 15px;
     border-bottom: 3px solid #604692;
   }
   
   .article-content h4 {
     font-size: 22px;
     font-weight: 600;
     color: #604692;
     margin: 30px 0 15px;
   }
   
   .article-content p {
     margin-bottom: 20px;
     text-align: justify;
   }
   
   .article-content ul,
   .article-content ol {
     margin: 20px 0;
     padding-left: 30px;
   }
   
   .article-content li {
     margin-bottom: 12px;
     line-height: 1.8;
   }
   
   .article-content ul li {
     list-style-type: disc;
   }
   
   .article-content ol li {
     list-style-type: decimal;
   }
   
   .article-content blockquote {
     border-left: 4px solid #604692;
     padding: 20px 30px;
     margin: 30px 0;
     background: #f8f8f8;
     font-style: italic;
     color: #666;
   }
   
   .article-content strong {
     font-weight: 700;
     color: #333;
   }
   
   .article-content em {
     font-style: italic;
   }
   
   /* Share Buttons */
   .article-share-top,
   .article-share-bottom {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 20px 0;
     border-top: 2px solid #eee;
     border-bottom: 2px solid #eee;
     margin: 30px 0;
   }
   
   .share-label {
     font-weight: 600;
     color: #666;
     font-size: 16px;
   }
   
   .share-btn {
     width: 45px;
     height: 45px;
     border-radius: 50%;
     border: none;
     color: #fff;
     font-size: 18px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   
   .share-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   }
   
   .share-btn.twitter {
     background: #1da1f2;
   }
   
   .share-btn.facebook {
     background: #1877f2;
   }
   
   .share-btn.linkedin {
     background: #0a66c2;
   }
   
   /* Related Articles */
   .related-articles {
     padding: 80px 0;
     background: #f9f9f9;
     margin-top: 60px;
   }
   
   .related-articles .section-title {
     font-size: 32px;
     font-weight: 700;
     color: #333;
     margin-bottom: 50px;
     text-align: center;
     text-transform: uppercase;
     letter-spacing: 1px;
   }
   
   .related-article-card {
     background: #fff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     cursor: pointer;
     height: 100%;
     display: flex;
     flex-direction: column;
     margin-bottom: 30px;
   }
   
   .related-article-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   }
   
   .related-article-image {
     height: 200px;
     overflow: hidden;
   }
   
   .related-article-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
   }
   
   .related-article-card:hover .related-article-image img {
     transform: scale(1.1);
   }
   
   .related-article-content {
     padding: 25px;
     flex: 1;
     display: flex;
     flex-direction: column;
   }
   
   .related-article-date {
     color: #999;
     font-size: 13px;
     margin-bottom: 10px;
     font-weight: 500;
   }
   
   .related-article-title {
     font-size: 18px;
     font-weight: 700;
     color: #333;
     margin-bottom: 12px;
     line-height: 1.4;
   }
   
   .related-article-description {
     font-size: 14px;
     color: #666;
     line-height: 1.6;
     margin-bottom: 15px;
     flex: 1;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
   }
   
   .read-more-link {
     color: #604692;
     font-weight: 600;
     font-size: 14px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: auto;
   }
   
   .read-more-link i {
     transition: transform 0.3s ease;
   }
   
   .related-article-card:hover .read-more-link i {
     transform: translateX(5px);
   }
   
   /* ==========================================
      SERVICES PAGES
      ========================================== */
   .services-page {
     min-height: 100vh;
     padding-bottom: 80px;
   }
   
   .services-page .section-title h2 {
     font-size: 42px;
     font-weight: 800;
     color: #333;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 2px;
   }
   
   .services-page .section-title p {
     font-size: 18px;
     color: #666;
     line-height: 1.8;
     max-width: 800px;
     margin: 0 auto;
   }
   
   .service-card {
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     margin-bottom: 30px;
     cursor: pointer;
     height: 100%;
     display: flex;
     flex-direction: column;
   }
   
   .service-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
   }
   
   .service-card-image {
     position: relative;
     height: 250px;
     overflow: hidden;
   }
   
   .service-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
   }
   
   .service-card:hover .service-card-image img {
     transform: scale(1.1);
   }
   
   .service-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.4s ease;
   }
   
   .service-card:hover .service-overlay {
     opacity: 1;
   }
   
   .service-overlay i {
     font-size: 80px;
     color: #fff;
     transform: scale(0);
     transition: transform 0.4s ease;
   }
   
   .service-card:hover .service-overlay i {
     transform: scale(1);
   }
   
   .service-card-content {
     padding: 30px;
     flex: 1;
     display: flex;
     flex-direction: column;
   }
   
   .service-card-title {
     font-size: 22px;
     font-weight: 700;
     color: #333;
     margin-bottom: 15px;
     line-height: 1.3;
   }
   
   .service-card-description {
     font-size: 15px;
     color: #666;
     line-height: 1.7;
     margin-bottom: 20px;
   }
   
   .service-sub-list {
     flex: 1;
     margin-bottom: 20px;
   }
   
   .service-sub-item {
     font-size: 14px;
     color: #555;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 10px;
   }
   
   .service-sub-item i {
     color: #604692;
     font-size: 16px;
   }
   
   .service-sub-more {
     font-size: 13px;
     color: #999;
     font-style: italic;
     margin-top: 10px;
   }
   
   .service-detail-btn {
     width: 100%;
     padding: 12px;
     border: none;
     border-radius: 8px;
     color: #fff;
     font-weight: 600;
     font-size: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
     transition: all 0.3s ease;
   }
   
   .service-detail-btn:hover {
     transform: scale(1.05);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   }
   
   /* Service Detail Page */
   .service-detail-page {
     min-height: 100vh;
     padding-bottom: 60px;
   }
   
   .service-detail-header {
     padding: 60px 0;
     margin-bottom: 60px;
   }
   
   .service-header-icon {
     font-size: 80px;
     margin-bottom: 20px;
   }
   
   .service-detail-title {
     font-size: 42px;
     font-weight: 800;
     color: #333;
     margin-bottom: 20px;
     line-height: 1.2;
   }
   
   .service-detail-description {
     font-size: 18px;
     color: #666;
     line-height: 1.8;
   }
   
   .service-detail-image {
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
   }
   
   .service-detail-image img {
     width: 100%;
     height: auto;
   }
   
   .service-sub-services {
     padding: 80px 0;
   }
   
   .service-sub-services .section-title {
     font-size: 36px;
     font-weight: 700;
     text-align: center;
     margin-bottom: 50px;
     text-transform: uppercase;
     letter-spacing: 1.5px;
   }
   
   .sub-service-card {
     background: #fff;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     margin-bottom: 30px;
     transition: all 0.3s ease;
     height: 100%;
   }
   
   .sub-service-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
   }
   
   .sub-service-icon {
     width: 60px;
     height: 60px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     margin-bottom: 20px;
   }
   
   .sub-service-title {
     font-size: 20px;
     font-weight: 700;
     color: #333;
     margin-bottom: 12px;
   }
   
   .sub-service-description {
     font-size: 15px;
     color: #666;
     line-height: 1.7;
   }
   
   .service-why-us {
     padding: 80px 0;
   }
   
   .service-why-us .section-title {
     font-size: 36px;
     font-weight: 700;
     text-align: center;
     margin-bottom: 60px;
     color: #333;
     text-transform: uppercase;
   }
   
   .why-us-item {
     text-align: center;
     padding: 20px;
   }
   
   .why-us-icon {
     font-size: 60px;
     margin-bottom: 20px;
   }
   
   .why-us-item h4 {
     font-size: 22px;
     font-weight: 700;
     color: #333;
     margin-bottom: 15px;
   }
   
   .why-us-item p {
     font-size: 16px;
     color: #666;
     line-height: 1.7;
   }
   
   .service-cta {
     padding: 80px 0;
     text-align: center;
   }
   
   .service-cta h3 {
     font-size: 32px;
     font-weight: 700;
     color: #333;
     margin-bottom: 30px;
   }
   
   .service-cta .btn-custom {
     padding: 15px 40px;
     font-size: 16px;
     border: none;
   }
   
   /* ==========================================
      DARK MODE STYLES
      ========================================== */
   body.dark-mode,
   body.dark-mode html {
     background-color: #121212 !important;
     color: #a0a0a0 !important;
   }
   
   body.dark-mode h2,
   body.dark-mode h3,
   body.dark-mode h4 {
     color: #e0e0e0 !important;
   }
   
   body.dark-mode a {
     color: #25d366;
   }
   
   body.dark-mode hr {
     background: #25d366;
   }
   
   body.dark-mode .dropdown-menu {
     background-color: #2b2b2b !important;
     border-color: #444 !important;
   }
   
   body.dark-mode .dropdown-menu li {
     color: #e0e0e0;
   }
   
   body.dark-mode .dropdown-menu li:hover {
     background-color: #444;
     color: #f8f8f8;
   }
   
   /* Navigation Dark Mode */
   body.dark-mode #menu.navbar-light {
     background-color: #1e1e1e !important;
     box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
   }
   
   body.dark-mode #menu a.navbar-brand {
     color: #f8f8f8 !important;
   }
   
   body.dark-mode #menu.navbar-light .navbar-nav .nav-link {
     color: #b0b0b0 !important;
   }
   
   body.dark-mode #menu.navbar-light .navbar-nav .nav-link:after,
   body.dark-mode .navbar-light .navbar-nav .nav-link.active:after {
     background: linear-gradient(to right, #1e7a46 0%, #3a976a 100%) !important;
   }
   
   body.dark-mode #menu.navbar-light .navbar-nav .nav-link.quote-btn {
     color: #25d366 !important;
   }
   
   /* About Dark Mode */
   body.dark-mode #about {
     background-color: #1e1e1e;
   }
   
   body.dark-mode .mission-vision-box {
     background: #2b2b2b;
   }
   
   body.dark-mode .mission-vision-box h2 {
     color: #f8f8f8;
   }
   
   body.dark-mode .mission-vision-text {
     color: #a0a0a0;
   }
   
   /* Contact Info Dark Mode */
   body.dark-mode #contactinfo {
     background-color: #1e1e1e;
   }
   
   body.dark-mode .contact-info-item {
     background: #2b2b2b !important;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
   }
   
   body.dark-mode .contact-info-item .contact-details h4 {
     color: #f8f8f8;
   }
   
   body.dark-mode .contact-info-item .contact-details p {
     color: #a0a0a0;
   }
   
   body.dark-mode .map-container {
     background-color: #2b2b2b;
     border: 2px solid #3a976a;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   }
   
   body.dark-mode .google-maps-section h3 {
     color: #e0e0e0;
   }
   
   /* Contact Form Dark Mode */
   body.dark-mode #contact .form-control {
     background-color: #333;
     color: #fff;
     border-color: #555;
   }
   
   body.dark-mode #contact .form-control:focus {
     border-color: #a0a0a0;
   }
   
   body.dark-mode .form-control::-webkit-input-placeholder,
   body.dark-mode .form-control:-moz-placeholder,
   body.dark-mode .form-control::-moz-placeholder,
   body.dark-mode .form-control:-ms-input-placeholder {
     color: #a0a0a0;
   }
   
   /* Footer Dark Mode */
   body.dark-mode #footer {
     background: #1e1e1e;
   }
   
   body.dark-mode #footer p {
     color: #a0a0a0;
   }
   
   body.dark-mode #footer a {
     color: #25d366;
   }
   
   body.dark-mode #footer a:hover {
     border-bottom: 2px solid #25d366;
   }
   
   /* Articles Dark Mode */
   body.dark-mode .articles-list-page {
     background: #1a1a1a;
   }
   
   body.dark-mode .articles-list-page .section-title h2 {
     color: #fff;
   }
   
   body.dark-mode .articles-list-page .section-title p {
     color: #bbb;
   }
   
   body.dark-mode .article-card {
     background: #2a2a2a;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
   }
   
   body.dark-mode .article-card:hover {
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
   }
   
   body.dark-mode .article-title {
     color: #fff;
   }
   
   body.dark-mode .article-description {
     color: #bbb;
   }
   
   body.dark-mode .article-date,
   body.dark-mode .article-read-time {
     color: #888;
   }
   
   body.dark-mode .article-category {
     background: rgba(139, 107, 183, 0.9);
   }
   
   /* Article Detail Dark Mode */
   body.dark-mode .article-page {
     background: #1a1a1a;
   }
   
   body.dark-mode .back-button {
     border-color: #8b6bb7;
     color: #8b6bb7;
   }
   
   body.dark-mode .back-button:hover {
     background: #8b6bb7;
     color: #fff;
   }
   
   body.dark-mode .article-main-title {
     color: #fff;
   }
   
   body.dark-mode .article-main-subtitle {
     color: #8b6bb7;
   }
   
   body.dark-mode .article-author {
     color: #bbb;
   }
   
   body.dark-mode .article-content {
     color: #ccc;
   }
   
   body.dark-mode .article-content h3 {
     color: #fff;
     border-bottom-color: #8b6bb7;
   }
   
   body.dark-mode .article-content h4 {
     color: #8b6bb7;
   }
   
   body.dark-mode .article-content blockquote {
     background: #2a2a2a;
     color: #bbb;
     border-left-color: #8b6bb7;
   }
   
   body.dark-mode .article-share-top,
   body.dark-mode .article-share-bottom {
     border-color: #333;
   }
   
   body.dark-mode .share-label {
     color: #bbb;
   }
   
   body.dark-mode .related-articles {
     background: #0f0f0f;
   }
   
   body.dark-mode .related-articles .section-title {
     color: #fff;
   }
   
   body.dark-mode .related-article-card {
     background: #2a2a2a;
   }
   
   body.dark-mode .related-article-title {
     color: #fff;
   }
   
   body.dark-mode .related-article-description {
     color: #bbb;
   }
   
   /* Services Dark Mode */
   body.dark-mode .services-page {
     background: #1a1a1a;
   }
   
   body.dark-mode .services-page .section-title h2 {
     color: #fff;
   }
   
   body.dark-mode .services-page .section-title p {
     color: #bbb;
   }
   
   body.dark-mode .service-card {
     background: #2a2a2a;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
   }
   
   body.dark-mode .service-card:hover {
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
   }
   
   body.dark-mode .service-card-title {
     color: #fff;
   }
   
   body.dark-mode .service-card-description {
     color: #bbb;
   }
   
   body.dark-mode .service-sub-item {
     color: #ccc;
   }
   
   body.dark-mode .service-detail-page {
     background: #1a1a1a;
   }
   
   body.dark-mode .service-detail-title {
     color: #fff;
   }
   
   body.dark-mode .service-detail-description {
     color: #bbb;
   }
   
   body.dark-mode .sub-service-card {
     background: #2a2a2a;
   }
   
   body.dark-mode .sub-service-title {
     color: #fff;
   }
   
   body.dark-mode .sub-service-description {
     color: #bbb;
   }
   
   body.dark-mode .why-us-item h4 {
     color: #fff;
   }
   
   body.dark-mode .why-us-item p {
     color: #bbb;
   }
   
   body.dark-mode .service-cta h3 {
     color: #fff;
   }
   
   /* ==========================================
      RESPONSIVE STYLES
      ========================================== */
   @media (max-width: 768px) {
     .about-hero-full {
       height: 250px;
       margin-left: -15px;
       margin-right: -15px;
       width: calc(100% + 30px);
     }
   
     .mission-vision-box {
       margin-bottom: 30px;
     }
   
     .mission-vision-box h2 {
       font-size: 24px;
     }
   
     .contact-info-item {
       padding: 30px 15px;
       margin-bottom: 20px;
     }
   
     .contact-info-item .contact-icon {
       width: 60px;
       height: 60px;
     }
   
     .contact-info-item .contact-icon i {
       font-size: 24px;
     }
   
     .contact-info-item .contact-details h4 {
       font-size: 18px;
     }
   
     .contact-info-item .contact-details p {
       font-size: 14px;
     }
   
     #contactinfo .section-title p {
       font-size: 14px;
       padding: 0 15px;
     }
   
     /* Articles Responsive */
     .articles-list-page .section-title h2 {
       font-size: 32px;
     }
   
     .article-image {
       height: 200px;
     }
   
     .article-content {
       padding: 20px;
     }
   
     .article-title {
       font-size: 16px;
     }
   
     .article-subtitle {
       font-size: 13px;
     }
   
     .article-description {
       font-size: 13px;
       -webkit-line-clamp: 3;
     }
   
     .article-main-title {
       font-size: 28px;
     }
   
     .article-main-subtitle {
       font-size: 18px;
     }
   
     .article-content {
       font-size: 16px;
     }
   
     .article-content h3 {
       font-size: 22px;
     }
   
     .article-content h4 {
       font-size: 18px;
     }
   
     .article-meta {
       gap: 10px;
     }
   
     .related-article-image {
       height: 180px;
     }
   
     /* Services Responsive */
     .services-page .section-title h2 {
       font-size: 32px;
     }
   
     .service-card-image {
       height: 200px;
     }
   
     .service-card-title {
       font-size: 20px;
     }
   
     .service-header-icon {
       font-size: 60px;
     }
   
     .service-detail-title {
       font-size: 32px;
     }
   
     .service-sub-services .section-title,
     .service-why-us .section-title {
       font-size: 28px;
     }
   
     .service-cta h3 {
       font-size: 24px;
     }
   }
   
   @media (max-width: 480px) {
     .articles-list-page .section-title h2 {
       font-size: 28px;
     }
   
     .article-image {
       height: 180px;
     }
   
     .article-content {
       padding: 15px;
     }
   
     .article-title {
       font-size: 15px;
     }
   
     .article-main-title {
       font-size: 24px;
     }
   
     .article-main-subtitle {
       font-size: 16px;
     }
   
     .article-content {
       font-size: 15px;
     }
   
     .share-btn {
       width: 40px;
       height: 40px;
       font-size: 16px;
     }
   
     .services-page .section-title h2 {
       font-size: 28px;
     }
   
     .service-card-content {
       padding: 20px;
     }
   
     .service-card-title {
       font-size: 18px;
     }
   
     .service-detail-title {
       font-size: 28px;
     }
   
     .service-header-icon {
       font-size: 50px;
     }
   }

   