/* ------------------------------------------------------------------- */
/* NEW DESIGN: Luxury & Tranquility Palette */
/* ------------------------------------------------------------------- */

:root {
    /* New Palette: Deep Forest Green, Soft Ivory, Warm Gold/Bronze */
    --primary-color: #385E72;      /* Deep Teal/Slate Blue (Professional & Calming) */
    --secondary-color: #F8F4F0;    /* Soft Ivory/Off-White (Clean Background) */
    --accent-color: #B58463;       /* Warm Gold/Bronze (For buttons and highlights) */
    --text-color: #333;
    --light-text-color: #555;
    
    /* Using a cleaner, more modern font stack */
    --font-family: 'Montserrat', sans-serif; 
    --heading-font: 'Playfair Display', serif; 
}

/* ------------------------------------------------------------------- */
/* Base Styles & Reset */
/* ------------------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff; /* Čista bijela */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--heading-font); /* Use a more elegant font for titles */
}

/* General Section Spacing */
section {
    padding: 80px 5%; /* Increased padding for more breathing room */
    text-align: center;
}

h2 {
    font-size: 3em; /* Slightly larger headings */
    margin-bottom: 50px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* ------------------------------------------------------------------- */
/* Header & Navigation */
/* ------------------------------------------------------------------- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.8em;
    color: var(--primary-color);
    font-weight: bold;
}

.navbar {
    display: flex;
    justify-content: space-between; /* Razmak između loga i menija/hamburgera */
    align-items: center;
    padding: 15px 0%;
    max-width: 1200px;
    margin: 0 auto;
}

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

nav a:not(.cta-button a) {
    text-decoration: none;
    color: var(--light-text-color);
    padding: 10px 18px;
    transition: color 0.3s, border-bottom 0.3s;
}

nav a:not(.cta-button a):hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Call-to-Action (CTA) Button Styling - Using the new accent color */
.cta-button a {
    background: var(--accent-color);
    color: white;
    padding: 12px 15px; /* Slightly larger button */
    border-radius: 30px; /* Rounded pill shape */
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}
.cta-button a:hover {
    background: #A3755A; /* Slightly darker gold */
    transform: translateY(-2px); /* Lift effect on hover */
}

/* ------------------------------------------------------------------- */
/* Hero Section */
/* ------------------------------------------------------------------- */

#hero {
    /* Razdvajamo gradijent i sliku radi sigurnosti */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('../images/masaza1.webp');

    /* Ova tri svojstva moraju biti odvojena da bi cover radio na oba sloja */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover !important;

    /* Fiksna visina na mobitelu zna praviti probleme s vh, koristimo min-height */
    width: 100%;
    min-height: 70vh;

    /* Centriranje teksta */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;

    /* Uklanjanje bilo kakvog razmaka do headera */
    margin-top: 0;
}

/* Poseban popravak za mobitele (ispod 768px) */
@media screen and (max-width: 768px) {
    #hero {
        /* Prisiljavamo mobitel da sliku tretira kao 'scroll', ne 'fixed' */
        background-attachment: scroll !important;
        /* Ako je 70vh i dalje premalo, ovdje možeš staviti fiksno npr. 500px */
        min-height: 500px;
    }
}

#hero h1 {
    font-size: 4.5em; /* Larger, more impactful heading */
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

/* ------------------------------------------------------------------- */
/* Services Section */
/* ------------------------------------------------------------------- */

.service-list {
    display: flex;
    justify-content: center;
    gap: 40px; /* Increased gap */
    flex-wrap: wrap; 
}

.service-card {
    background: white; /* Changed background to clean white */
    border-radius: 12px; 
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Stronger but softer shadow */
    max-width: 380px;
    flex-basis: 30%; 
    text-align: left;
    border-top: 5px solid var(--accent-color); /* Subtle accent line */
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px); /* Lift on hover */
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6em;
}

