/* Global styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.language-selector select {
    border: none;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Hero Home Section */
/* === ANA SAYFA – HERO GÖRSEL VE METİN YERLEŞİMİ === */
/* Ana stiller dosyanın sonunda tanımlı - burası devre dışı */

/* === ALTTAKİ 3 ALAN KARTI – REFERANSLA BİREBİR === */
.business-areas {
  padding: 8px 0 16px 0;  /* Kompakt - tek ekrana sığması için */
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}

.area-cards a.card-link {
  display: block;
  height: 100%;
}

.area-cards .card {
  height: 100%;
  margin: 0;
  padding: 0;
}

a.card-link {
  text-decoration: none;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
}

.card {
  border-radius: 12px;
  background-size: cover !important;  /* Resim kutuyu tam doldurur - boşluk olmaz */
  background-repeat: no-repeat !important;
  background-position: center center !important;
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.25s ease;
  margin: 0;
  padding: 0;
}

.card:hover {
  transform: translateY(-5px);
}

.card .card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  opacity: 1;
  transition: background 0.3s ease;
}

.card:hover .card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* === RESPONSIVE UYUMLULUK === */
/* Ana responsive kurallar dosya sonunda tanımlı */







/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: #007bff;
    text-align: center;
}

.cta-section .btn {
    background-color: #fff;
    color: #007bff;
}

/* IT Services Section */
.it-services {
    padding: 80px 0;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* About Content Section */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 40px;
}

/* Contact Content Section */
.contact-content {
    padding: 80px 0;
}

.contact-info, .social-media {
    margin-bottom: 40px;
}

.social-media ul {
    list-style: none;
    padding: 0;
}

.social-media li {
    display: inline-block;
    margin-right: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.consultancy-page .container {
    max-width: 1400px;  /* 4 paket için geniş alan */
    width: 95%;
}

.consultancy-page .consultancy-header {
    text-align: center;
    padding: 1.5rem 0 1rem;
}

.consultancy-page .consultancy-header h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.consultancy-page .consultancy-header p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.consultancy-page .section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

/* Packages section */
.consultancy-page .packages-section {
    padding: 1rem 0 2rem;
}

.consultancy-page .packages-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* 4 paket yan yana */
    gap: 1.25rem;
    justify-content: center;
    align-items: stretch;
}

.consultancy-page .package-card {
    background-color: #E6F3F8;
    border: 1px solid #B0E0E6;
    border-radius: 15px;
    width: 100%;                            /* Grid hücresini doldur */
    min-width: 0;                           /* Taşmayı önle */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.consultancy-page .package-header {
    padding: 1.25rem 1rem;
    text-align: center;
}

.consultancy-page .package-title {
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 1.3;
}

.consultancy-page .package-slogan {
    font-size: 0.9rem;
    margin-top: 0.4rem;
    line-height: 1.4;
}

.consultancy-page .package-body {
    padding: 0 1rem 1.25rem;
    flex-grow: 1;
    font-size: 0.85rem;
    line-height: 1.5;
}

.consultancy-page .features-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.consultancy-page .features-list li {
    font-style: italic;
    margin-bottom: 0.35rem;
    font-size: 0.8rem;
}

.consultancy-page .package-footer {
    background-color: #A8D58B;
    padding: 1.25rem 1rem;
    text-align: center;
    border-radius: 0 0 15px 15px;
    margin-top: auto;
    position: relative;
    color: #000;
}

.consultancy-page .package-footer::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: #A8D58B;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 C40,0 60,0 100,100 Z" fill="white" /></svg>') no-repeat center center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 C40,0 60,0 100,100 Z" fill="white" /></svg>') no-repeat center center;
    -webkit-mask-size: cover;
    mask-size: cover;
}

.consultancy-page .package-duration,
.consultancy-page .package-price {
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

/* Paket kartı için CTA butonu */
.consultancy-page .package-footer .cta-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #4a69bd;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.consultancy-page .package-footer .cta-button:hover {
    background-color: #3b539a;
}

/* Responsive: 4 kolon → 2 kolon → 1 kolon */
@media (max-width: 1200px) {
    .consultancy-page .packages-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .consultancy-page .package-title {
        font-size: 1.3rem;
    }
    .consultancy-page .package-body {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .consultancy-page .packages-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .consultancy-page .package-header {
        padding: 1.5rem;
    }
    .consultancy-page .package-body {
        padding: 0 1.5rem 1.5rem;
    }
}

.consultancy-page .optional-services-section {
    display: flex;
    justify-content: center;
    padding: 2rem 0;  /* 4rem → 2rem */
}

.consultancy-page .optional-services-card {
    background-color: #E6F3F8;
    border: 1px solid #B0E0E6;
    border-radius: 15px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.consultancy-page .optional-services-header {
    padding: 1.5rem 1.5rem 1rem;
}

.consultancy-page .optional-services-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.consultancy-page .optional-services-subtitle {
    font-size: 1rem;
    margin-top: 0.4rem;
}

.consultancy-page .optional-services-body {
    padding: 0 1.5rem 1.5rem;
}

.consultancy-page .services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: inline-block;
    text-align: left;
}

.consultancy-page .services-list li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* Optional services CTA button */
.consultancy-page .optional-services-body .cta-button {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.6rem 1.5rem;
    background-color: #4a69bd;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.consultancy-page .optional-services-body .cta-button:hover {
    background-color: #3b539a;
}

/* Brokerage Page Specific Styles */
.content-section {
    padding: 80px 0;
}

.content-section .row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.content-section .col-md-6 {
    width: 50%;
}

.product-detail .row {
    display: flex;
    gap: 40px;
}

.product-detail .col-md-5 {
    width: 41.66666667%;
}

.product-detail .col-md-7 {
    width: 58.33333333%;
}

/* Bag in Box Page Specific Styles */
.bag-in-box-page .page-header {
    margin-bottom: 40px;
}

.bag-in-box-page h1 {
    font-size: 2.5em;
    font-weight: bold;
}

.bag-in-box-page .image-column {
    display: flex;
    flex-direction: column;
}

.bag-in-box-page .text-column .content-section,
.bag-in-box-page .text-column .feature-section,
.bag-in-box-page .text-column .closing-section {
    margin-bottom: 30px;
}

.bag-in-box-page .text-column h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Brokerage Page New Styles */
.brokerage-products .card-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
}

