/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --header-height: 4rem;

  /* ===== Luxury Colors ===== */
  --primary-color: #0A1628;        /* Navy Blue Deep */
  --primary-color-alt: #1A2B42;    /* Navy Blue Light */
  --secondary-color: #D4AF37;      /* Elegant Gold */
  --secondary-color-alt: #F4E4BC;  /* Light Gold */
  --accent-color: #B8860B;         /* Dark Gold */
  --white-color: #FFFFFF;          /* Pure White */
  --platinum-color: #E8E8E8;       /* Platinum Gray */
  --text-color: #1A202C;           /* Elegant Black */
  --text-color-light: #2D3748;     /* Dark Gray */
  --text-color-white: #FFFFFF;     /* White Text */
  --body-color: #FAFAFA;           /* Off White */
  --container-color: #FFFFFF;      /* Container White */
  --border-color: #E2E8F0;         /* Light Border */
  --shadow-color: rgba(10, 22, 40, 0.15);
  --shadow-color-light: rgba(10, 22, 40, 0.08);
  --overlay-color: rgba(10, 22, 40, 0.7);

  /* ===== Luxury Typography ===== */
  --title-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
  --accent-font: 'Cormorant Garamond', serif;
  
  --biggest-font-size: 4rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /* ===== Font Weight ===== */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* ===== Margins Bottom ===== */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-4: 4rem;

  /* ===== Z Index ===== */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /* ===== Transitions ===== */
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (max-width: 992px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.7;
  font-weight: var(--font-regular);
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
  line-height: 1.2;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 8rem 0 4rem;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-4);
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--primary-color);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
  position: relative;
}

.section__title--white {
  color: var(--white-color);
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  max-width: 600px;
  margin: 0 auto var(--mb-2);
  line-height: 1.6;
}

.section__subtitle--white {
  color: rgba(255, 255, 255, 0.9);
}

.section__line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  margin: 0 auto;
  border-radius: 2px;
}

.section__line--white {
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-color-alt));
}

.highlight {
  color: var(--secondary-color);
  font-weight: var(--font-bold);
  position: relative;
}

