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

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1f1f1f;
    background-color: #ffffff;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

p {
    font-size: 0.95rem;
}

ul {
    list-style: none;
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    background: rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 6%;
    padding-top: 140px;
}

.hero-brand img {
    width: 330px;
    max-width: 100%;
    filter: brightness(0.35) contrast(1.5);
}

.hero-text h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.15;
    font-weight: 600;
    max-width: 600px;
    margin-top: 0px;
}


.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* =========================
   SECTION BASE
========================= */
section {
    padding: 70px 8%;
}

section h2 {
    text-align: center;
    margin-bottom: 45px;
    color: #1f9c8b;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

/* =========================
   SERVICES 
========================= */

.services-canva {
    background: #212529;
    padding: 80px 8%;
}

.services-canva h2 {
    text-align: center;
    color: #ffffff;
    font-size: clamp(3.6rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
}

.services-canva h2::after {
    content: "";
    display: block;
    width: 1000px;
    max-width: 90%;
    height: 3px;
    background-color: #1f9c8b;
    margin: 14px auto 0;
}

/* GRID */
.services-canva-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    justify-items: center;
}

/* CARD  */
.services-canva-card {
    width: 385px;               
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-canva-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* IMAGE  */
.services-canva-image {
    width: 385px;
    height: 256px;
}

.services-canva-image img {
    width: 385px;
    height: 256px;
    display: block;
}

/* CONTENT */
.services-canva-card h3 {
    color: #1f9c8b;
    font-size: 1.6rem;
    margin: 16px 14px 8px;
}

.services-canva-card p {
    margin: 0 14px 16px;
    font-size: 1.2rem;
    color: #2b2b2b;
    line-height: 1.5;
}

.services-canva-card ul {
    margin: 0 14px 16px;
}

.services-canva-card ul li {
    font-size: 1.2rem;
    margin-bottom: 6px;
    position: relative;
    padding-left: 12px;
}

.services-canva-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1f9c8b;
}

/* =========================
   CERTIFICATES 
========================= */

.certificates-canva {
    padding: 0;
    background: #ffffff;
}

/* TOP GREEN BAR */
.certificates-canva-header {
    background: #1f9c8b;
    padding: 30px 8%;
}

.certificates-canva-header h2 {
    color: #ffffff;
    font-size: clamp(3.6rem, 3vw, 2.2rem);
    font-weight: 500;
    margin-top: 50px;
}

/* MAIN CONTENT */
.certificates-canva-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* LEFT TEXT */
.certificates-canva-text {
    padding: 30px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.certificates-canva-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 520px;
    color: #1f1f1f;
    margin-top: 40px;
}

/* STAMP */
.certificates-canva-stamp {
    width: 294px;
    margin-left: 400px;
}

/* RIGHT IMAGE */
.certificates-canva-image {
    width: 100%;
    height: 100%;
}

.certificates-canva-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .certificates-canva-content {
        grid-template-columns: 1fr;
    }

    .certificates-canva-text {
        padding: 50px 8%;
    }

    .certificates-canva-image {
        height: 300px;
    }
}


/* =========================
   OFFERS 
========================= */

.offers-canva {
    position: relative;
    padding: 120px 8%;
    text-align: center;

    /* Background photo */
    background-image: url("../assets/fume.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.offers-canva-card::before {
    content: "";
    position: absolute;
    top: -20px;                 /* lifts it above the card */
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background-color: #1f9c8b;  
    border-radius: 50%;
}


/* Ensure content is above the overlay */
.offers-canva > * {
    position: relative;
    z-index: 1;
}

.offers-canva h2 {
    color: #1f1f1f;
    font-size: clamp(4rem, 3vw, 2.2rem);
    font-weight: 450;
}

/* CARDS GRID */
.offers-canva-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* CARD */
.offers-canva-card {
    position: relative;          
    background: #1f1f1f;
    border-radius: 18px;
    padding: 260px 16px 80px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.offers-canva-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* TEXT */
.offers-canva-card h3 {
    position: absolute;
    top: 30px;                  
    left: 0;
    right: 0;

    margin: 0;
    padding: 0 16px;

    font-size: 2.4rem;
    font-weight: 500;
    color: #ffffff;
}
.offers-canva-card h3::after {
    content: "";
    display: block;
    width: 1000px;
    max-width: 90%;
    height: 3px;
    background-color: #ffffff;
    margin: 14px auto 0;
}

/* Body text inside card (everything except h3 and price) */
.offers-canva-card p:not(.offers-canva-price) {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* PRICE ONLY */
.offers-canva-price {
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 5px;
    margin-bottom: 80px;
    text-align: center;
}

/* BODY TEXT ONLY */
.offers-canva-card p:not(.offers-canva-price) {
    font-size: 2rem;
    color: #ffffff;
    line-height: 1.6;
}



/* =========================
   ABOUT
========================= */

.about {
    padding: 0;
    background: #ffffff;
}

/* TOP GREEN BAR */
.about-header {
    background: #1f9c8b;
    padding: 50px 8%;
}

.about-header h2 {
    color: #ffffff;
    font-size: clamp(4.4rem, 3vw, 2.6rem);
    font-weight: 500;
    text-align: left;
}

/* CONTENT AREA */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* IMAGE */
.about-image img {
    width: 900px;
    height: 1000px;
    object-fit: cover;
    display: block;
}

/* TEXT */
.about-text {
    padding: 50px 8%;
    display: flex;
    align-items: center;
}

.about-text p {
    max-width: 520px;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #1f1f1f;
    text-align: left;
    margin-left: 100px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 50px 8%;
    }

    .about-image {
        height: 280px;
    }
}


/* =========================
   SPECIAL SERVICES 
========================= */

.special {
    position: relative;
    min-height: 90vh;
    background-image: url("../assets/korios.jpeg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

/* Dark gradient on the left for readability */
.special::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.0) 70%
    );
    z-index: 0;
}

.special-overlay {
    position: relative;
    z-index: 1;
    padding-left: 8%;
    max-width: 600px;
}

/* Title */
.special h2 {
    color: #1c8c7c;
    font-size: 2.6rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.special h2 {
    position: relative;
    padding-bottom: 12px;
}

.special h2::after {
    content: "";
    display: block;
    width: 460px;          /* line length */
    height: 3px;          /* line thickness */
    background-color: #1c8c7c; /* brand color */
    margin-top: 10px;
}

/* List */
.special-list {
    list-style: none;
    padding: 0;
}

.special-list li {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 14px;
    position: relative;
    padding-left: 18px;
}

/* Bullet dot */
.special-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1c8c7c;
    font-size: 1.4rem;
    line-height: 1;
}

/* =========================
   FOOTER 
========================= */
.footer {
    background: #1a1a1a;
    color: #dcdcdc;
    padding: 80px 10%;
}

.footer-columns {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
}

/* LEFT: Βρείτε Μας */
.footer-columns > div:first-child {
    grid-column: 1;
}

/* RIGHT STACK (all others) */
.footer-columns > div:not(:first-child) {
    grid-column: 2;
    justify-self: end;        /* anchors to right padding */
    width: 240px;
    text-align: left;
    margin-bottom: 35px;
}

.footer-columns > div:not(:first-child) h4{
     font-size: 1.6rem;     
    margin-bottom: 10px;
}

/* Titles */
.footer h4 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    color: #1f9c8b;
    font-weight: 600;
}