.brokerage-products .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.brokerage-products .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brokerage-products .card-image-container {
    width: 100%;
    padding-top: 75%; /* Aspect ratio 4:3 */
    position: relative;
}

.brokerage-products .card-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brokerage-products .card-body {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brokerage-products .card-title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Contact Page Specific Styles */
.contact-page .page-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-page .contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-page .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-page .contact-item img {
    width: 40px;
    height: 40px;
}

.contact-page .social-media-icons {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-page .social-media-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border: none !important;
    outline: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-page .social-media-icons a:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

.contact-page .social-media-icons img {
    width: 40px;
    height: 40px;
    display: block;
    border: none !important;
    box-shadow: none;
    vertical-align: middle;
}

/* SVG ikonlar için özel stil */
.contact-page .social-media-icons img[src$=".svg"] {
    width: 36px;
    height: 36px;
}

/* Platform text fallback */
.contact-page .social-media-icons .platform-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.contact-page .contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f0f4ff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-page .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-page .form-header h2 {
    font-size: 2em;
    font-weight: bold;
    color: #333;
}

.contact-page .contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-page .contact-form .form-row input,
.contact-page .contact-form .form-row select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-page .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-height: 150px;
    margin-bottom: 20px;
}

.contact-page .contact-form .form-group {
    margin-bottom: 20px;
}

.contact-page .contact-form button {
    width: 100%;
    padding: 15px;
    background-color: #4a69bd;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-page .contact-form button:hover {
    background-color: #3b539a;
}

.contact-page .form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

.bag-in-box-page .text-column h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
}

.bag-in-box-page .text-column h4 {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Trigger Sprayer Page Specific Styles */
.trigger-sprayer-page .page-header {
    margin-bottom: 40px;
}

.trigger-sprayer-page h1 {
    font-size: 2.5em;
    font-weight: bold;
}

.trigger-sprayer-page .image-column {
    display: flex;
    flex-direction: column;
}

.trigger-sprayer-page .text-column .content-section,
.trigger-sprayer-page .text-column .closing-section {
    margin-bottom: 30px;
}

.trigger-sprayer-page .text-column h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

/* IT & E-commerce Page Styles */


/* === IT & E-Ticaret sayfası – Görseldeki hizalama ile birebir === */
.it-ecommerce-page .hero-section {
    text-align: center;
    padding: 70px 0 40px 0;
}
.it-ecommerce-page .page-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.it-ecommerce-page .hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
    color: #222;
}

/* 3 servis kutusu (Retail, E-Commerce, Business) */
.it-ecommerce-page .services-section {
    padding: 40px 0 70px 0;
}
.it-ecommerce-page .service-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
    text-align: center;
}
.it-ecommerce-page .service-card {
    background: none;
    box-shadow: none;
}
.it-ecommerce-page .service-image img {
    max-width: 140px;
    margin-bottom: 15px;
}
.it-ecommerce-page .service-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: none;
}
.it-ecommerce-page .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* “SEJAX’TA PROMOSYON” bölümü */
.it-ecommerce-page .promotion-section {
    text-align: center;
    padding: 60px 0 50px 0;
}
.it-ecommerce-page .promotion-section .section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.it-ecommerce-page .promotion-text {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 25px;
    color: #222;
}
.it-ecommerce-page .promotion-cta {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* “MARKALARIMIZ” ve logo dizilimi */
.it-ecommerce-page .brands-section {
    text-align: center;
    padding: 60px 0 100px 0;
}
.it-ecommerce-page .brands-section .section-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.it-ecommerce-page .brand-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 45px;
    max-width: 1100px;
    margin: 0 auto;
}
.it-ecommerce-page .brand-logo img {
    max-height: 90px;
    max-width: 220px;
    object-fit: contain;
    border-radius: 6px;
}

/* Duyarlı kırılımlar */
@media (max-width: 991px) {
    .it-ecommerce-page .service-cards-container { grid-template-columns: 1fr; }
    .it-ecommerce-page .brand-logo img { max-width: 160px; }
}



/* ======= Distributorship (İki Form Yan Yana) – Kurumsal Stil ======= */
.distributorship-section {
    padding: 2rem 0 2.5rem;  /* 4rem/5rem → 2rem/2.5rem */
}

.forms-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;        /* yan yana */
    gap: 2rem;
    align-items: start;
}