.service-card h2 {
    font-size: clamp(2.5rem, 5vw, 2.8rem);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.duration-price {
    font-weight: bold;
    color: var(--accent-color); /* Use accent color for prices */
    margin-top: 20px;
    font-size: 1.1em;
}

/* Basic Responsiveness for Service Cards */
@media (max-width: 900px) {
    .service-list {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        max-width: 90%;
        flex-basis: auto;
	      padding: 15px;
    }
}

/* ------------------------------------------------------------------- */
/* Gallery Section */
/* ------------------------------------------------------------------- */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Increased gap */
    margin: 40px auto;
    max-width: 800px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item img {
    width: 100%;
    object-fit: cover; 
    transition: opacity 0.3s ease;
    display: block;
}

.gallery-item img:hover {
    opacity: 0.9;
}

/* Responsive Video Container (no change needed, structure is good) */
/* ... existing .video-container CSS ... */

/* ------------------------------------------------------------------- */
/* Location & Contact Section - FIXED HEIGHT CONTROL */
/* ------------------------------------------------------------------- */

#location {
    /* Adjusted padding to be symmetrical and slightly reduced */
    padding-top: 40px; 
    padding-bottom: 40px; 
    padding-left: 5%;
    padding-right: 5%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-info {
    text-align: left;
    line-height: 2.2; 
    font-size: 1.1em;
    color: var(--light-text-color);
}

.contact-info h2 {
    font-size: 2em;
    margin-bottom: 5px;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-align: center;
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: center;
}

.map-container {
    /* Set the desired size for the container */
    width: 95%; 
    max-width: 950px; 
    
    /* NEW: Set a consistent height for the map container */
    height: 450px; /* A good height for a large map on desktop */
    
    border-radius: 12px;
    overflow: hidden; 
    position: relative; /* Required for the iframe positioning */
}

/* On smaller screens (e.g., tablets/mobiles), we might want it slightly shorter */
@media (max-width: 768px) {
    .map-container {
        height: 350px; 
    }
}

/* This iframe CSS is now simple because the parent (.map-container) controls the size */
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Fills the height defined by the parent */
    border: 0;
    border-radius: 0; 
}
/* ... existing map-container iframe CSS ... */

/* ------------------------------------------------------------------- */
/* Footer */
/* ------------------------------------------------------------------- */

footer {
    margin-top: 0;
}

.cookie-button {
  background: var(--accent-color);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  transition: background 0.3s;
  border: #545454;
}


/* ------------------------------------------------------------------- */
/* GIFT CARD SECTION STYLING */
/* ------------------------------------------------------------------- */

#gift-card {
    /* Adjusted padding to be symmetrical and slightly reduced */
    padding-top: 40px; 
    padding-bottom: 40px; 
    padding-left: 5%;
    padding-right: 5%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.gift-card-content {
    background-color: white;
    padding: 50px 5%;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px; 
    max-width: 1100px;
    width: 100%;
}

.gift-card-content h2 {
    margin-bottom: 30px;
}

.gift-card-layout {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 50px; 
    text-align: left; 
    flex-wrap: wrap;
}

.gift-card-media {
    flex: 1;
    max-width: 45%;
    min-width: 300px;
}

.gift-card-media img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gift-card-details {
    flex: 1;
    max-width: 50%;
    padding: 20px 0;
    color: var(--light-text-color);
}

.gift-card-details .cta-button {
    margin-top: 25px;
    margin-bottom: 0; 
}

.gift-card-details ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.gift-card-details li {
    padding-bottom: 5px;
    font-weight: bold;
}

.important-note {
    margin-top: 20px;
    color: var(--accent-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .gift-card-layout {
        flex-direction: column;
        gap: 30px;
    }
    .gift-card-media, .gift-card-details {
        max-width: 100%;
        min-width: auto;
        text-align: center;
    }
}

/* ------------------------------------------------------------------- */
/* CONTACT FORM STYLING */
/* ------------------------------------------------------------------- */

#contact {
    padding: 80px 5%;
    background-color: var(--secondary-color); /* Svjetlija pozadina */
}

#reservation-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

#reservation-form input[type="text"],
#reservation-form input[type="email"],
#reservation-form input[type="date"],
#reservation-form input[type="time"],
#reservation-form select,
#reservation-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: var(--font-family);
    box-sizing: border-box;
}

