/* Desktop Responsive CSS for Tonzar.com index5.php */

/* ===== General Desktop Adaptations ===== */
@media (min-width: 1024px) {
  body {
    font-size: 16px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
  }
  
  /* Create more breathing room on desktop */
  section {
    margin-bottom: 60px;
  }
}

/* ===== Header Adaptations for Desktop ===== */
@media (min-width: 1024px) {
    header {
        padding: 15px 0;
        background-color: #2a7a9e;
        width: 100%;
    }

    .header-table, .nav-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        width: 100%;
        box-sizing: border-box;
    }
    
  .logo-cell {
    width: auto;
    flex: 0 0 180px;
  }
  
  .logo-img {
    max-height: 50px;
  }
  
  .search-cell {
    flex: 0 0 50%;
    max-width: 600px;
    margin: 0 20px;
  }
  
  .search-input {
    height: 44px;
    font-size: 16px;
    border-radius: 22px;
    padding-left: 44px;
  }
  
  .search-icon {
    width: 20px;
    height: 20px;
    left: 15px;
  }
  
  /* Navigation layout for desktop */
  .section-title {
    font-size: 18px;
    margin: 20px 0 15px;
  }
  
  .nav-container {
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    overflow-x: visible;
  }
  
  .nav-item {
    padding: 14px 20px;
    font-size: 16px;
    white-space: nowrap;
  }
  
  .nav-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }
}

/* ===== Hero Section Desktop ===== */
@media (min-width: 1024px) {
  .hero-section {
    margin-top: 150px;
    padding: 10px 0;
    background-attachment: fixed;
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .hero-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
  
  .hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 15px 40px;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
}

/* ===== Catalog Section Desktop ===== */
@media (min-width: 1024px) {
  .catalog-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 20px;
  }
  
  .catalog-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .catalog-item img {
    max-height: 150px;
    margin-bottom: 15px;
  }
  
  .catalog-item a {
    font-size: 18px;
  }
}

/* ===== Regions Section Desktop ===== */
@media (min-width: 1024px) {
  .regions-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .regions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .region-card {
    transition: transform 0.3s ease;
  }
  
  .region-card:hover {
    transform: translateY(-15px);
  }
  
  .region-card img {
    height: 180px;
  }
  
  .region-card h3 {
    font-size: 22px;
    margin: 20px 0 15px;
  }
  
  .region-card p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 20px 25px;
  }
}

/* ===== FAQ Section Desktop ===== */
@media (min-width: 1024px) {
  .faq-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0;
  }
  
  .faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .faq-item {
    margin-bottom: 20px;
  }
  
  .faq-question {
    font-size: 18px;
    padding: 20px 25px;
  }
  
  .faq-answer {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    padding: 20px 25px;
  }
  
  .view-more-faq {
    font-size: 18px;
    margin-top: 30px;
    transition: color 0.3s;
  }
  
  .view-more-faq:hover {
    color: #1a5b7b;
    text-decoration: underline;
  }
}

/* ===== Contact Section Desktop ===== */
@media (min-width: 1024px) {
  .contact-section {
    padding: 60px 40px;
    margin: 60px auto;
    max-width: 1000px;
    border-radius: 15px;
  }
  
  .contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .contact-options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .contact-section a {
    padding: 15px 30px;
    font-size: 18px;
    min-width: 200px;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .contact-section a:hover {
    opacity: 0.9;
    transform: translateY(-3px);
  }
}

/* ===== Benefits Section Desktop ===== */
@media (min-width: 1024px) {
  .benefits-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    margin: 80px auto;
    max-width: 1100px;
    text-align: left;
  }
  
  .benefits-section img {
    max-width: 45%;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .benefits-content {
    flex: 1;
  }
  
  .benefits-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: left;
  }
  
  .benefits-section p {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
  }
}

/* ===== Footer Desktop ===== */
@media (min-width: 1024px) {
  footer {
    padding: 60px 40px 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
  }
  
  .footer-company h4 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .footer-company p {
    font-size: 16px;
  }
  
  .footer-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  
  .footer-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
  }
  
  .footer-column ul li a,
  .footer-contact a {
    font-size: 16px;
    transition: color 0.2s;
  }
  
  .footer-column ul li a:hover,
  .footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .footer-contact h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-contact p {
    margin-bottom: 12px;
    font-size: 16px;
  }
  
  .footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
  }
  
  .footer-bottom p {
    font-size: 16px;
  }
}