.form-card {
    background: #ffffff;
    border: 1px solid #B0E0E6;             /* mevcut mavi palete uyum */
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.form-card-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, #E6F3F8 0%, #ffffff 100%);
    border-bottom: 1px solid #E1EFF5;
}

.form-title {
    margin: 0 0 .25rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #18314f;
    letter-spacing: .2px;
}

.form-subtitle {
    margin: 0;
    font-size: .95rem;
    color: #506680;
}

/* Django as_p içindeki <p> ve form elemanlarını kurumsal hâle getir */
.corp-form {
    padding: 1.25rem 1.5rem 1.5rem;
}

.corp-form p {
    margin: 0 0 1rem 0;                    /* as_p satır aralığı */
}

.corp-form label {
    display: inline-block;
    margin-bottom: .4rem;
    font-weight: 500;
    color: #2a3b4f;
    font-size: .95rem;
}

.corp-form input[type="text"],
.corp-form input[type="email"],
.corp-form input[type="tel"],
.corp-form input[type="number"],
.corp-form input[type="url"],
.corp-form input[type="date"],
.corp-form select,
.corp-form textarea {
    width: 100%;
    padding: .8rem .9rem;
    border: 1px solid #cfe3ed;             /* mavi tonlu çerçeve */
    border-radius: 10px;
    background: #fbfdff;
    font-family: inherit;
    font-size: .98rem;
    color: #23364a;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    box-sizing: border-box;
}

.corp-form textarea {
    min-height: 140px;
    resize: vertical;
}

.corp-form input:focus,
.corp-form select:focus,
.corp-form textarea:focus {
    border-color: #7ec0da;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(126,192,218,0.18);
}

/* Yardım/Hata metinleri */
.corp-form .helptext,
.corp-form .errorlist {
    font-size: .88rem;
    margin-top: .35rem;
}

.corp-form .helptext {
    color: #5a728c;
}

.corp-form .errorlist {
    color: #b23a48;                         /* kurumsal kırmızımsı uyarı */
    list-style: none;
    padding-left: 0;
}

/* Kurumsal buton – mevcut .cta-button ile uyumlu */
.form-submit {
    width: 100%;
    margin-top: .5rem;
    padding: .9rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease;
    background-color: #4a69bd;              /* contact sayfasındaki tonla uyum */
    color: #fff;
}

.form-submit:hover {
    background-color: #3b539a;
    box-shadow: 0 6px 16px rgba(58, 93, 155, 0.28);
}

.form-submit:active {
    transform: translateY(1px);
}

/* Küçük ekranlarda formları alta alta göster */
@media (max-width: 992px) {
    .forms-two-col {
        grid-template-columns: 1fr;
    }
}

/* Brokerage services kartlarını esnek kolon yapısına geçir */
.brokerage-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); /* her zaman yan yana, dar ekranda akıllı kırılır */
    gap: 24px;
    align-items: stretch;
}

/* Kartları dikey esnet, metin taşmasın */
.brokerage-services .service-card-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Medya alanı: sabit oran + yükseklik otomatik sığdırma */
.brokerage-services .service-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;                  /* oranı istersen 16/9 veya 1/1 yapabilirsin */
    overflow: hidden;
    background: #f2f6fa;
}

/* Görseli kutunun boyuna fit et */
.brokerage-services .service-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;                     /* taşıyorsa kırpar, boşluk bırakmaz */
    object-position: center;
}

/* İçerik alanı kartın geri kalanını kaplasın */
.brokerage-services .service-card-flex .service-card-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem 1.25rem 1.25rem;
    flex: 1 1 auto;
}

/* Daha sıkı grid için büyük ekran optimizasyonu */
@media (min-width: 1200px) {
    .brokerage-services .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* === Brokerage 5'li grid – ekran görüntüsü ile birebir === */
.brokerage-services .services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);   /* geniş ekranda 5 yan yana */
  gap:32px;
  align-items:start;
}

/* Kart görünümü: arka plan ve hover efektlerini sadeleştir */
.brokerage-services .service-card{
  background:transparent;
  box-shadow:none;
  border-radius:0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align:center;
}

