@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

/* ================= VARIABLES ================= */

:root {
  --white: #ffffff;
  --black: #002941;
  --Font: #27292B;
  --light: #ffffff;
  --dark: #002941;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.12);
  --primary: #002941;
  --primary-600: #002941;
  --accent: #3d876a;
  --bg: #ffffff;
  --bg-alt: #000000;
  --radius: 14px;
  --blue: #3d876a;
  --section-white: #e1e1e1;
}

/* ================= BASE ================= */

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

nav {
  padding: 0.6rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--light);

  box-shadow:
    rgba(50, 50, 93, 0.15) 0 0.1rem 0.3rem,
    rgba(0, 0, 0, 0.2) 0 0.1rem 0.2rem;

  position: sticky;
  top: 0;
  z-index: 10;
}

/* ===== Logo ===== */

nav .logo {
  display: flex;
  align-items: center;
  margin: 1.1rem;
}

nav .logo img {
  height: clamp(2.5rem, 5vw, 4rem);
  width: auto;
}

/* ===== Menu Desktop ===== */

nav ul {
  list-style: none;
  display: flex;
  align-items: center;

  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: clamp(1rem, 3vw, 4rem);
}

nav ul li a {
  text-decoration: none;
  color: var(--dark);

  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 400;

  padding: 0.3em 0.6em;
  border-radius: 0.3rem;

  transition: background 0.3s ease;
}

nav ul li a:hover {
  background: rgba(15, 23, 42, 0.04);
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 1.6rem;
  height: 0.12rem;

  background: var(--dark);

  display: block;
  margin: 0.35rem auto;

  transition: all 0.3s ease-in-out;
}

/* Animation */

.hamburger-active {
  transform: rotate(45deg);
  transition: 0.3s;
}

.hamburger-active .line:nth-child(2) {
  width: 0;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(0.5rem);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-0.5rem) rotate(90deg);
}

/* ================= MOBILE MENU ================= */

.menubar {
  position: fixed;
  top: 0;
  left: -70%;
  width: 70%;
  height: 100vh;
  padding: 2rem;
  background: var(--light);
  transition: left 0.4s ease;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  z-index: 20;
}

.menubar.active {
  left: 0;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  box-shadow: rgba(0, 0, 0, 0.2) 0 0 1rem;
}

.menubar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menubar ul li {
  margin-bottom: 2rem;
}

.menubar ul li a {
  text-decoration: none;
  color: var(--primary);

  font-size: clamp(1.1rem, 2vw, 1.4rem);

  padding: 0.4em 0.8em;
  border-radius: 0.4rem;

  transition: background 0.3s;
}

.menubar ul li a:hover {
  background: rgba(15, 23, 42, 0.04);
}

/* ================= LANGUAGE SWITCHER ================= */

.language-switcher {
  margin-left: clamp(1rem, 2vw, 2rem);
}

.lang-btn {
  background: var(--blue);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 45px;
}

.lang-btn:hover {
  background: #1a8f47;
  transform: translateY(-1px);
}

.lang-btn:active {
  transform: translateY(0);
}

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

@media (max-width: 790px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ================= LAYOUT HELPERS ================= */

.container {
  width: 75%;
  max-width: 1120px;
  margin-inline: auto;
}

.sections-wrapper {
  padding-top: 0.5rem;
}

/* ================= U-SHAPED SECTION SEPARATORS ================= */

.u-bottom {
  position: relative;
  overflow: hidden;
  --u-size: clamp(80px, 10vw, 140px);
  padding-bottom: calc(var(--u-size) + 2rem);
  margin-bottom: calc(var(--u-size) * -1);
}

.u-bottom::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 140%;
  height: var(--u-size);
  background: var(--u-next-bg, var(--bg));
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  box-shadow: 0 -14px 30px rgba(15, 23, 42, 0.06);
  z-index: 0;
}

.u-bottom > * {
  position: relative;
  z-index: 1;
}

.u-next-white {
  --u-next-bg: var(--bg);
}

.u-next-alt {
  --u-next-bg: var(--bg-alt);
}

/* ================= U-SHAPED SECTION SEPARATORS ================= */

.u-curve {
  position: relative;
  padding-bottom: calc(var(--u-size) + 2rem);
  overflow: hidden;
}

.u-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: var(--u-size);
  pointer-events: none;
  z-index: 0;
}

