/* Cloudbreak Metal Roofing - Stylesheet */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ---------- LAYOUT HELPERS ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 1.5rem;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: #aaa;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu-btn {
  display: none;
  background: none;
  color: #fff;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: rgba(0, 0, 0, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu button {
  display: block;
  width: 100%;
  background: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 1.5rem;
  text-align: left;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.mobile-menu button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .mobile-cta {
  background: #fff;
  color: #000;
  margin: 1rem 1.5rem;
  padding: 1rem;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  width: calc(100% - 3rem);
}

.mobile-menu .mobile-cta:hover {
  background: #e8e8e8;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }
  
  /* Mobile Navigation */
  nav {
    height: 75px;
  }

  .logo-icon {
    height: 48px;
  }

  .logo-name {
    font-size: 1.35rem;
  }

  .logo-tagline {
    font-size: 0.7rem;
  }
  
  /* Mobile Hero */
  .hero {
    padding-top: 75px;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 100vh;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Mobile Services */
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  
 /* Mobile Values */
  .values-with-bg {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.55) 100%),
                url('values-background.jpeg') !important;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .value-card {
    padding: 1.5rem;
  }
  
  .value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
  
  .value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }
  
  .value-icon svg {
    width: 28px;
    height: 28px;
  }
  
  /* Mobile About */
  .about-card {
    padding: 1.5rem;
  }
  
  .about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
  
  .about-card p {
    font-size: 0.9rem;
  }
  
  .about-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }
  
  .about-icon svg {
    width: 26px;
    height: 26px;
  }
  
  /* Mobile Contact */
  .contact-info-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-item {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-link,
  .contact-text {
    font-size: 0.95rem;
  }

  .contact-label {
    font-size: 0.85rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 0.9rem;
  }

  .contact-form button {
    padding: 1rem;
    font-size: 1rem;
  }

  .form-message {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Mobile Instagram */
  .instagram-box {
    padding: 1.5rem;
  }
  
  .instagram-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .instagram-box p {
    font-size: 0.9rem;
  }

  .instagram-icon {
    margin-bottom: 1.5rem;
  }

  .instagram-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .instagram-btn {
    width: 100%;
    justify-content: center !important;
    padding: 0.9rem 1.5rem !important;
    font-size: 1rem !important;
  }

  .instagram-note {
    font-size: 0.8rem;
  }
  
  /* Mobile Footer */
  .footer-content {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer .grid-3 {
    gap: 2.5rem;
  }
  
  .footer-col {
    text-align: center;
  }

  .footer-logo {
    font-size: 1.4rem;
  }

  .footer-tagline {
    font-size: 0.65rem;
  }

  .footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  
  .footer-links,
  .footer-contact {
    text-align: center;
  }
  
  .footer-links button {
    text-align: center;
    font-size: 0.95rem;
  }

  .footer-links li {
    margin-bottom: 0.6rem;
  }

  .footer-contact li {
    margin-bottom: 1.25rem;
  }

  .footer-contact-label {
    font-size: 0.8rem;
  }

  .footer-contact a,
  .footer-contact div {
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
  }

  .footer-copyright,
  .footer-credit {
    font-size: 0.85rem;
  }
  
  /* Better touch targets for mobile links */
  .footer-contact a {
    padding: 0.25rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile container adjustments */
  .container {
    padding: 0 1rem;
  }
}

/* ---------- NAVIGATION ---------- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-combo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.logo-combo:hover {
  transform: scale(1.02);
}

.logo-icon {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.logo-tagline {
  font-size: 0.8rem;
  color: #aaa;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links button {
  background: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links button:hover {
  color: #ccc;
}

.nav-cta {
  background: #fff;
  color: #000;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.nav-cta:hover {
  background: #e8e8e8;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  color: #000;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding-top: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url('hero-background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtext {
  color: #ddd;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero p {
  color: #e8e8e8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  font-size: 1rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover,
.primary-btn:active {
  background: #e8e8e8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.secondary-btn {
  border: 1px solid #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: all 0.2s;
  display: inline-block;
  font-size: 1rem;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.secondary-btn:hover,
.secondary-btn:active {
  border-color: #fff;
  background: rgba(255,255,255,0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ---------- SERVICES ---------- */
.services {
  background: #0a0a0a;
}

.service-card {
  background: linear-gradient(135deg, #000, #111);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #aaa;
  line-height: 1.6;
}


/* ---------- INSTAGRAM GALLERY ---------- */
.instagram-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #111, #000);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
}

.instagram-icon {
  margin-bottom: 2rem;
}

.instagram-icon svg {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  color: #555;
}

.instagram-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.instagram-box p {
  color: #aaa;
  margin-bottom: 2rem;
}

.instagram-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.instagram-btn svg {
  width: 20px;
  height: 20px;
}

.instagram-note {
  color: #666;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* ---------- OUR VALUES ---------- */
.values-section {
  background: #000;
}

/* Values section with photo background */
.values-with-bg {
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.5) 100%),
              url('values-background.jpeg');
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
}

.values-with-bg .section-header h2 {
  text-shadow: 0 4px 12px rgba(0,0,0,0.9);
}

.values-with-bg .section-header p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.value-card {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255,255,255,0.3);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.value-card p {
  color: #ccc;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ---------- ABOUT ---------- */
.about {
  background: #0a0a0a;
}

.about-card {
  background: linear-gradient(135deg, #111, #000);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
}

.about-icon {
  width: 60px;
  height: 60px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.about-card p {
  color: #aaa;
  line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: #000;
}

.contact-info-box {
  background: linear-gradient(135deg, #111, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-info-box h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: #888;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-link {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  word-break: break-word;
  display: inline-block;
  transition: color 0.2s;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  overflow-wrap: break-word;
  hyphens: none;
}

.contact-link:hover,
.contact-link:active {
  color: #ccc;
}

@media (max-width: 768px) {
  .contact-link {
    padding: 0.25rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    max-width: 100%;
  }
}

.contact-text {
  color: #fff;
  font-size: 1.1rem;
}

.contact-note {
  color: #666;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
}

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

.contact-form button {
  width: 100%;
  padding: 1.25rem;
}

/* Form Messages */
.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  display: block;
  background: #10b981;
  color: #fff;
  border: 1px solid #059669;
}

.form-message.error {
  display: block;
  background: #ef4444;
  color: #fff;
  border: 1px solid #dc2626;
}

.form-message.loading {
  display: block;
  background: #3b82f6;
  color: #fff;
  border: 1px solid #2563eb;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-col {
  /* Column styling */
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.footer-desc {
  color: #888;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #111, #0a0a0a);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.footer-social:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links button {
  color: #888;
  background: none;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
}

.footer-links button:hover {
  color: #fff;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

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

.footer-contact-label {
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s;
  display: inline-block;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  overflow-wrap: break-word;
  hyphens: none;
}

.footer-contact a:hover,
.footer-contact a:active {
  color: #ccc;
}

.footer-contact a:hover {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer-copyright {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-credit {
  color: #666;
  font-size: 0.85rem;
}

.footer-credit a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: #fff;
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .logo-name {
    font-size: 1.2rem;
  }

  .logo-icon {
    height: 42px;
  }

  .service-card,
  .value-card,
  .about-card {
    padding: 1.25rem;
  }

  .contact-info-box {
    padding: 1.25rem;
  }
}

/* Tablet optimization (iPads, etc) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Navigation */
  .nav-links {
    gap: 1.5rem;
  }

  .nav-links button {
    font-size: 0.95rem;
  }

  .nav-cta {
    padding: 0.6rem 1.3rem;
  }

  /* Tablet Hero */
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.15rem;
    max-width: 700px;
  }

  .hero-buttons {
    max-width: 600px;
    margin: 0 auto;
  }

  /* Tablet Sections */
  .section {
    padding: 5rem 2rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .section-header p {
    font-size: 1.05rem;
  }

  /* Tablet Grid - 2 columns instead of 3 for better fit */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .grid-2 {
    gap: 2rem;
  }

  /* Tablet Services */
  .service-card {
    padding: 2rem;
  }

  .service-card h3 {
    font-size: 1.35rem;
  }

  .service-card p {
    font-size: 1rem;
  }


  /* Tablet Values */
  .value-card {
    padding: 2rem;
  }

  .value-card h3 {
    font-size: 1.25rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .value-icon svg {
    width: 30px;
    height: 30px;
  }

  /* Tablet About */
  .about-card {
    padding: 2rem;
  }

  .about-card h3 {
    font-size: 1.3rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }

  .about-icon {
    width: 60px;
    height: 60px;
  }

  .about-icon svg {
    width: 30px;
    height: 30px;
  }

  /* Tablet Contact */
  .contact-info-box {
    padding: 2.25rem;
  }

  .contact-info-box h3 {
    font-size: 1.7rem;
  }

  .contact-item {
    margin-bottom: 1.75rem;
  }

  .contact-link,
  .contact-text {
    font-size: 1.05rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  /* Tablet Instagram */
  .instagram-box {
    max-width: 650px;
    padding: 2rem;
  }

  .instagram-box h3 {
    font-size: 1.7rem;
  }

  .instagram-box p {
    font-size: 1rem;
  }

  /* Tablet Footer */
  .footer-content {
    padding: 3.5rem 0 2rem;
  }

  .footer .grid-3 {
    gap: 2.5rem;
  }

  .footer-desc {
    font-size: 0.95rem;
  }

  .footer-heading {
    font-size: 1.05rem;
  }

  /* Tablet Container */
  .container {
    padding: 0 2rem;
  }
}

/* Large Tablets / iPad Pro landscape */
@media (min-width: 1025px) and (max-width: 1200px) {
  .container {
    max-width: 1100px;
  }

  .nav-links {
    gap: 1.75rem;
  }

  .section {
    padding: 5.5rem 2rem;
  }

  .grid-3 {
    gap: 1.75rem;
  }

  .service-card,
  .value-card,
  .about-card {
    padding: 1.85rem;
  }
}