/* Tıklanabilir kart stili - link olan kartlar için */
a.service-card-link.service-card {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

a.service-card-link.service-card:hover {
  transform: translateY(-8px);
}

a.service-card-link.service-card:hover img {
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

a.service-card-link.service-card:hover h3 {
  color: #0056b3;
}

/* Link olmayan kartlar için hover yok */
div.service-card:hover { transform: none; }

/* Görsel: kare oran, taşmadan doldur, yuvarlatılmış + gölge */
.brokerage-services .service-card img{
  display:block;
  width:100%;
  aspect-ratio:1/1;            /* kare kutu */
  height:auto;
  object-fit:contain;
  object-position:center;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  background:#f2f6fa;          /* boşta gri arkaplan */
}

/* Başlık ve içerik kutusu: ortala, genişliği sınırlı tut */
.brokerage-services .service-card-content{
  max-width:260px;
  margin:14px auto 0;
  padding:0;
}
.brokerage-services .service-card h3{
  margin:10px 0 0;
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#111;                  /* siyaha yakın, baskın */
  line-height:1.35;
}

/* Alt açıklama metni çok uzarsa dengeli kır */
.brokerage-services .service-card-content p{
  margin:.4rem 0 0;
  font-size:.9rem;
  line-height:1.5;
}

/* Duyarlı kırılımlar: 4-3-2-1 kolon */
@media (max-width: 1399px){ .brokerage-services .services-grid{ grid-template-columns:repeat(4,1fr); } }
@media (max-width: 991px){  .brokerage-services .services-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width: 767px){  .brokerage-services .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 479px){  .brokerage-services .services-grid{ grid-template-columns:1fr; } }

/* === Alt vurgu metni (ek) === */
.brokerage-closing{
  margin-top:3.5rem;
  margin-bottom:2.5rem;
  text-align:center;
}
.brokerage-closing .closing-line{
  font-weight:700;
  font-size:1.05rem;
  line-height:1.7;
  letter-spacing:.02em;
  max-width:1100px;
  margin:0 auto 1.2rem;
  color:#000;
}
.brokerage-closing .closing-brand{
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.02em;
  color:#000;
  margin:0;
}


/* === Hakkımızda – HERO görseli tam gösterim, kırpma yok === */

/* === Hakkımızda – HERO alanını çerçeve yap ve tamamen imajla doldur === */
.about-us-page .hero{
  padding: 20px 0 16px;
  background: #fff;
}

/* ÇERÇEVE: container'ı karta çeviriyoruz */
.about-us-page .hero .container{
  max-width: 1180px;
  padding: 0;                 /* iç boşluk kalmasın */
  margin: 0 auto;
  height: clamp(280px, 36vw, 520px); /* referans yüksekliğe yakın, responsive */
  border-radius: 12px;
  overflow: hidden;           /* img çerçeveyi taşırsa kes */
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  background: #000;           /* yüklenme anında boşluk görünmesin */
  border: 1px solid rgba(0,0,0,.12);
}

/* İMAJ: çerçevenin tamamını doldur */
.about-us-page .hero-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* boşluk yok, çerçeveyi tam doldurur */
  object-position: center;    /* orta odak */
  border: 0;                  /* iç kenarlık istemiyoruz */
  box-shadow: none;
  background: transparent;
}


/* Başlık görünümü */
.about-us-page h1 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 30px;
  letter-spacing: 0.04em;
}

/* Metin hizalama ve aralıklar */
.about-us-page .content-section .container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #222;
}

.about-us-page .content-block {
  margin-bottom: 24px;
  text-align: justify;
}

.about-us-page .content-block h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-us-page .content-block h4 {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

/* Eski hero tanımları kaldırıldı - dosya sonunda tanımlı */


/* === IT & E-Ticaret sayfası — Referansla birebir hizalama === */
.it-ecommerce-page .container{max-width:1120px}

.it-ecommerce-page .hero-section{padding:20px 0 0}
.it-ecommerce-page .page-title{
  font-size:3.2rem; font-weight:700; letter-spacing:.02em;
  text-transform:uppercase; text-align:center; margin:18px 0 22px
}
.it-ecommerce-page .hero-text{
  max-width:980px; margin:0 auto; text-align:center;
  font-size:1.05rem; line-height:1.9; color:#111
}

/* Üç servis bloğu – ikon, başlık ve küçük açıklama */
.it-ecommerce-page .services-section{padding:46px 0 70px}
.it-ecommerce-page .service-cards-container{
  display:grid; grid-template-columns:repeat(3,1fr); gap:80px; align-items:start; text-align:center
}
.it-ecommerce-page .service-card{background:none; box-shadow:none}
.it-ecommerce-page .service-image img{max-width:180px; display:block; margin:0 auto}
.it-ecommerce-page .service-title{
  margin:14px 0 10px; font-size:.95rem; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase; color:#111
}
.it-ecommerce-page .service-description{
  font-size:.78rem; line-height:1.35; color:#111; max-width:320px; margin:0 auto
}

/* Promosyon bloğu (başlık küçük büyük harf ve merkezde) */
.it-ecommerce-page .promotion-section{padding:56px 0 28px; text-align:center}
.it-ecommerce-page .promotion-section .section-title{
  font-size:1.2rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px
}
.it-ecommerce-page .promotion-text{
  max-width:980px; margin:0 auto 22px; font-size:.95rem; line-height:1.8; color:#111
}
.it-ecommerce-page .promotion-cta{font-size:1.35rem; font-weight:700; letter-spacing:.04em}

/* Markalar – 3 sütun grid, her logo için sabit kutu */
.it-ecommerce-page .brands-section{padding:20px 0 80px; text-align:center}
.it-ecommerce-page .brands-section .section-title{
  font-size:1.35rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; margin-bottom:26px
}
.it-ecommerce-page .brand-logos-container{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:48px 70px; justify-items:center; align-items:center; max-width:1100px; margin:0 auto
}
.it-ecommerce-page .brand-logo{
  width:320px; height:160px; display:flex; align-items:center; justify-content:center
}
.it-ecommerce-page .brand-logo img{max-width:100%; max-height:100%; object-fit:contain}

/* Duyarlı kırılım */
@media (max-width:991px){
  .it-ecommerce-page .service-cards-container{grid-template-columns:1fr; gap:36px}
  .it-ecommerce-page .service-image img{max-width:150px}
  .it-ecommerce-page .brand-logos-container{grid-template-columns:1fr; gap:28px}
  .it-ecommerce-page .brand-logo{width:80%; height:auto}
}


/* Eski hero tanımları kaldırıldı - dosya sonunda tanımlı */







/* === ANA SAYFA TEK EKRAN FIT DÜZENLEME === */
/* Tüm içerik scroll olmadan tek ekrana sığacak */

/* Ana sayfa için özel body ayarı */
body:has(.hero-home) {
    overflow-x: hidden;
}

.hero-home .container,
.business-areas .container {
    max-width: 1180px;
    width: 92%;
    margin: 0 auto;
}

/* Hero section */
.hero-home {
    padding: 20px 0 16px 0 !important;
    background-color: #fff;
}

.hero-home-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.hero-home-image {
    flex: 0 1 65%;
    max-width: 65%;
    /* Tüm görsel stilleri sıfırla */
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    outline: none !important;
}

.hero-home-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.hero-home-text {
    flex: 0 1 35%;
    max-width: 35%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 28px;
    background: #ecf2f5;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.hero-home-text > p {
    margin: 0;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    font-size: 1rem;
    color: #222;
}

/* Business Areas - Alt 3 kart */
.business-areas {
    padding: 12px 0 20px 0 !important;
}

.area-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    justify-content: center;
    align-items: stretch;
}