#reservation-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--light-text-color);
}

/* Stil za Submit gumb (koristi stil CTA gumba) */
#reservation-form button[type="submit"] {
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;

    /* Nasljeđuje stilove iz CTA gumba */
    background: var(--accent-color);
    color: white;
    padding: 15px 25px; 
    border-radius: 30px; 
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.3s;
}

#reservation-form button[type="submit"]:hover {
    background: #A3755A;
}

/* --- STILOVI ZA HAMBURGER (Skriveno na desktopu) --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color); /* Boja vašeg teksta/loga */
    transition: 0.3s;
}

/* --- MOBILNA NAVIGACIJA (Ispod 768px) --- */
@media screen and (max-width: 854px) {
    .hamburger {
        display: flex; /* Prikazujemo hamburger */
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Inicijalno sakriveno desno van ekrana */
        top: 0;
        width: 70%; /* Meni zauzima 70% širine ekrana */
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Klasa koju dodajemo preko JS-a za otvaranje */
    .nav-links.active {
        right: 0;
    }

    /* Prilagodba gumba unutar menija */
    .nav-links .cta-button {
        margin-top: 10px;
    }

    /* Animacija hamburgera u 'X' kad je otvoren */
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

.about-me {
  padding: 60px 20px;
  background-color: #fdfdfd; /* Light off-white for a spa feel */
}

.about-me p {
  max-width: 800px; /* Narrower line length is easier to read */
  margin: 0 auto 1.5rem auto;
  font-size: 1.15rem; /* Slightly smaller is often more professional */
  line-height: 1.8; /* Increased breathing room between lines */
  text-align: left;
  color: #666;
}

/* Style for your list items/bullets */
.about-me .info-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 2rem auto;
  text-align: left; /* Left align lists for better scanning */
  color: #666;
}

.about-me .info-list li {
  margin-bottom: 0.5rem;
  padding-left: 2rem;
  position: relative;
}

.about-me .info-list li::before {
  content: "•";
  color: var(--accent-color); /* Use your brand's accent color */
  font-weight: bold;
}

.site-footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 70px 5% 30px;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: white;
}

.footer-description {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #e6e6e6;
}

.footer-nap p {
  margin-bottom: 6px;
  font-size: 0.95em;
}

.footer-nap a {
  color: #e6e6e6;
  text-decoration: none;
  transition: 0.3s;
}