/* ===== LUXURY BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-semi-bold);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.button--primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
}

.button--secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  box-shadow: none;
}

.button--secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.button__icon {
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.button:hover .button__icon {
  transform: translateX(3px);
}

/* ===== HEADER & NAV ===== */
.header {
  width: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(10, 22, 40, 0.95) 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo h2 {
  color: var(--secondary-color);
  font-weight: var(--font-bold);
  font-family: var(--title-font);
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav__list {
  display: flex;
  column-gap: 2.5rem;
}

.nav__link {
  color: var(--white-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--secondary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__cta {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.nav__cta::after {
  display: none;
}

.nav__toggle,
.nav__close {
  display: none;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav__toggle:hover,
.nav__close:hover {
  color: var(--secondary-color);
}

/* ===== HOME ===== */
.home {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home__container {
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home__content {
  color: var(--white-color);
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  font-family: var(--title-font);
  margin-bottom: var(--mb-1-5);
  line-height: 1.1;
  color: var(--white-color);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home__description {
  font-size: var(--normal-font-size);
  margin-bottom: var(--mb-3);
  opacity: 0.95;
  line-height: 1.7;
  max-width: 90%;
}

.home__buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home__image {
  position: relative;
  display: flex;
  justify-content: center;
}

.home__img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.home__img-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.home__img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.home__img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: var(--transition);
}

.home__img-wrapper:hover .home__img-overlay {
  opacity: 1;
}

/* Home Decorations */
.home__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration__line {
  position: absolute;
  background: linear-gradient(45deg, var(--secondary-color), transparent);
  opacity: 0.1;
}

.decoration__line--1 {
  width: 200px;
  height: 2px;
  top: 20%;
  right: 10%;
  transform: rotate(45deg);
}

.decoration__line--2 {
  width: 150px;
  height: 2px;
  bottom: 30%;
  left: 5%;
  transform: rotate(-45deg);
}

.decoration__pattern {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--secondary-color) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white-color);
  position: relative;
}

.about__container {
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: var(--mb-3);
}

.about__image {
  position: relative;
}

.about__img-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.about__img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about__img-frame {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid var(--secondary-color);
  border-radius: 20px;
  opacity: 0;
  transition: var(--transition);
}

.about__img-wrapper:hover .about__img-frame {
  opacity: 1;
  transform: translate(5px, 5px);
}

.about__content {
  padding-left: 2rem;
}

.about__description {
  margin-bottom: var(--mb-1-5);
  text-align: justify;
  line-height: 1.8;
  color: var(--text-color-light);
}

.about__values {
  display: grid;
  gap: 2rem;
  margin-top: var(--mb-3);
}

.value__item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--container-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color-light);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.value__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.value__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.value__title {
  color: var(--primary-color);
  margin-bottom: var(--mb-0-5);
  font-family: var(--title-font);
}

.value__description {
  color: var(--text-color-light);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(180deg, var(--platinum-color) 0%, var(--white-color) 100%);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: var(--mb-3);
}

.service__card {
  background: var(--container-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px var(--shadow-color-light);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--secondary-color);
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  transition: var(--transition);
}

.service__card:hover::before {
  left: 100%;
}

.service__card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px var(--shadow-color);
  border-top-color: var(--accent-color);
}

.service__icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  font-size: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1-5);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.service__card:hover .service__icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.service__title {
  font-size: var(--h3-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
}

.service__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.service__features {
  text-align: left;
}

.service__features li {
  color: var(--text-color);
  margin-bottom: var(--mb-0-75);
  position: relative;
  padding-left: 2rem;
  line-height: 1.6;
}

.service__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== BLOG ===== */
.blog {
  background: var(--white-color);
  position: relative;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: var(--mb-3);
}

.blog__card {
  background: var(--container-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px var(--shadow-color-light);
  transition: var(--transition);
  position: relative;
}

.blog__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px var(--shadow-color);
}

.blog__image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog__card:hover .blog__overlay {
  opacity: 0.8;
}

.blog__card:hover .blog__img {
  transform: scale(1.1);
}

.blog__content {
  padding: 2rem;
}

.blog__title {
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
  font-size: var(--h3-font-size);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  line-height: 1.3;
}

.blog__description {
  color: var(--text-color-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.7;
}

.blog__link {
  color: var(--secondary-color);
  font-weight: var(--font-semi-bold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog__link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.contact::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23D4AF37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.contact__content {
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: var(--mb-3);
  position: relative;
  z-index: 2;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.contact__item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.contact__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact__title {
  color: var(--secondary-color);
  margin-bottom: var(--mb-0-25);
  font-weight: var(--font-semi-bold);
}

.contact__description {
  opacity: 0.9;
  line-height: 1.6;
}

.contact__commitment {
  background: rgba(212, 175, 55, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
  backdrop-filter: blur(10px);
}

.commitment__icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1);
}

.commitment__title {
  color: var(--secondary-color);
  margin-bottom: var(--mb-0-5);
  font-weight: var(--font-semi-bold);
}

.commitment__text {
  opacity: 0.9;
  line-height: 1.6;
}

.contact__specialties {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.specialties__title {
  color: var(--secondary-color);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-semi-bold);
}

.specialties__list {
  list-style: none;
}

.specialties__list li {
  margin-bottom: var(--mb-0-75);
  opacity: 0.9;
  line-height: 1.6;
}

.specialties__list strong {
  color: var(--secondary-color);
}

/* ===== FORM ===== */
.contact__form {
  background: var(--white-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.contact__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.form__group {
  margin-bottom: var(--mb-2);
}

.form__input {
  width: 100%;
  background: var(--body-color);
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  transition: var(--transition);
  resize: none;
}

.form__input:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  background: var(--white-color);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__button {
  width: 100%;
  margin-top: var(--mb-1);
  padding: 1.2rem 2rem;
  font-size: var(--normal-font-size);
  position: relative;
  overflow: hidden;
}

.form__message {
  margin-top: var(--mb-1-5);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: var(--font-medium);
  display: none;
  transition: var(--transition);
}

.form__message.success {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  border: 1px solid #10b981;
}

.form__message.error {
  background: linear-gradient(135deg, #fee2e2, #fca5a5);
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-color);
  color: var(--white-color);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: var(--mb-3);
}

.footer__title {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  margin-bottom: var(--mb-1);
  font-family: var(--title-font);
  font-weight: var(--font-bold);
}

.footer__description {
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: var(--mb-1);
}

.footer__experience {
  opacity: 0.8;
  line-height: 1.6;
  font-size: var(--small-font-size);
}

.footer__subtitle {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
  color: var(--secondary-color);
  font-weight: var(--font-semi-bold);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: var(--white-color);
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
  padding-left: 1rem;
}

.footer__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.footer__link:hover {
  opacity: 1;
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer__social-links {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  font-size: 1.25rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.footer__social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--mb-2);
  text-align: center;
}

.footer__copy {
  opacity: 0.7;
  font-size: var(--small-font-size);
  line-height: 1.6;
}

/* ===== SCROLL UP ===== */
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: -20%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: var(--primary-color);
  padding: 0.75rem;
  border-radius: 50%;
  z-index: var(--z-tooltip);
  transition: var(--transition);
  font-size: 1.25rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrollup:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.show-scroll {
  bottom: 3rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--secondary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== BREAKPOINTS ===== */
/* For large devices */
@media screen and (max-width: 992px) {
  .container {
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
  }

  .section {
    padding: 6rem 0 3rem;
  }

  .home__container,
  .about__container,
  .contact__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home__content {
    order: 2;
    text-align: center;
  }

  .home__image {
    order: 1;
  }

  .about__content {
    padding-left: 0;
    text-align: center;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .blog__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* For medium devices */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color-alt) 100%);
    padding: 3rem 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
  }

  .nav__list {
    flex-direction: column;
    gap: 2.5rem;
  }

  .nav__link {
    font-size: var(--h3-font-size);
    text-align: center;
    padding: 1rem 0;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--white-color);
    cursor: pointer;
  }

  .nav__toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
  }

  .nav__cta {
    display: none;
  }

  .show-menu {
    left: 0;
  }

  .section {
    padding: 5rem 0 2rem;
  }

  .home {
    padding-top: calc(var(--header-height) + 1rem);
  }

  .home__buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .services__grid,
  .blog__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 2rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .scrollup {
    right: 1rem;
  }
}

/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .service__card,
  .blog__card {
    margin: 0 auto;
    max-width: 300px;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .form__input {
    padding: 1rem;
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* ===== LUXURY ENHANCEMENTS ===== */
.luxury-gradient {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gold-shadow {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.gold-shadow:hover {
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