/* Kartların görselleri tam oturacak şekilde - BOŞLUK YOK */
.area-cards .card {
    border-radius: 12px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: relative;
    height: calc(100vh - 250px) !important; /* Kalan alan kartlara */
    min-height: 200px;
    max-height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.25s ease;
}

.area-cards .card .card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 40%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
}

.area-cards .card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* Footer gizle - ana sayfada scroll olmasın */
body:has(.hero-home) footer {
    display: none;
}

/* Responsive ayarlar */
@media (max-width: 991px) {
    .hero-home-content {
        flex-direction: column;
        gap: 16px;
    }
    .hero-home-text {
        min-height: 120px;
    }
    .area-cards {
        grid-template-columns: 1fr;
    }
    .area-cards .card {
        height: 180px;
        max-height: none;
    }
    body:has(.hero-home) footer {
        display: block;
    }
}

@media (max-height: 700px) {
    .hero-home-text > p {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    .area-cards .card {
        height: calc(40vh - 30px);
        min-height: 120px;
        max-height: 180px;
    }
}

/* === HİZMET DETAY SAYFALARI ORTAK STİLLER === */
/* Spare Parts, Prina, API Feed Additives, Trigger Sprayer, Bag-in-Box */

.spare-parts-page,
.prina-page,
.trigger-sprayer-page,
.bag-in-box-page,
.api-feed-additives-page {
    padding: 40px 0 60px;
    background: #f9fafb;
}

.spare-parts-page .page-header,
.prina-page .page-header,
.trigger-sprayer-page .page-header,
.bag-in-box-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.spare-parts-page .page-header h1,
.prina-page .page-header h1,
.trigger-sprayer-page .page-header h1,
.bag-in-box-page .page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}

/* İki kolonlu düzen - Görsel ve metin yan yana, üst hizada */
.spare-parts-page .row,
.prina-page .row,
.trigger-sprayer-page .row,
.bag-in-box-page .row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Görsel kolonu - sticky yapısı ile sabit kalır */
.spare-parts-page .image-column,
.prina-page .image-column,
.trigger-sprayer-page .image-column,
.bag-in-box-page .image-column {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Metin kolonu */
.spare-parts-page .text-column,
.prina-page .text-column,
.trigger-sprayer-page .text-column,
.bag-in-box-page .text-column {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Görseller */
.spare-parts-page .image-column img,
.prina-page .image-column img,
.trigger-sprayer-page .image-column img,
.bag-in-box-page .image-column img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spare-parts-page .image-column img:hover,
.prina-page .image-column img:hover,
.trigger-sprayer-page .image-column img:hover,
.bag-in-box-page .image-column img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* İçerik bölümleri */
.spare-parts-page .content-section,
.prina-page .content-section,
.trigger-sprayer-page .content-section,
.bag-in-box-page .content-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #eef1f5;
}

.spare-parts-page .content-section:last-child,
.prina-page .content-section:last-child,
.trigger-sprayer-page .content-section:last-child,
.bag-in-box-page .content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spare-parts-page .content-section h2,
.prina-page .content-section h2,
.trigger-sprayer-page .content-section h2,
.bag-in-box-page .content-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spare-parts-page .content-section h2::before,
.prina-page .content-section h2::before,
.trigger-sprayer-page .content-section h2::before,
.bag-in-box-page .content-section h2::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #0056b3;
    border-radius: 2px;
}

.spare-parts-page .content-section p,
.prina-page .content-section p,
.trigger-sprayer-page .content-section p,
.bag-in-box-page .content-section p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
}

/* Feature sections (Bag-in-Box) */
.bag-in-box-page .feature-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef1f5;
}

.bag-in-box-page .feature-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.4rem;
}

.bag-in-box-page .feature-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
}

.bag-in-box-page .feature-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
}

/* Closing section */
.spare-parts-page .closing-section,
.prina-page .closing-section,
.trigger-sprayer-page .closing-section,
.bag-in-box-page .closing-section {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f0f7ff;
    border-radius: 10px;
    border-left: 4px solid #0056b3;
}

