/* static/css/services.css */
/* ===== Base Styles ===== */
:root {
    --primary: #0e5a5f;
    --secondary: #57C5B6;
    --accent: #FEA82F;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #495057;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* ===== Navigation ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(14, 90, 95, 0.7);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 24px;
}

/* ===== Services Page Styles ===== */
.services-hero {
    background: linear-gradient(rgba(14, 90, 95, 0.7), rgba(14, 90, 95, 0.253)),
        url('../images/SERVICES.jpg') no-repeat center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    height: 70vh;
    min-height: 700px;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
}

.partner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.package-info {
    padding: 30px;
}

.package-info h3 {
    font-size: 1.5rem;
    letter-spacing: -0.3px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    color: var(--text);
}

.package-features {
    margin: 20px 0;
}

.package-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.package-features i {
    color: var(--accent);
    margin-right: 10px;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 80px 0;
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-text h2 {
    margin-bottom: 20px;
}

.service-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-text li {
    margin-bottom: 10px;
}

.partner-note {
    background: rgba(254, 168, 47, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--accent);
}

.important-note {
    background: rgba(231, 76, 60, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #e74c3c;
}

.important-note h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.faq-section {
    background: #f1f7fa;
    padding: 80px 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    line-height: 1.8;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ===== Footer ===== */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 20px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--accent);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact-item div {
    opacity: 0.8;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .service-details {
        grid-template-columns: 1fr;
    }

    .service-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .burger {
        display: block;
    }

    .services-hero h1 {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

    .package-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .btn {
        padding: 10px 25px;
    }
}