 /* ========================================
           CSS VARIABLES & RESET
           ======================================== */
 :root {
   --primary: #0D6E6E;
   --primary-light: #14919B;
   --primary-dark: #0A5555;
   --secondary: #F5E6D3;
   --accent: #E8505B;
   --accent-alt: #F9A826;
   --text-primary: #2C3E50;
   --text-secondary: #5D6D7E;
   --white: #FFFFFF;
   --light-bg: #F8F9FA;
   --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
   --transition: all 0.3s ease-in-out;
   --border-radius: 12px;
   --border-radius-sm: 8px;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: 'Poppins', sans-serif;
   color: var(--text-primary);
   line-height: 1.6;
   overflow-x: hidden;
   background-color: var(--white);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   font-family: 'Playfair Display', serif;
   font-weight: 600;
   line-height: 1.2;
 }

 a {
   text-decoration: none;
   color: inherit;
 }

 ul {
   list-style: none;
 }

 img {
   max-width: 100%;
   height: auto;
 }

 .container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 }

 /* ========================================
           NAVIGATION
           ======================================== */
 .navbar {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   z-index: 1000;
   padding: 15px 0;
   transition: var(--transition);
   background: transparent;
 }

 .navbar.scrolled {
   background: var(--white);
   box-shadow: var(--shadow);
   padding: 10px 0;
 }

 .navbar .container {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .logo-icon {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, var(--primary), var(--primary-light));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 24px;
   font-weight: 700;
   font-family: 'Playfair Display', serif;
 }

 .logo-text {
   font-family: 'Playfair Display', serif;
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--white);
   transition: var(--transition);
 }

 .navbar.scrolled .logo-text {
   color: var(--primary-dark);
 }

 .logo-text span {
   display: block;
   font-size: 0.7rem;
   font-family: 'Poppins', sans-serif;
   font-weight: 400;
   letter-spacing: 1px;
   text-transform: uppercase;
 }

 .nav-links {
   display: flex;
   align-items: center;
   gap: 30px;
 }

 .nav-link {
   color: var(--white);
   font-weight: 500;
   position: relative;
   padding: 8px 0;
   transition: var(--transition);
 }

 .navbar.scrolled .nav-link {
   color: var(--text-primary);
 }

 .nav-link::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--accent);
   transition: var(--transition);
 }

 .nav-link:hover::after {
   width: 100%;
 }

 .nav-link:hover {
   color: var(--accent);
 }

 .dropdown {
   position: relative;
 }

 .dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: var(--white);
   min-width: 200px;
   box-shadow: var(--shadow);
   border-radius: var(--border-radius-sm);
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: var(--transition);
   padding: 10px 0;
 }

 .dropdown:hover .dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }

 .dropdown-menu a {
   display: block;
   padding: 10px 20px;
   color: var(--text-primary);
   transition: var(--transition);
 }

 .dropdown-menu a:hover {
   background: var(--secondary);
   color: var(--primary);
 }

 .mobile-toggle {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   padding: 10px;
 }

 .mobile-toggle span {
   width: 25px;
   height: 3px;
   background: var(--white);
   transition: var(--transition);
   border-radius: 3px;
 }

 .navbar.scrolled .mobile-toggle span {
   background: var(--primary-dark);
 }

 /* ========================================
           MOBILE MENU
           ======================================== */
 .mobile-menu {
   position: fixed;
   top: 0;
   right: -100%;
   width: 80%;
   max-width: 350px;
   height: 100vh;
   background: var(--white);
   z-index: 1001;
   padding: 80px 30px 30px;
   transition: var(--transition);
   box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
 }

 .mobile-menu.active {
   right: 0;
 }

 .mobile-menu-close {
   position: absolute;
   top: 20px;
   right: 20px;
   background: none;
   border: none;
   font-size: 28px;
   cursor: pointer;
   color: var(--text-primary);
 }

 .mobile-menu a {
   display: block;
   padding: 15px 0;
   color: var(--text-primary);
   font-weight: 500;
   border-bottom: 1px solid rgba(0, 0, 0, 0.1);
   transition: var(--transition);
 }

 .mobile-menu a:hover {
   color: var(--primary);
   padding-left: 10px;
 }

 .mobile-dropdown {
   position: relative;
 }

 .mobile-dropdown-toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .mobile-dropdown-menu {
   display: none;
   padding-left: 20px;
 }

 .mobile-dropdown-menu.active {
   display: block;
 }

 .mobile-overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 1000;
   opacity: 0;
   visibility: hidden;
   transition: var(--transition);
 }

 .mobile-overlay.active {
   opacity: 1;
   visibility: visible;
 }

 /* ========================================
           HERO SECTION
           ======================================== */
 .hero {
   position: relative;
   height: 70vh;
   min-height: 500px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, rgba(13, 110, 110, 0.95), rgba(10, 85, 85, 0.85)),
     url('https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=1920&q=80');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   padding-top: 80px;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></svg>');
   background-size: 200px 200px;
   opacity: 0.5;
 }

 .hero-content {
   position: relative;
   z-index: 10;
   text-align: center;
   color: var(--white);
   max-width: 800px;
   padding: 0 20px;
 }

 .hero-content h1 {
   font-size: 3.5rem;
   margin-bottom: 20px;
   animation: fadeInUp 0.8s ease-out;
 }

 .hero-content p {
   font-size: 1.2rem;
   margin-bottom: 30px;
   opacity: 0.9;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
   animation: fadeInUp 0.8s ease-out 0.2s both;
 }

 .breadcrumb {
   display: flex;
   justify-content: center;
   gap: 10px;
   font-size: 1rem;
   animation: fadeInUp 0.8s ease-out 0.4s both;
 }

 .breadcrumb a {
   opacity: 0.8;
   transition: var(--transition);
 }

 .breadcrumb a:hover {
   opacity: 1;
   color: var(--accent);
 }

 .breadcrumb span {
   opacity: 0.6;
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* ========================================
           SECTION STYLES
           ======================================== */
 section {
   padding: 100px 0;
 }

 .section-header {
   text-align: center;
   margin-bottom: 60px;
 }

 .section-header .subtitle {
   color: var(--primary);
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 0.9rem;
   margin-bottom: 10px;
 }

 .section-header h2 {
   font-size: 2.5rem;
   color: var(--text-primary);
   margin-bottom: 15px;
   position: relative;
   display: inline-block;
 }

 .section-header h2::before {
   content: '';
   position: absolute;
   top: -15px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 4px;
   background: linear-gradient(90deg, var(--accent), var(--accent-alt));
   border-radius: 2px;
 }

 .section-header p {
   color: var(--text-secondary);
   max-width: 600px;
   margin: 0 auto;
 }

 /* ========================================
           ABOUT SECTION
           ======================================== */
 .about-section {
   background: var(--light-bg);
 }

 .about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
 }

 .about-image {
   position: relative;
 }

 .about-image img {
   border-radius: var(--border-radius);
   box-shadow: var(--shadow);
 }

 .about-image::before {
   content: '';
   position: absolute;
   top: -30px;
   left: -30px;
   width: 100%;
   height: 100%;
   border: 3px solid var(--primary);
   border-radius: var(--border-radius);
   z-index: -1;
 }

 .about-content h2 {
   font-size: 2.5rem;
   margin-bottom: 20px;
   color: var(--text-primary);
 }

 .about-content h2 span {
   color: var(--primary);
 }

 .about-content p {
   color: var(--text-secondary);
   margin-bottom: 20px;
   font-size: 1.05rem;
 }

 .about-features {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-top: 30px;
 }

 .about-feature {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .about-feature-icon {
   width: 45px;
   height: 45px;
   background: linear-gradient(135deg, var(--primary), var(--primary-light));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--white);
   font-size: 18px;
   flex-shrink: 0;
 }

 .about-feature span {
   font-weight: 500;
   color: var(--text-primary);
 }

 /* ========================================
           STATS SECTION
           ======================================== */
 .stats-section {
   background: linear-gradient(135deg, var(--primary-dark), var(--primary));
   position: relative;
   overflow: hidden;
 }

 .stats-section::before {
   content: '';
   position: absolute;
   top: -50%;
   right: -20%;
   width: 60%;
   height: 200%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
   background-size: 300px 300px;
   transform: rotate(30deg);
 }

 .stats-section .section-header h2,
 .stats-section .section-header p,
 .stats-section .section-header .subtitle {
   color: var(--white);
 }

 .stats-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 40px;
   text-align: center;
 }

 .stat-item {
   position: relative;
   z-index: 10;
 }

 .stat-number {
   font-size: 3.5rem;
   font-weight: 700;
   font-family: 'Playfair Display', serif;
   color: var(--white);
   margin-bottom: 10px;
 }

 .stat-label {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, 0.8);
   font-weight: 500;
 }

 /* ========================================
           VALUES SECTION
           ======================================== */
 .values-section {
   background: var(--white);
 }

 .values-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
 }

 .value-card {
   background: var(--light-bg);
   padding: 40px 30px;
   border-radius: var(--border-radius);
   text-align: center;
   transition: var(--transition);
 }

 .value-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow);
 }

 .value-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, var(--primary), var(--primary-light));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 25px;
   font-size: 32px;
   color: var(--white);
 }

 .value-card h3 {
   font-size: 1.5rem;
   margin-bottom: 15px;
   color: var(--text-primary);
 }

 .value-card p {
   color: var(--text-secondary);
   font-size: 0.95rem;
 }

 /* ========================================
           CTA SECTION
           ======================================== */
 .cta-section {
   background: linear-gradient(135deg, var(--accent), #d63d49);
   position: relative;
   overflow: hidden;
 }

 .cta-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
   background-size: 200px 200px;
 }

 .cta-content {
   position: relative;
   z-index: 10;
   text-align: center;
   color: var(--white);
 }

 .cta-content h2 {
   font-size: 2.5rem;
   margin-bottom: 20px;
   color: var(--white);
 }

 .cta-content p {
   font-size: 1.1rem;
   margin-bottom: 30px;
   opacity: 0.9;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
 }

 .btn {
   display: inline-block;
   padding: 15px 35px;
   border-radius: var(--border-radius-sm);
   font-weight: 600;
   font-size: 1rem;
   transition: var(--transition);
   cursor: pointer;
   border: none;
 }

 .btn-white {
   background: var(--white);
   color: var(--accent);
 }

 .btn-white:hover {
   background: var(--light-bg);
   transform: translateY(-3px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 /* ========================================
           FADE IN ANIMATION
           ======================================== */
 .fade-in-section {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }

 .fade-in-section.visible {
   opacity: 1;
   transform: translateY(0);
 }

 .fade-in-left {
   opacity: 0;
   transform: translateX(-50px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }

 .fade-in-left.visible {
   opacity: 1;
   transform: translateX(0);
 }

 .fade-in-right {
   opacity: 0;
   transform: translateX(50px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }

 .fade-in-right.visible {
   opacity: 1;
   transform: translateX(0);
 }

 .fade-in-up {
   opacity: 0;
   transform: translateY(50px);
   transition: opacity 0.8s ease-out, transform 0.8s ease-out;
 }

 .fade-in-up.visible {
   opacity: 1;
   transform: translateY(0);
 }

 /* ========================================
           FOOTER STYLES
           ======================================== */
 .footer {
   background: var(--text-primary);
   color: var(--white);
   padding: 80px 0 30px;
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
   gap: 50px;
   margin-bottom: 50px;
 }

 .footer .logo {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 20px;
 }

 .footer .logo-icon {
   width: 45px;
   height: 45px;
   background: linear-gradient(135deg, var(--primary), var(--primary-light));
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .footer .logo-icon svg {
   width: 24px;
   height: 24px;
   fill: var(--white);
 }

 .footer .logo-text {
   font-family: 'Playfair Display', serif;
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--white);
 }

 .footer-about p {
   color: rgba(255, 255, 255, 0.7);
   line-height: 1.8;
   margin-bottom: 25px;
 }

 .footer-social {
   display: flex;
   gap: 12px;
 }

 .footer-social a {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: var(--transition);
 }

 .footer-social a:hover {
   background: var(--primary);
   transform: translateY(-3px);
 }

 .footer-social svg {
   width: 18px;
   height: 18px;
   fill: var(--white);
 }

 .footer-links h4,
 .footer-contact h4 {
   font-size: 1.1rem;
   color: var(--white);
   margin-bottom: 25px;
   position: relative;
   padding-bottom: 15px;
 }

 .footer-links h4::after,
 .footer-contact h4::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 40px;
   height: 3px;
   background: var(--accent);
   border-radius: 2px;
 }

 .footer-links a {
   display: block;
   color: rgba(255, 255, 255, 0.7);
   padding: 8px 0;
   transition: var(--transition);
   font-size: 0.95rem;
 }

 .footer-links a:hover {
   color: var(--white);
   padding-left: 8px;
 }

 .footer-contact p {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 18px;
   line-height: 1.6;
 }

 .footer-contact svg {
   width: 20px;
   height: 20px;
   fill: var(--primary-light);
   flex-shrink: 0;
   margin-top: 3px;
 }

 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 30px;
   text-align: center;
 }

 .footer-bottom p {
   color: rgba(255, 255, 255, 0.5);
   font-size: 0.9rem;
 }

 /* ========================================
           BACK TO TOP BUTTON
           ======================================== */
 .back-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   background: var(--primary);
   color: var(--white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px);
   transition: var(--transition);
   z-index: 999;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
 }

 .back-to-top.visible {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }

 .back-to-top:hover {
   background: var(--primary-dark);
   transform: translateY(-5px);
 }

 /* ========================================
           RESPONSIVE STYLES
           ======================================== */
 @media (max-width: 1024px) {
   .about-grid {
     grid-template-columns: 1fr;
     gap: 40px;
   }

   .about-image {
     order: -1;
   }

   .values-grid {
     grid-template-columns: repeat(2, 1fr);
   }

   .stats-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 30px;
   }

   .footer-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
   }
 }

 @media (max-width: 768px) {
   section {
     padding: 60px 0;
   }

   .nav-links {
     display: none;
   }

   .mobile-toggle {
     display: flex;
   }

   .hero {
     height: 60vh;
     min-height: 400px;
   }

   .hero-content h1 {
     font-size: 2.5rem;
   }

   .section-header h2 {
     font-size: 2rem;
   }

   .about-content h2 {
     font-size: 2rem;
   }

   .about-features {
     grid-template-columns: 1fr;
   }

   .values-grid {
     grid-template-columns: 1fr;
   }

   .stats-grid {
     grid-template-columns: 1fr;
     gap: 25px;
   }

   .stat-number {
     font-size: 2.5rem;
   }

   /* Footer Responsive */
   .footer {
     padding: 50px 0 25px;
   }

   .footer-grid {
     grid-template-columns: 1fr;
     gap: 35px;
   }

   .footer-about {
     text-align: center;
   }

   .footer .logo {
     justify-content: center;
   }

   .footer-social {
     justify-content: center;
   }

   .footer-links h4,
   .footer-contact h4 {
     text-align: center;
   }

   .footer-links h4::after,
   .footer-contact h4::after {
     left: 50%;
     transform: translateX(-50%);
   }

   .footer-links a {
     text-align: center;
   }

   .footer-contact p {
     justify-content: center;
     text-align: center;
   }

   .footer-bottom p {
     font-size: 0.85rem;
   }
 }

 @media (max-width: 480px) {
   .hero-content h1 {
     font-size: 2rem;
   }

   .hero-content p {
     font-size: 1rem;
   }

   .section-header h2 {
     font-size: 1.7rem;
   }

   .cta-content h2 {
     font-size: 1.8rem;
   }

   .stat-number {
     font-size: 2rem;
   }
 }