.spare-parts-page .closing-section p,
.prina-page .closing-section p,
.trigger-sprayer-page .closing-section p,
.bag-in-box-page .closing-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Spare part items */
.spare-parts-page .spare-part-item {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* CTA Button stili */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4a69bd;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #3b539a;
    transform: translateY(-2px);
}

/* Responsive - Ürün sayfaları */
@media (max-width: 991px) {
    .spare-parts-page .row,
    .prina-page .row,
    .trigger-sprayer-page .row,
    .bag-in-box-page .row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .spare-parts-page .image-column,
    .prina-page .image-column,
    .trigger-sprayer-page .image-column,
    .bag-in-box-page .image-column {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .spare-parts-page .image-column img,
    .prina-page .image-column img,
    .trigger-sprayer-page .image-column img,
    .bag-in-box-page .image-column img {
        width: calc(50% - 6px);
    }
    
    .spare-parts-page .text-column,
    .prina-page .text-column,
    .trigger-sprayer-page .text-column,
    .bag-in-box-page .text-column {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .spare-parts-page .image-column img,
    .prina-page .image-column img,
    .trigger-sprayer-page .image-column img,
    .bag-in-box-page .image-column img {
        width: 100%;
    }
    
    .spare-parts-page .page-header h1,
    .prina-page .page-header h1,
    .trigger-sprayer-page .page-header h1,
    .bag-in-box-page .page-header h1 {
        font-size: 1.75rem;
    }
}

/* === API FEED ADDITIVES SAYFA STİLLERİ === */

.api-feed-additives-page .page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.api-feed-additives-page .page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}

/* API Feed Additives - Kurumsal iki kolonlu düzen */
.api-feed-additives-page .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.api-feed-additives-page .image-column {
    position: sticky;
    top: 100px;
}

/* Görsel orantılı ve kurumsal */
.api-feed-additives-page .image-column img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
}

.api-feed-additives-page .text-column {
    background: #fff;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.api-feed-additives-page .content-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #eef1f5;
}

.api-feed-additives-page .content-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.api-feed-additives-page .content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

.api-feed-additives-page .cta-section {
    text-align: center;
    padding: 1rem 0;
}

.api-feed-additives-page .closing-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-radius: 12px;
    border-left: 4px solid #0056b3;
    text-align: center;
}

.api-feed-additives-page .closing-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
    margin: 0 0 1.25rem 0;
}