.u-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.u-divider path {
  fill: var(--bg);
}

.u-curve > .container {
  position: relative;
  z-index: 1;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid var(--blue);
  background: #ffffff;
  color: var(--blue);
  cursor: pointer;
  user-select: none;
}

.btn:hover {
  background: var(--blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

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

.btn-primary:hover {
  background: var(--blue);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: #ffffff;
}

.btn-ghost {
  background: #ffffff;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-ghost:hover {
  background: var(--blue);
  color: #ffffff;
}

/* ================= SECTION ================= */
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

/* BASE SECTIONS */
.section {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section h1,
.section h2 {
    letter-spacing: -0.02em;
}

.section p {
    color: var(--muted);
    line-height: 1.75;
}

/* INTRODUCTION */
.introduction {
    background: var(--black);
    text-align: center;
    padding-top: clamp(2rem, 6vw, 4rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
    --u-fill: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.introduction::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/introduction.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
}

.introduction::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(15, 32, 41, 0.3) 0%, transparent 30%),
        linear-gradient(0deg, rgba(15, 32, 41, 0.2) 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}


.intro-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.intro-content h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.intro-content::before {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #64b5f6, transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* ABOUT */
.section.about {
    background: var(--bg);
    padding-top: clamp(5rem, 8vw, 7rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(3rem, 5vw, 4rem);
}

.about-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--black);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.68);
    text-align: center;
    margin-bottom: 2rem;
}

.about-text .btn {
    margin-top: 2rem;
}

.about-media img {
    width: clamp(200px, 25vw, 400px);
    height: clamp(200px, 25vw, 400px);
    border-radius: 50%;
    border: 1px solid var(--border);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    object-fit: cover;
    object-position: center;
}

.about-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SERVICES */
.services {
    background: red;
    padding-top: clamp(5rem, 8vw, 7rem);
    padding-bottom: clamp(5rem, 7vw, 6rem);
    --u-fill: red;
}

.services .section-head h2 {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    padding-bottom: 2rem;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    min-height: 180px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.service-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.section-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3.5rem;
}

.services-grid .section-cta {
    grid-column: 2;
    margin-top: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.service-icon i {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    transition: all 0.3s ease;
    opacity: 0.9;
}

/* CONTACT */
.contact {
    background: var(--bg);
    padding-top: clamp(3.5rem, 7vw, 6rem);
    padding-bottom: clamp(3.5rem, 7vw, 6rem);
    --u-fill: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    order: unset;
}

.contact-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--black);
    text-align: left;
}

.contact-text p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 0 2rem 0;
    text-align: left;
}


.contact-email {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--black);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    font-weight: 600;
}

.contact-form-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.contact-form .form-item.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-item.fields.name {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--black);
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
}


.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--blue);
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

.form-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0.8rem;
}

.contact-submit {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 2px solid var(--blue);
    background: #ffffff;
    color: var(--blue);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.15);
}

.contact-submit:hover {
    background: var(--blue);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.25);
}

.contact-submit:active {
    transform: translateY(1px);
}

/* ================= PAGE HERO SECTIONS ================= */

