/* Responsive Design */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .top-bar {
    padding: 10px 0;
  }
  
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .top-bar-left {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .top-bar-item {
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
  }

  .top-bar-item svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
  }
  
  .top-bar-right {
    align-self: flex-start;
    width: 100%;
    justify-content: flex-start;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }
  
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 12px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-logos {
    gap: 8px;
  }

  .brand-logos img {
    height: 32px;
  }
  
  .brand-title {
    min-width: 0;
  }

  .brand-title strong {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .brand-title span {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 12px 16px;
    gap: 0;
    z-index: 1000;
  }
  
  .nav[data-open="true"] {
    display: flex;
  }
  
  .nav a {
    padding: 14px 16px;
    border-radius: 8px;
    width: 100%;
    font-size: 15px;
  }
  
  .nav-toggle {
    display: flex;
    order: 2;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger {
    transform: rotate(45deg);
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(0) rotate(-90deg);
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(0) rotate(-90deg);
  }
  
  .hero {
    padding: 30px 0;
  }

  .hero-container {
    gap: 30px;
  }

  .hero-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-image img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
  }
  
  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .hero h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 16px;
  }
  
  .hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-badge {
    padding: 8px 14px;
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-badge img {
    height: 20px;
  }
  
  .btn-hero {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    margin-top: 16px;
  }
  
  .services-section,
  .why-section,
  .gallery-section {
    padding: 40px 0;
  }
  
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 24px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 15px;
  }
  
  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section-head p {
    font-size: 15px;
  }
  
  .gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery img {
    height: 220px;
  }

  .gallery figcaption {
    font-size: 14px;
    padding: 14px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand img {
    height: 36px;
  }

  .footer-brand p {
    font-size: 15px;
    margin-top: 0;
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-col a {
    font-size: 15px;
    padding: 6px 0;
  }
  
  .fineprint {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    padding-top: 20px;
  }
  
  .bottom-cta-bar {
    padding: 12px 16px;
  }
  
  .bottom-cta-link {
    font-size: 14px;
    gap: 8px;
  }
  
  .bottom-cta-link span {
    display: none;
  }

  .bottom-cta-link svg {
    width: 22px;
    height: 22px;
  }
  
  .site-footer {
    padding: 40px 0 90px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .top-bar {
    padding: 8px 0;
  }

  .top-bar-item {
    font-size: 12px;
  }

  .top-bar-item svg {
    width: 12px;
    height: 12px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }

  .header-inner {
    padding: 10px 0;
  }

  .brand-logos img {
    height: 28px;
  }

  .brand-title strong {
    font-size: 12px;
  }
  
  .brand-title span {
    font-size: 10px;
  }
  
  .hero {
    padding: 24px 0;
  }

  .hero-container {
    gap: 24px;
  }

  .hero-image img {
    max-height: 300px;
  }
  
  .hero h1 {
    font-size: 22px;
  }
  
  .hero h2 {
    font-size: 18px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-badge {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hero-badge img {
    height: 18px;
  }
  
  .btn-hero {
    padding: 12px 20px;
    font-size: 14px;
  }

  .services-section,
  .why-section,
  .gallery-section {
    padding: 32px 0;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 14px;
  }
  
  .trust-card {
    padding: 20px;
  }

  .trust-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .trust-card p {
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 22px;
  }

  .section-head p {
    font-size: 14px;
  }
  
  .gallery img {
    height: 200px;
  }

  .gallery figcaption {
    font-size: 13px;
    padding: 12px;
  }

  .footer-brand img {
    height: 32px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 15px;
  }

  .footer-col a {
    font-size: 14px;
  }
  
  .bottom-cta-link svg {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    padding: 32px 0 85px;
  }
}