@media (max-width: 991px) {
    .api-feed-additives-page .row {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .api-feed-additives-page .image-column {
        position: static;
    }
    
    .api-feed-additives-page .image-column img {
        max-height: 350px;
    }
    
    .api-feed-additives-page .text-column {
        padding: 28px 24px;
    }
}


/* ============================================
   KAPSAMLI MOBİL RESPONSİVE STİLLER
   ============================================ */

/* === GENEL MOBİL KURALLAR === */
@media (max-width: 991px) {
    .container {
        width: 92% !important;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .container {
        width: 94% !important;
        padding: 0 10px;
    }
    
    /* Genel font boyutu ayarları */
    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.15rem !important; }
    
    /* Genel padding azaltma */
    section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

@media (max-width: 480px) {
    .container {
        width: 96% !important;
        padding: 0 8px;
    }
    
    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.25rem !important; }
    h3 { font-size: 1.05rem !important; }
}

/* === HOME PAGE MOBİL === */
@media (max-width: 991px) {
    .hero-home-content {
        flex-direction: column !important;
        height: auto !important;
        max-height: none !important;
        gap: 15px !important;
        align-items: stretch !important;
    }
    
    .hero-home-image {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 220px !important;
    }
    
    .hero-home-text {
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
        min-height: 100px !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        align-self: stretch !important;
    }
    
    .hero-home-text > p {
        font-size: 0.95rem !important;
    }
    
    .area-cards {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .area-cards .card {
        height: 180px !important;
        max-height: none !important;
        min-height: 150px !important;
    }
    
    /* Ana sayfada scroll'u aktif et mobilde */
    body:has(.hero-home) {
        overflow: auto !important;
    }
    
    body:has(.hero-home) main {
        height: auto !important;
        overflow: visible !important;
    }
    
    body:has(.hero-home) footer {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero-home-image {
        height: 180px !important;
    }
    
    .hero-home-text {
        padding: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .hero-home-text > p {
        font-size: 0.9rem !important;
    }
    
    .area-cards .card {
        height: 160px !important;
        min-height: 140px !important;
    }
    
    .area-cards .card h3 {
        font-size: 0.85rem !important;
    }
}

/* === ABOUT PAGE MOBİL === */
@media (max-width: 767px) {
    .about-us-page .hero .container {
        height: 200px !important;
        border-radius: 8px;
    }
    
    .about-us-page h1 {
        font-size: 1.75rem !important;
        margin-top: 25px !important;
        margin-bottom: 20px !important;
    }
    
    .about-us-page .content-section .container {
        padding: 0 10px;
    }
    
    .about-us-page .content-block {
        margin-bottom: 20px;
        text-align: left;
    }
    
    .about-us-page .content-block p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .about-us-page .hero .container {
        height: 160px !important;
    }
    
    .about-us-page h1 {
        font-size: 1.5rem !important;
    }
}

/* === CONTACT PAGE MOBİL === */
@media (max-width: 991px) {
    .contact-page .contact-details {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contact-page .contact-item {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact-page .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
    
    .contact-page .contact-details {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
        align-items: center;
        padding: 0 10px;
    }
    
    .contact-page .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-page .contact-item img {
        width: 32px;
        height: 32px;
    }
    
    .contact-page .contact-item p {
        font-size: 0.85rem;
        word-break: break-word;
        line-height: 1.5;
        margin: 0;
    }
    
    .contact-page .social-media-icons {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .contact-page .social-media-icons img {
        width: 32px;
        height: 32px;
    }
    
    .contact-page .contact-form-container {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .contact-page .form-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-page .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-page .contact-form .form-row input,
    .contact-page .contact-form .form-row select {
        padding: 12px;
    }
    
    .contact-page .contact-form textarea {
        padding: 12px;
        min-height: 120px;
    }
    
    .contact-page .contact-form button {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-page .contact-form-container {
        padding: 20px 15px;
    }
    
    .contact-page .form-header h2 {
        font-size: 1.3rem;
    }
}

/* === CONSULTANCY PAGE MOBİL === */
@media (max-width: 991px) {
    .consultancy-page .container {
        width: 94% !important;
    }
    
    .consultancy-page .consultancy-header h1 {
        font-size: 1.6rem;
    }
    
    .consultancy-page .consultancy-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .consultancy-page .consultancy-header {
        padding: 1rem 0;
    }
    
    .consultancy-page .consultancy-header h1 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .consultancy-page .consultancy-header p {
        font-size: 0.9rem;
    }
    
    .consultancy-page .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .consultancy-page .packages-container {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    
    .consultancy-page .package-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .consultancy-page .package-header {
        padding: 1rem;
    }
    
    .consultancy-page .package-title {
        font-size: 1.1rem;
    }
    
    .consultancy-page .package-body {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
    
    .consultancy-page .package-footer {
        padding: 1rem;
    }
    
    .consultancy-page .optional-services-section {
        padding: 1.5rem 0;
    }
    
    .consultancy-page .optional-services-card {
        max-width: 100%;
    }
    
    .consultancy-page .optional-services-title {
        font-size: 1.25rem;
    }
    
    /* Distributorship formları mobilde */
    .forms-two-col {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .form-card-header {
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.1rem;
    }
    
    .corp-form {
        padding: 1rem;
    }
    
    .corp-form input,
    .corp-form select,
    .corp-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .consultancy-page .consultancy-header h1 {
        font-size: 1.25rem;
    }
    
    .consultancy-page .section-title {
        font-size: 1.15rem;
    }
    
    .consultancy-page .package-title {
        font-size: 1rem;
    }
}

/* === IT & E-COMMERCE PAGE MOBİL === */
@media (max-width: 991px) {
    .it-ecommerce-page .page-title {
        font-size: 2rem !important;
    }
    
    .it-ecommerce-page .hero-text {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }
    
    .it-ecommerce-page .service-cards-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .it-ecommerce-page .service-image img {
        max-width: 140px !important;
    }
    
    .it-ecommerce-page .brand-logos-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px 20px !important;
    }
    
    .it-ecommerce-page .brand-logo {
        width: 100% !important;
        height: auto !important;
    }
    
    .it-ecommerce-page .brand-logo img {
        max-width: 160px;
        max-height: 80px;
    }
}

@media (max-width: 767px) {
    .it-ecommerce-page .hero-section {
        padding: 15px 0 0 !important;
    }
    
    .it-ecommerce-page .page-title {
        font-size: 1.6rem !important;
        margin: 10px 0 15px !important;
    }
    
    .it-ecommerce-page .hero-text {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }
    
    .it-ecommerce-page .services-section {
        padding: 30px 0 40px !important;
    }
    
    .it-ecommerce-page .service-cards-container {
        gap: 25px !important;
    }
    
    .it-ecommerce-page .service-image img {
        max-width: 120px !important;
    }
    
    .it-ecommerce-page .service-title {
        font-size: 0.9rem !important;
    }
    
    .it-ecommerce-page .service-description {
        font-size: 0.8rem !important;
    }
    
    .it-ecommerce-page .promotion-section {
        padding: 35px 0 20px !important;
    }
    
    .it-ecommerce-page .promotion-section .section-title {
        font-size: 1rem !important;
    }
    
    .it-ecommerce-page .promotion-text {
        font-size: 0.85rem !important;
    }
    
    .it-ecommerce-page .promotion-cta {
        font-size: 1.1rem !important;
    }
    
    .it-ecommerce-page .brands-section {
        padding: 20px 0 50px !important;
    }
    
    .it-ecommerce-page .brands-section .section-title {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }
    
    .it-ecommerce-page .brand-logos-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 15px !important;
    }
    
    .it-ecommerce-page .brand-logo img {
        max-width: 130px;
        max-height: 65px;
    }
}

@media (max-width: 480px) {
    .it-ecommerce-page .page-title {
        font-size: 1.4rem !important;
    }
    
    .it-ecommerce-page .brand-logos-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .it-ecommerce-page .brand-logo img {
        max-width: 180px;
        max-height: 90px;
    }
}

/* === BROKERAGE PAGE MOBİL === */
@media (max-width: 991px) {
    .brokerage-header h1 {
        font-size: 1.75rem;
    }
    
    .brokerage-intro p {
        font-size: 1rem;
    }
    
    .brokerage-services .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 767px) {
    .brokerage-header {
        margin-bottom: 2rem;
    }
    
    .brokerage-header h1 {
        font-size: 1.5rem;
    }
    
    .brokerage-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .brokerage-services .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .brokerage-services .service-card h3 {
        font-size: 0.8rem !important;
    }
    
    .brokerage-services .service-card-content p {
        font-size: 0.8rem;
    }
    
    .brokerage-closing {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .brokerage-closing .closing-line {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .brokerage-closing .closing-brand {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .brokerage-services .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .brokerage-services .service-card img {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .brokerage-header h1 {
        font-size: 1.35rem;
    }
}

/* === PRODUCT DETAIL PAGES MOBİL (Spare Parts, Prina, Trigger, Bag-in-Box, API Feed) === */
@media (max-width: 991px) {
    .spare-parts-page,
    .prina-page,
    .trigger-sprayer-page,
    .bag-in-box-page,
    .api-feed-additives-page {
        padding: 30px 0 40px;
    }
    
    .spare-parts-page .row,
    .prina-page .row,
    .trigger-sprayer-page .row,
    .bag-in-box-page .row,
    .api-feed-additives-page .row {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .spare-parts-page .image-column,
    .prina-page .image-column,
    .trigger-sprayer-page .image-column,
    .bag-in-box-page .image-column,
    .api-feed-additives-page .image-column {
        position: static !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }
    
    .spare-parts-page .image-column img,
    .prina-page .image-column img,
    .trigger-sprayer-page .image-column img,
    .bag-in-box-page .image-column img {
        width: calc(50% - 5px) !important;
    }
    
    .spare-parts-page .text-column,
    .prina-page .text-column,
    .trigger-sprayer-page .text-column,
    .bag-in-box-page .text-column,
    .api-feed-additives-page .text-column {
        padding: 25px 20px !important;
    }
}

@media (max-width: 767px) {
    .spare-parts-page .page-header h1,
    .prina-page .page-header h1,
    .trigger-sprayer-page .page-header h1,
    .bag-in-box-page .page-header h1,
    .api-feed-additives-page .page-header h1 {
        font-size: 1.5rem !important;
    }
    
    .spare-parts-page .image-column img,
    .prina-page .image-column img,
    .trigger-sprayer-page .image-column img,
    .bag-in-box-page .image-column img {
        width: 100% !important;
    }
    
    .spare-parts-page .content-section h2,
    .prina-page .content-section h2,
    .trigger-sprayer-page .content-section h2,
    .bag-in-box-page .content-section h2,
    .api-feed-additives-page .content-section h2 {
        font-size: 1.1rem !important;
    }
    
    .spare-parts-page .content-section p,
    .prina-page .content-section p,
    .trigger-sprayer-page .content-section p,
    .bag-in-box-page .content-section p,
    .api-feed-additives-page .content-section p {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
    }
    
    .bag-in-box-page .feature-section h3 {
        font-size: 1rem;
    }
    
    .bag-in-box-page .feature-section h4 {
        font-size: 0.9rem;
    }
    
    .spare-parts-page .closing-section,
    .prina-page .closing-section,
    .trigger-sprayer-page .closing-section,
    .bag-in-box-page .closing-section {
        padding: 1rem;
    }
    
    .spare-parts-page .closing-section p,
    .prina-page .closing-section p,
    .trigger-sprayer-page .closing-section p,
    .bag-in-box-page .closing-section p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .spare-parts-page,
    .prina-page,
    .trigger-sprayer-page,
    .bag-in-box-page,
    .api-feed-additives-page {
        padding: 20px 0 30px;
    }
    
    .spare-parts-page .page-header h1,
    .prina-page .page-header h1,
    .trigger-sprayer-page .page-header h1,
    .bag-in-box-page .page-header h1,
    .api-feed-additives-page .page-header h1 {
        font-size: 1.35rem !important;
    }
    
    .spare-parts-page .text-column,
    .prina-page .text-column,
    .trigger-sprayer-page .text-column,
    .bag-in-box-page .text-column,
    .api-feed-additives-page .text-column {
        padding: 20px 15px !important;
    }
}

/* === BROKERAGE PRODUCT DETAIL MOBİL === */
@media (max-width: 991px) {
    .product-detail .row {
        flex-direction: column;
        gap: 25px;
    }
    
    .product-detail .col-md-5,
    .product-detail .col-md-7 {
        width: 100% !important;
    }
    
    .product-detail .col-md-5 img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 15px;
        display: block;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 1.5rem !important;
    }
    
    .product-detail {
        padding: 40px 0 !important;
    }
    
    .product-detail h2 {
        font-size: 1.4rem;
    }
    
    .product-detail h3 {
        font-size: 1.15rem;
    }
    
    .product-detail p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .product-detail .cta-section {
        margin-top: 40px !important;
        padding: 25px 15px !important;
    }
    
    .product-detail .cta-section p {
        font-size: 0.9rem;
    }
}

/* === FOOTER MOBİL === */
@media (max-width: 767px) {
    footer {
        padding: 30px 0;
    }
    
    footer p {
        font-size: 0.85rem;
    }
}

/* === CTA BUTTON MOBİL === */
@media (max-width: 767px) {
    .cta-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* === GENEL GÖRSEL RESPONSIVE === */
@media (max-width: 767px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .img-fluid {
        max-width: 100%;
        height: auto;
    }
}