/* Text */
.footer p {
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer a:hover {
    color: #1f9c8b;
    text-decoration: underline;
}

.floating-offer-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;

    background-color: #1f9c8b;
    color: #ffffff;
    text-decoration: none;

    padding: 16px 22px;
    border-radius: 40px;

    font-size: 1.2rem;
    font-weight: 600;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.offer-screen {
    min-height: 100vh;
    padding: 100px 8%;

    background-image: url("../assets/offer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.offer-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.offer-screen > * {
    position: relative;
    z-index: 1;
}

.offer-screen h1 {
    text-align: center;
    color: #1f9c8b;
    font-size: 2.6rem;
    margin-bottom: 40px;
}

.offer-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.01);
}

.offer-form label {
    display: block;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.offer-form input,
.offer-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #cccccc;
}

.offer-form button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;

    background-color: #1f9c8b;
    color: #ffffff;
    border: none;
    border-radius: 10px;

    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
}

.offer-form button:hover {
    opacity: 0.9;
}


/* =========================
   RESPONSIVE TWEAKS
========================= */
@media (max-width: 768px) {
    section {
        padding: 60px 6%;
    }

    .hero {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {

    .offer-screen {
        padding: 80px 5%;
    }

    .offer-screen h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .offer-form {
        padding: 28px 22px;
        border-radius: 14px;
    }

    .offer-form label {
        font-size: 1rem;
    }

    .offer-form input,
    .offer-form textarea {
        font-size: 1rem;
        padding: 14px;
    }

    .offer-form button {
        font-size: 1.1rem;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .floating-offer-btn {
        bottom: 90px;
        right: 16px;
    }
}
/* =========================
   FOOTER - ΝΟΜΙΚΑ LINKS (DESKTOP)
========================= */
.footer {
    background: #1a1a1a;
    color: #dcdcdc;
    padding: 80px 10% 40px;  /* Μειωμένο κάτω padding για να χωρέσει η νομική γραμμή */
}

.footer-columns {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
    margin-bottom: 50px;  /* Απόσταση από τα νομικά links */
}

/* LEFT: Βρείτε Μας */
.footer-columns > div:first-child {
    grid-column: 1;
}

/* RIGHT STACK (all others) */
.footer-columns > div:not(:first-child) {
    grid-column: 2;
    justify-self: end;
    width: 240px;
    text-align: left;
    margin-bottom: 35px;
}

.footer-columns > div:not(:first-child) h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* Titles */
.footer h4 {
    font-size: 2.6rem;
    margin-bottom: 14px;
    color: #1f9c8b;
    font-weight: 600;
}

/* Text */
.footer p {
    font-size: 1.3rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer a:hover {
    color: #1f9c8b;
    text-decoration: underline;
}

/* =========================
   FOOTER LEGAL SECTION (DESKTOP)
========================= */
.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;  /* Διαχωριστική γραμμή */
    margin-top: 20px;
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 30px;  /* Απόσταση μεταξύ των στοιχείων */
    margin-bottom: 15px;
}

.legal-links a {
    color: #1f9c8b;  /* Πράσινο χρώμα για τα links */
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.separator {
    color: #666;
    font-size: 1.3rem;
    font-weight: 300;
}

.copyright {
    color: #999;
    font-size: 1rem;
    margin: 10px 0 0;
}

/* DROPDOWN (SELECT) */
.offer-form select {
    width: 100%;
    margin-top: 6px;
    padding: 14px 12px;
    font-size: 16px; /* prevents iOS zoom */
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%231f9c8b' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%231f9c8b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
}

.offer-form select:focus {
    outline: none;
    border-color: #1f9c8b;
    background-color: #ffffff;
}