.footer-nap a:hover {
  color: var(--accent-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #e6e6e6;
  transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer-map {
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  min-height: 230px;
  background: rgba(255,255,255,0.04);
}

.footer-map iframe {
  width: 100%;
  height: 230px;
  border: 0;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* ========================================= */
/* SERVICE PAGE + USLUGE PAGE SYSTEM */
/* ========================================= */

.service-page,
.services-page {
  background: #ffffff;
}

/* HERO */
.service-hero {
  padding: 80px 5% 50px;
  background: linear-gradient(180deg, #f8f4f0 0%, #ffffff 100%);
}

.service-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.service-eyebrow {
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.service-hero h1 {
  font-size: 3.8em;
  line-height: 1.05;
  color: var(--primary-color);
  margin-bottom: 22px;
}

.service-lead {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--light-text-color);
  max-width: 700px;
  text-align: left;
}

/* BUTTONS */
.service-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.service-btn-primary {
  background: var(--accent-color);
  color: white;
}

.service-btn-primary:hover {
  transform: translateY(-3px);
  background: #a3755a;
}

.service-btn-secondary {
  border: 1px solid rgba(56,94,114,0.2);
  background: white;
  color: var(--primary-color);
}

.service-btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* QUICK INFO */
.service-quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 35px;
}

.service-quick-info div {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.service-quick-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--light-text-color);
  margin-bottom: 6px;
}

.service-quick-info strong {
  color: var(--primary-color);
}

/* IMAGES */
.service-hero-image img,
.service-split-image img,
.zigzag-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* SECTIONS */
.service-intro-block,
.service-benefits-section,
.service-process,
.service-faq,
.service-cta-section,
.service-image-text,
.service-ideal-for {
  padding: 90px 5%;
}

/* INTRO GRID */
.service-areas p {
  color: var(--light-text-color);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: left;
}

.service-areas a {
  color: var(--light-text-color);
}

.service-areas .section-tag {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.service-intro-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
}

.service-intro-card {
  background: white;
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.service-intro-card p {
  text-align: left;
}

.service-intro-card a {
  color: var(--light-text-color);
}

.service-intro-card h2,
.service-split-text h2,
.service-cta-box h2,
.section-heading h2 {
  font-size: 2.5em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-split-text p {
  text-align: left;
}

.service-split-text a {
  color: var(--light-text-color);
}

.service-intro-card p,
.service-split-text p,
.benefit-card p,
.process-step p,
.faq-item p,
.service-cta-box p {
  color: var(--light-text-color);
  line-height: 1.9;
}

/* LISTS */
.service-highlight-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8f4f0 100%);
  border: 1px solid rgba(181,132,99,0.15);
}

.service-highlight-card ul,
.service-check-list {
  list-style: none;
  padding: 0;
  margin-top: 18px;
  text-align: left;
  color: var(--light-text-color);
}

.service-highlight-card li,
.service-check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.service-highlight-card li::before,
.service-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* SPLIT SECTION */
.service-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.reverse-layout {
  grid-template-columns: 1fr 1fr;
}

/* HEADINGS */
.section-heading {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-tag {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* BENEFITS */
.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.benefit-card p {
  text-align: left;
}

.benefit-card a {
    color: var(--primary-color);
}

.benefit-card,
.process-step,
.faq-item {
  background: white;
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.faq-item p {
  text-align: left;
}

.benefit-card h3,
.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 14px;
}

.process-step p {
  text-align: left;
}

/* PROCESS */
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(181,132,99,0.15);
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 18px;
}

/* FAQ */
.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-color);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-top: 14px;
}

/* CTA BOX */
.service-cta-box {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f4f0 0%, #ffffff 100%);
  border-radius: 28px;
  padding: 55px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  text-align: center;
}

/* SMALL BUTTONS */
.service-btn-small {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(56,94,114,0.18);
  color: var(--primary-color);
  transition: 0.3s ease;
}

.service-btn-small:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/* SERVICE CARD IMPROVEMENT */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
}

.service-card p {
    color: var(--light-text-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.service-card .service-btn-small {
  align-self: flex-start;
}

/* USLUGE PAGE */
.services-page {
  padding: 60px 8% 120px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zigzag-item.reverse .zigzag-image {
  order: 2;
}

.zigzag-item.reverse .zigzag-content {
  order: 1;
}

.zigzag-content h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.zigzag-content p {
  line-height: 1.9;
  color: #666;
  margin-bottom: 30px;
}

.service-small-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-color);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.zigzag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--accent-color);
  color: white;
  font-weight: 600;
  transition: 0.3s ease;
}

.zigzag-btn:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service-hero-content,
  .service-intro-grid,
  .service-split,
  .benefits-grid,
  .process-steps,
  .zigzag-item {
    grid-template-columns: 1fr;
  }

  .zigzag-item.reverse .zigzag-image,
  .zigzag-item.reverse .zigzag-content {
    order: unset;
  }

  .service-quick-info {
    grid-template-columns: 1fr;
  }

  .service-hero h1 {
    font-size: 2.8em;
  }

  .zigzag-content h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .service-hero,
  .service-intro-block,
  .service-benefits-section,
  .service-process,
  .service-faq,
  .service-cta-section,
  .service-image-text,
  .service-ideal-for {
    padding: 60px 5%;
  }

  .service-hero h1 {
    font-size: 2.2em;
  }

  .service-lead {
    font-size: 1rem;
  }

  .service-intro-card,
  .benefit-card,
  .process-step,
  .service-cta-box,
  .faq-item {
    padding: 24px;
  }

  .services-page {
    padding: 40px 5% 80px;
    gap: 70px;
  }

  .zigzag-content h2 {
    font-size: 2rem;
  }
}
