@font-face {
    font-family: 'Cinzel';
    src: url('static/Cinzel-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Cinzel';
    src: url('static/Cinzel-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'Cinzel';
    src: url('static/Cinzel-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'Cinzel';
    src: url('static/Cinzel-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Cinzel';
    src: url('static/Cinzel-Black.ttf') format('truetype');
    font-weight: 900;
}

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

:root {
    --primary-white: #FFFFFF;
    --primary-blue: #D8EEF5;
    --accent-blue: #7BBFD4;
    --deep-blue: #1A5570;
    --text-dark: #1A4560;
    --text-light: #243242;
    --text-lighter: #3E5668;
    --border-color: #9ABFD0;
    --pearl-white: #F8F5F2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cinzel', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(160deg, #FDFBF9 0%, #F5F0EB 30%, #EDF6FA 60%, #F8F5F2 100%);
    background-attachment: fixed;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: none;
    padding: 0 2.5rem 0 0;
    height: 70px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-blue);
    letter-spacing: 0.3px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.4rem;
    align-items: center;
}

nav a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--deep-blue);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--deep-blue);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    height: calc(100vh - 70px);
    background:
        linear-gradient(160deg, rgba(196, 228, 240, 0.90) 0%, rgba(216, 238, 245, 0.88) 45%, rgba(232, 224, 216, 0.90) 100%),
        url('cover-image.jpg') center center / cover no-repeat;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(180, 223, 232, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
    animation: fadeInBounce 3s ease-in-out 1.2s infinite;
    cursor: pointer;
}

.scroll-arrow span {
    display: block;
    width: 22px;
    height: 22px;
    border-right: 2.5px solid #5aaac8;
    border-bottom: 2.5px solid #5aaac8;
    transform: rotate(45deg);
}

@keyframes fadeInBounce {
    0%   { opacity: 0; transform: translateX(-50%) translateY(-4px); }
    30%  { opacity: 0.8; }
    60%  { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroFadeIn 1.1s ease-out 0.2s forwards;
}

.hero-content::before {
    content: '';
    position: absolute;
    width: 75%;
    height: 90%;
    background: radial-gradient(ellipse, rgba(255, 252, 248, 0.28) 0%, rgba(255, 252, 248, 0.08) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 6px 32px rgba(20, 70, 100, 0.28));
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--deep-blue);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 159, 181, 0.15);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #4A8FA3;
    box-shadow: 0 6px 25px rgba(90, 159, 181, 0.25);
}

/* Section Structure */
.section {
    padding: 5rem 4rem;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light) !important;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: transparent;
}

.service-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.2rem;
    border: 1px solid rgba(100, 170, 200, 0.55);
    border-radius: 12px;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 4px 16px rgba(90, 159, 181, 0.08);
    animation: fadeInUp 0.5s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.services-last-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.services-last-row .service-card {
    width: calc(33.333% - 0.67rem);
    max-width: 400px;
}

.service-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

/* Pricing Section */
.pricing {
    background: transparent;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-plan {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 170, 200, 0.55);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(90, 159, 181, 0.08);
}

.pricing-plan:hover {
    border-color: var(--deep-blue);
    box-shadow: 0 8px 30px rgba(90, 159, 181, 0.18);
    background: rgba(255, 255, 255, 0.75);
}

.pricing-plan.featured {
    border: 2px solid var(--deep-blue);
    box-shadow: 0 8px 30px rgba(90, 159, 181, 0.2);
    transform: translateY(-8px);
}

.plan-header {
    background: linear-gradient(135deg, rgba(232, 244, 248, 0.7) 0%, rgba(180, 223, 232, 0.35) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-bottom: 1px solid rgba(180, 223, 232, 0.4);
}

.plan-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.plan-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

.plan-content {
    padding: 2rem;
}

.size-tier {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.size-tier:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.size-label {
    font-size: 0.8rem;
    color: var(--deep-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.features-list {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-lighter);
    font-weight: 300;
    line-height: 1.5;
    margin-top: 0.8rem;
}

.size-tag,
.duration-tag {
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 500;
    border-radius: 20px;
    padding: 0.22rem 0.7rem;
    letter-spacing: 0.3px;
    line-height: 1;
    white-space: nowrap;
}

.size-tag {
    color: #6b7a85;
    background: #ffffff;
    border: 1px solid rgba(100, 170, 200, 0.45);
}

.duration-tag {
    font-weight: 600;
    color: var(--deep-blue);
    background: #ffffff;
    border: 1px solid rgba(100, 170, 200, 0.45);
}

.duration-tag--warning {
    color: #8a6200;
    background: rgba(200, 150, 30, 0.1);
    border-color: rgba(200, 150, 30, 0.35);
}

.plan-cta {
    width: 100%;
    padding: 0.8rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials {
    background: transparent;
    overflow: hidden;
}

.testimonials-track-wrapper {
    overflow: hidden;
    max-width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: slide-left 45s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes slide-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem;
    border: 1px solid rgba(100, 170, 200, 0.55);
    border-top: 3px solid var(--deep-blue);
    border-radius: 12px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(90, 159, 181, 0.08);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-title {
    font-size: 0.8rem;
    color: var(--deep-blue);
    font-weight: 500;
    margin-top: 0.2rem;
    letter-spacing: 0.3px;
}

/* Contact Section */
.contact {
    background: linear-gradient(90deg, #0f3e55 0%, #175e88 50%, #0f3e55 100%);
    position: relative;
    border-bottom: none;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(248, 244, 240, 0.12) 0%,
        rgba(237, 230, 223, 0.22) 25%,
        rgba(221, 240, 246, 0.14) 45%,
        rgba(248, 244, 240, 0.20) 65%,
        rgba(237, 230, 223, 0.12) 85%,
        rgba(221, 240, 246, 0.18) 100%
    );
    pointer-events: none;
}

.contact-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.info-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-label {
    font-weight: 600;
    color: rgba(190, 230, 242, 0.95);
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.info-value {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: right;
}

.info-value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.info-value a:hover {
    color: rgba(190, 230, 242, 1);
    border-bottom-color: rgba(190, 230, 242, 0.8);
    cursor: pointer;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 1.2rem 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    .pricing-plan.featured {
        transform: translateY(0);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-last-row {
        gap: 1.5rem;
    }
    .services-grid .service-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 1rem);
        margin: 0 auto;
    }
    .services-last-row .service-card {
        width: calc(50% - 0.75rem);
    }
    nav ul {
        gap: 1.5rem;
    }
    nav a {
        font-size: 0.75rem;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-menu {
    display: flex;
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem 0 0;
        height: 60px;
    }
    .logo img {
        height: 84px !important;
        margin-left: -1.5rem !important;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 0.9rem;
    }
    .hero {
        margin-top: 60px;
        height: calc(100svh - 60px);
    }
    .hero-content img {
        height: min(70vw, 380px) !important;
    }
    .section {
        padding: 2.5rem 1.2rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .services-last-row {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }
    .services-grid .service-card:last-child {
        grid-column: unset;
        max-width: 100%;
        margin: 0;
    }
    .services-last-row .service-card {
        width: 100%;
        max-width: 100%;
    }
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    .contact-info {
        gap: 0;
    }
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 1.2rem 1rem;
    }
    .info-label {
        min-width: unset;
    }
    .contact-content {
        padding: 2rem 1.2rem;
    }
    .contact h2 {
        font-size: 2.2rem;
    }
    .testimonial-card {
        width: 260px;
    }
    div[style*="repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .hero-content img {
        height: min(85vw, 320px) !important;
    }
    .section-title {
        font-size: 1.3rem;
    }
}
