/* ============================================
   EXTRA RESPONSIVE FIXES
   ============================================ */

/* Tablet */
@media (max-width: 992px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    flex-direction: column;
  }

  .hero,
  .hero-image-card {
    width: 100%;
    text-align: center;
  }

  .hero p {
    max-width: 100% !important;
  }

  .gold-stat {
    justify-content: center;
  }

  .pricing-row {
    flex-direction: column;
  }

  .price-card-lux {
    width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .container {
    padding: 0 15px;
  }

  /* Navbar */
  .navbar .container {
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    justify-content: center;
    gap: 10px;
  }

  .nav-links a {
    margin: 5px;
    font-size: 14px;
  }

  .get-quote-btn {
    margin-left: 0;
  }

  /* Hero */
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-badge {
    font-size: 12px;
  }

  .gold-stat {
    gap: 15px;
  }

  .stat-item {
    font-size: 1.2rem;
  }

  /* Services */
  .service-luxury-grid {
    grid-template-columns: 1fr;
  }

  .luxury-card {
    width: 100%;
  }

  .card-img {
    height: 220px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-row {
    flex-direction: column;
  }

  .price-card-lux {
    width: 100%;
    min-width: unset !important;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-title {
    font-size: 2rem;
  }

  /* Quote Form */
  .quote-gold-form {
    padding: 25px 20px;
    border-radius: 25px;
  }

  .quote-gold-form form > div {
    grid-template-columns: 1fr !important;
  }

  /* CTA */
  .cta-banner,
  .cta-banner-light {
    padding: 30px 20px;
    border-radius: 25px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .contact-details li {
    justify-content: center;
  }

  .bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.8rem;
  }

  .portfolio-title {
    font-size: 1.7rem;
  }

  .section-header h2,
  .gold-text {
    font-size: 1.8rem !important;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image-card {
    padding: 10px;
    border-radius: 20px;
  }

  .hero-image-card img {
    border-radius: 15px;
  }

  .card-img {
    height: 180px;
  }

  .price {
    font-size: 1.8rem !important;
  }

  .footer-logo {
    font-size: 1.4rem;
  }
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 20px;
}

.portfolio-image img {
  width: 100%;
  display: block;
}





/* ==========================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ========================================== */

/* Large Tablets */
@media screen and (max-width: 1024px) {

  .container {
    padding: 0 20px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .hours-grid {
    flex-direction: column;
  }

  .hero,
  .hero-image-card,
  .about-content,
  .about-image,
  .contact-form-wrapper,
  .map-wrapper {
    width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .page-header h1 {
    font-size: 2.8rem;
  }

  .portfolio-grid,
  .pricing-grid,
  .service-luxury-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-row {
    flex-direction: column;
  }

  .price-card-lux {
    width: 100%;
    max-width: 700px;
    margin: auto;
  }
}

/* Tablets */
@media screen and (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 15px;
  }

  /* Navbar */
  .navbar .container {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links a {
    margin: 0;
    font-size: 14px;
  }

  .get-quote-btn {
    margin: 10px 0 0;
  }

  /* Hero */
  .hero-grid {
    gap: 30px;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .hero p {
    max-width: 100% !important;
  }

  .gold-stat {
    justify-content: center;
    gap: 20px;
  }

  .hero-image-card {
    padding: 15px;
  }

  /* Headers */
  .page-header {
    padding: 50px 0;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  /* Services */
  .service-card {
    flex-direction: column;
  }

  .service-image {
    width: 100%;
    min-height: 250px;
  }

  .service-content {
    padding: 25px;
  }

  /* Grids */
  .portfolio-grid,
  .pricing-grid,
  .service-luxury-grid,
  .values-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper,
  .quote-gold-form {
    padding: 25px;
  }

  .quote-gold-form form > div {
    grid-template-columns: 1fr !important;
  }

  /* Stats */
  .stats-grid {
    gap: 30px;
  }

  /* Footer */
  .footer-grid {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .contact-details li {
    justify-content: center;
  }

  .bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-links h4:after,
  .footer-contact h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile Devices */
@media screen and (max-width: 576px) {

  .container {
    padding: 0 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .portfolio-title,
  .section-header h2,
  .about-content h2,
  .contact-form-wrapper h2 {
    font-size: 1.8rem !important;
  }

  .hero-badge,
  .portfolio-badge,
  .section-tag {
    font-size: 11px;
  }

  .gold-stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stat-item {
    font-size: 1.4rem;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h2 {
    font-size: 1.4rem;
  }

  .service-icon {
    font-size: 2rem;
  }

  .card-img,
  .portfolio-image img {
    height: 220px;
    object-fit: cover;
  }

  .pricing-card,
  .price-card-lux {
    padding: 20px;
    border-radius: 25px;
  }

  .price {
    font-size: 1.8rem !important;
  }

  .quote-gold-form {
    padding: 20px;
    border-radius: 25px;
  }

  .quote-gold-form input,
  .quote-gold-form select,
  .quote-gold-form textarea {
    font-size: 14px;
    padding: 12px 15px;
  }

  .contact-form-wrapper {
    padding: 20px;
    border-radius: 25px;
  }

  .map-wrapper iframe {
    min-height: 300px;
  }

  .cta-banner,
  .cta-banner-light {
    padding: 25px 20px;
    border-radius: 25px;
  }

  .member-image {
    width: 130px;
    height: 130px;
  }

  .footer-logo {
    font-size: 1.4rem;
  }
}

/* Very Small Phones */
@media screen and (max-width: 400px) {

  .hero h1 {
    font-size: 1.6rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-links a {
    font-size: 13px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .card-img,
  .portfolio-image img {
    height: 180px;
  }

  .price {
    font-size: 1.5rem !important;
  }
}

/* Prevent Horizontal Scroll */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

iframe,
video {
  max-width: 100%;
}

table {
  width: 100%;
  display: block;
  overflow-x: auto;
}