.page-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a6f 100%);
    padding: clamp(2rem, 5vw, 3rem) 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="70" cy="70" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
    background-size: 200px 200px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -10px) rotate(1deg); }
    66% { transform: translate(-5px, 5px) rotate(-1deg); }
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-hero-subtitle,
.section-title {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.page-hero-subtitle span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.8rem 3%;
    }
    
    nav .logo img {
        height: clamp(2rem, 6vw, 3rem);
    }
    
    nav ul li {
        margin-left: clamp(0.5rem, 2vw, 1.5rem);
    }
    
    nav ul li a {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        padding: 0.2em 0.4em;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Hero Sections */
    .page-hero {
        padding: clamp(1.5rem, 8vw, 2.5rem) 0;
    }
    
    .page-hero h1 {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 0.8rem;
    }
    
    .page-hero-subtitle {
        padding: 0.4rem 1.2rem;
    }
    
    .page-hero-subtitle span {
        font-size: 0.9rem;
    }

    .introduction {
        min-height: 65vh;
    }

    .introduction::before {
        background-attachment: scroll;
        background-position: center;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-card .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .service-card .service-features {
        margin: 1rem 0;
    }
    
    .service-card .service-features li {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card .btn {
        margin-top: 1rem;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        min-width: 120px;
    }
    
    /* Service Detail Sections */
    .service-detail {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detail-text h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .service-detail-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .service-detail-text .service-features {
        margin-bottom: 1.5rem;
    }
    
    .service-detail-text .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        padding-left: 1.5rem;
    }
    
    .service-detail-text .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .service-detail-image {
        text-align: center;
    }
    
    .service-detail-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 12px;
    }
    
    .service-icon-large {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .service-icon-large i {
        font-size: 3rem;
        color: var(--blue);
    }
    
    /* About Page */
    .about-text h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .about-media {
        text-align: center;
        margin-top: 2rem;
    }
    
    .about-media img {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 12px;
    }
    
    /* Pillars Grid */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pillar-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .pillar-icon {
        margin-bottom: 1rem;
    }
    
    .pillar-icon i {
        font-size: 2.5rem;
    }
    
    .pillar-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .pillar-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        font-size: 0.9rem;
    }
    
    /* Contact Page */
    .contact-text h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .contact-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .contact-submit {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-info-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    /* FAQ Page */
    .faq-container {
        max-width: 100%;
    }
    
    .faq-category h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Privacy & Terms Pages */
    .privacy-container,
    .terms-container {
        max-width: 100%;
    }
    
    .privacy-section h2,
    .terms-section h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .privacy-section h3,
    .terms-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .privacy-section p,
    .terms-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .privacy-section ul,
    .terms-section ul {
        margin-bottom: 1rem;
    }
    
    .privacy-section li,
    .terms-section li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        padding-left: 1.5rem;
    }
    
    /* Footer */
    .footer-grid {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }
    
    .footer-logo img {
        height: clamp(2rem, 6vw, 3rem);
    }
    
    .footer-sections {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul li a::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul li a:hover {
        transform: none;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-column ul {
        gap: 0.5rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
    
    .footer-social a {
        font-size: 1.5rem;
    }

    .footer-legal-section {
        padding: 1.5rem;
    }

    .footer-legal-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-legal-bottom a::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Mobile Menu */
    .menubar {
        width: 80%;
        left: -80%;
    }
    
    .menubar ul li {
        margin-bottom: 1.5rem;
    }
    
    .menubar ul li a {
        font-size: clamp(1rem, 3vw, 1.2rem);
        padding: 0.6rem 1rem;
    }
    
    /* Language Switcher */
    .lang-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* General Typography */
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: clamp(2rem, 6vw, 3rem) 0;
    }
    
    h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        
    }
    
    h3 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Buttons */
    .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-card .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .service-card .service-features li {
        font-size: 0.8rem;
    }
    
    .page-hero {
        padding: clamp(1rem, 10vw, 2rem) 0;
    }
    
    .page-hero h1 {
        font-size: clamp(1.3rem, 6vw, 2rem);
    }
    
    .page-hero-subtitle {
        padding: 0.3rem 1rem;
    }
    
    .page-hero-subtitle span {
        font-size: 0.8rem;
    }
}

/* ================= SERVICES GRID ================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
}

/* 5-service layout for desktop */
@media (min-width: 1025px) {
    .services .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        margin: 0 auto 3rem;
        max-width: 1400px;
    }
}

/* Tablet layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .services .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin: 0 auto 2rem;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    .services .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto 2rem;
    }
}

/* Services Section CTA Button */
.services .section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Reduce gap for about-cta section */
#about-cta.section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.services .section-cta .btn {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    min-width: 220px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.services .section-cta .btn:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

/* Responsive button adjustments */
@media (max-width: 768px) {
    .services .section-cta .btn {
        font-size: 0.9rem;
        padding: 0.8rem 2rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .services .section-cta .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
        min-width: 160px;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), #1e3a6f);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card .service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-card .service-features li {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card .service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}

.service-card .btn {
    margin-top: 1.5rem;
    min-width: 140px;
}

/* Responsive for services grid */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
}

/* ================= SERVICE DETAIL PAGE ================= */

.service-detail {
    background: red;
    padding-top: clamp(4rem, 6vw, 6rem);
    padding-bottom: clamp(4rem, 6vw, 6rem);
}

.service-detail.u-curve {
    background: var(--section-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(3rem, 5vw, 4rem);
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse .service-detail-text {
    direction: ltr;
}

.service-detail-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--blue);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.service-icon-large i {
    font-size: 2rem;
    color: #ffffff;
}

.service-detail-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-detail-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
}

.service-detail-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Active navigation state */
.site-nav a.active {
    color: var(--blue);
    font-weight: 600;
}

/* Responsive for service detail page */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-reverse {
        direction: ltr;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .service-detail-image img {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .service-detail {
        padding-top: clamp(3rem, 5vw, 4rem);
        padding-bottom: clamp(3rem, 5vw, 4rem);
    }
    
    .service-detail-text h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .service-detail-text p {
        font-size: 1rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.5rem;
    }
    
    .service-detail-image img {
        max-width: 100%;
    }
}

/* ================= FAQ PAGE ================= */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--blue);
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(44, 90, 160, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.faq-question i {
    color: var(--blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ================= TERMS & PRIVACY PAGES ================= */

.terms-container,
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section,
.privacy-section {
    margin-bottom: 3rem;
}

.terms-section h2,
.privacy-section h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.terms-section p,
.privacy-section p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.terms-section ul,
.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-section li,
.privacy-section li {
    margin-bottom: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.terms-section strong,
.privacy-section strong {
    color: var(--black);
}

.contact-info {
    background: rgba(44, 90, 160, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--black);
}

/* ================= ABOUT PAGE ================= */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 150px;
}

/* Responsive for about page */
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-card {
        padding: 2rem;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
    }
    
    .pillar-icon i {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* TEAM PAGE ================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--blue);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    line-height: 1.6;
}

.mission-values {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mission-values li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.mission-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.address-info {
    background: rgba(44, 90, 160, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.address-info h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
}

.address-info p {
    color: var(--black);
    margin: 0.25rem 0;
}

.directions-link {
    margin-top: 2rem;
}

/* ================= CONTACT PAGE ================= */

.contact-info {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--blue);
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 0.25rem 0;
}

.contact-item a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

#service-field {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--black);
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    outline: none;
    background: transparent;
    transition: border-color 0.3s ease;
    margin-bottom: 0.5rem;
}

#service-field:focus {
    border-bottom-color: var(--blue);
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-category h2 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.4rem;
    }
}

/* FOOTER */
.site-footer {
    padding: 2.5rem 0;
    background: var(--Font );
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    justify-content: space-between;
    text-align: left;
    gap: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.footer-sections {
    display: flex;
    gap: 4rem;
    justify-content: flex-start;
    text-align: left;
    align-items: flex-start;
    flex: 1 1 auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-legal-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 100%;
}

.footer-legal-bottom {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

.footer-legal-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal-bottom a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.footer-legal-bottom a:hover {
    color: #ffffff;
}

.footer-legal-bottom a:hover::before {
    width: 100%;
}

.footer-social-bottom {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-sections {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-column {
    align-items: center;
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column ul li a::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column ul li a:hover {
    transform: none;
  }

  .footer-legal-section {
    padding: 1.5rem;
  }

  .footer-legal-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal-bottom a::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-column ul li a.fa-instagram {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin: 0 auto;
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "Font Awesome 4 Brands", sans-serif;
    position: relative;
    line-height: 1;
}

.footer-column ul li a.fa-instagram::before {
    content: "\f16d";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-column ul li a.fa-instagram:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ================= INSTAGRAM SECTION ================= */

.footer-column ul li .instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li .instagram-link:hover {
    transform: translateY(-2px);
}

.instagram-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.instagram-link:hover .instagram-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.instagram-link .fab.fa-instagram {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "Font Awesome 4 Brands", sans-serif;
}

.about-content-centered {
    text-align: center;
    padding: 2rem;
}

.about-content-centered h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 3rem;
    text-align: center;
}

.pillar-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.pillar-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
}

.pillar-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin: 0;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-content-centered {
        padding: 1.5rem;
    }
    
    .about-content-centered h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .pillar-item {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .pillar-item h4 {
        font-size: 1.3rem;
    }
    
    .pillar-item p {
        font-size: 0.9rem;
    }
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.services-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.service-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.service-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.service-section ul li {
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--blue);
    font-weight: bold;
    font-size: 1.1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-section ul li:hover {
    color: var(--blue);
    transform: translateX(5px);
}

.service-section ul li:hover::before {
    background: var(--blue);
    color: white;
    transform: scale(1.1);
}

/* Responsive for Services Page */
@media (max-width: 768px) {
    .services-content {
        padding: 2rem 0;
    }
    
    .services-content h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .service-section {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }
    
    .service-section h3 {
        font-size: 1.5rem;
    }
    
    .service-section ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-content {
        padding: 1.5rem 0;
    }
    
    .services-content h2 {
        font-size: 1.8rem;
    }
    
    .service-section {
        margin-bottom: 2rem;
        padding: 1rem;
    }
    
    .service-section h3 {
        font-size: 1.3rem;
    }
    
    .service-section ul li {
        font-size: 0.9rem;
    }
}

/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 1200px) {
    .container {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: clamp(3rem, 5vw, 4rem);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form .form-item.fields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    
    .contact-form .form-item.fields.name {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
}

/* ================= Creative Cards Styles ================= */

@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

.creative-cards{
    padding: 120px 0;
    position: relative;
    background: var(--Font);
}

.creative-cards .section-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 60px auto;
    color: white !important;
    letter-spacing: -0.02em;
    width: 100%;
    max-width: 100%;
}

.creative-cards .container {
    max-width: 1320px;
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}

.creative-cards .container .row{
    display: flex;
    flex-wrap: wrap;
}

.creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 33.33333333%;
    text-align: center;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.card-details {
    width: 80%;
    margin: auto;
    position: relative;
    transition: .3s ease-in-out;
}

.card-details:before {
    display: none;
}

.card-details:hover:before{
    display: none;
}

.card-icons {
    width: 140px;
    height: 150px;
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icons:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid;
    width: 100%;
    height: 100%;
    transform: skew(-20deg, 0deg);
    background: #fff;
    border-color: var(--blue);
    transition: .3s ease-in-out;
}

.card-details:hover .card-icons:before{
    background-color: var(--blue);
}

.card-icons img{
    position: relative;
    width: 70px;
    height: 70px;
}

.card-details h3{
    margin-bottom: 15px;
    margin-top: 50px;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
    color: white !important;
}

.card-details h3 a{
  color: white !important;
  text-decoration: none;
}

.card-details p{
    font-size: 16px;
    line-height: 30px;
    color: white;
    font-weight: 400;
    margin-bottom: 30px;
}

.read-more-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid;
    border-radius: 100%;
    margin: auto;
    background: #fff;
    transform: translateX(-10px);
    opacity: 0;
    visibility: hidden;
    border-color: var(--blue);
    transition: .3s ease-in-out;
    text-decoration: none;
}

.read-more-btn i{
    color: #000;
    font-size: 12px;
}

.card-details:hover .read-more-btn{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.creative-cards .section-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.creative-cards .section-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--blue);
    background: #ffffff;
    color: var(--blue);
    cursor: pointer;
    user-select: none;
}

.creative-cards .section-cta .btn:hover {
    background: var(--blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* Olympic logo layout: 3 top, 2 centered bottom */
.creative-cards .container .row .card-column:nth-child(4) {
    margin-left: 16.666667%;
}

.creative-cards .container .row .card-column:nth-child(5) {
    margin-left: 0;
}

/* ============= Responsive Ipad ==================== */
@media (max-width: 992px) {
 .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 40px;
    justify-content: center;
 }
 
 /* Reset margins for responsive layout */
 .creative-cards .container .row .card-column:nth-child(4),
 .creative-cards .container .row .card-column:nth-child(5) {
    margin-left: 0;
    margin-top: 0;
 }
}

/* ============= Responsive Iphone ==================== */
@media (max-width: 480px) {
 .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
 }
 
 /* Reset margins for mobile */
 .creative-cards .container .row .card-column:nth-child(4),
 .creative-cards .container .row .card-column:nth-child(5) {
    margin-left: 0;
    margin-top: 0;
 }
.card-details{
    width: 100%;
}
.read-more-btn{
        transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}
}

/* ====================== Buy Me A Coffee =============================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
.coffee-button {
  position: fixed;
  z-index:9;
  top: 20px;
  right: 20px;
  background-color: #FFC107;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-family: "Dancing Script", cursive;
  font-weight: 600;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.coffee-button:hover {
  background-color: #FFD54F;
}

.coffee-icon {
  font-size: 24px;
  line-height: 1;
}

