/* --- Variables & Reset --- */
:root {
    --primary-color: #f2aa27; /* Golden yellow/orange */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #ffffff;
    --bg-gray: #dfdfdf; 
    --footer-bg: #050505;
    --green-tag: #008f11;
    --btn-grey: #e5e5e5;
    --blue-check: #6ea7f0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* --- Hero Section & Animation --- */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.services-hero {
    text-align: center;
    padding: 80px 20px 60px;
}

.services-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.services-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
}

/* --- Pricing Cards Section --- */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 40px;
    padding: 0 20px;
}

.pricing-card {
    flex: 1;
    border: 3px solid var(--primary-color);
    padding: 35px 25px;
    background-color: white;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* The Popular Card Badge */
.popular-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: white;
    padding: 6px 16px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.package-name {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.package-time {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-discount {
    margin-bottom: -5px; 
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #777;
    font-weight: 400;
}

.discount-tag {
    background-color: var(--green-tag);
    color: white;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px 4px 20px; 
    position: relative;
    clip-path: polygon(15px 50%, 0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.package-desc {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.features-list {
    margin-bottom: 40px;
    flex-grow: 1; 
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Custom Checkbox Design */
.check-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border: 1px solid var(--blue-check);
    color: var(--blue-check);
    font-size: 10px;
    margin-top: 4px; 
    flex-shrink: 0;
}

.card-footer {
    text-align: center;
    margin-top: auto;
}

.btn-secondary, .btn-black {
    width: 100%;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-secondary {
    background-color: var(--btn-grey);
    color: black;
}
.btn-secondary:hover { 
    background-color: #d0d0d0; 
    color: black;
}

.btn-black {
    background-color: black;
    color: white;
}
.btn-black:hover { background-color: #333; }

.add-ons-section {
    background-color: var(--bg-gray);
    padding: 80px 20px;
}

.add-ons-container {
    max-width: 1000px; 
    margin: 0 auto;
}

.add-ons-container h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.add-ons-container p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.add-on-item {
    background-color: var(--primary-color);
    padding: 30px;
    font-size: 1.05rem;
    color: black;
}

/* --- What's Included Section --- */
.included-section {
    padding: 80px 20px;
}

.included-container {
    max-width: 1000px;
    margin: 0 auto;
}

.included-container h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600; 
    margin-bottom: 10px;
}

.included-sub {
    font-size: 1.05rem;
    margin-bottom: 50px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.included-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.included-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--footer-bg);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic; 
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-cta i { margin-left: 8px; }
.btn-cta:hover { background-color: #d99620; }



/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .pricing-container { flex-direction: column; align-items: center; }
    .pricing-card { width: 100%; max-width: 500px; }
    .popular-card .badge { top: auto; bottom: 100%; margin-bottom: 3px; } /* Prevents overlapping on stacked */
}

@media (max-width: 768px) {
    .site-header { flex-direction: column; gap: 20px; }
    .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .services-hero h1, .add-ons-container h2, .included-container h2, .cta-title { font-size: 2.5rem; }
    
    .add-ons-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .brand-col p { margin: 0 auto; }
    .contact-col li { justify-content: center; }
}