/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

/* Color Variables */
:root {
    --primary-color: #00A86B;      /* Caribbean Green */
    --secondary-color: #FFD700;    /* Sunset Orange */
    --accent-color: #FFD700;       /* Golden Yellow */
    --dark-color: #2C3E50;         /* Dark Blue-Gray */
    --light-color: #F8F9FA;        /* Light Gray */
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #E9ECEF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.stats-heading {
    text-align: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 40px;
    margin-top: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Restaurant Section */
.about-restaurant {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.restaurant-features {
    list-style: none;
}

.restaurant-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-dark);
}

.restaurant-features i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.restaurant-photo {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.restaurant-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Website Proposal Section */
.website-proposal {
    background: var(--light-color);
}

.website-features {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mockup-container {
    display: flex;
    justify-content: center;
}

.device-mockup {
    width: 300px;
    height: 500px;
    background: var(--dark-color);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.website-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
}

.preview-nav {
    font-size: 0.9rem;
    font-weight: 600;
}

.preview-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.preview-hero h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.preview-hero p {
    font-size: 0.9rem;
}

.preview-menu {
    padding: 20px;
    flex: 1;
}

.menu-item {
    height: 40px;
    background: var(--light-color);
    margin-bottom: 15px;
    border-radius: 5px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    text-align: center;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
}

/* Social Media Section */
.social-media {
    background: var(--white);
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.platform-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.platform-header i {
    font-size: 2rem;
}

.instagram .platform-header i {
    color: #E4405F;
}

.facebook .platform-header i {
    color: #1877F2;
}

.tiktok .platform-header i {
    color: #000;
}

.platform-header h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.content-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.sample-post {
    text-align: center;
}

.post-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto 10px;
    display: block;
    transition: all 0.3s ease;
}

.post-image:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sample-post p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.strategy-points ul {
    list-style: none;
}

.strategy-points li {
    padding: 10px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.strategy-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Advertising Section */
.advertising {
    background: var(--light-color);
}

.advertising-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.ad-type {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.ad-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ad-icon i {
    font-size: 2rem;
    color: var(--white);
}

.ad-type h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.ad-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.ad-features li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.ad-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.expected-results {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.expected-results h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.expected-results p {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.expected-results strong {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Additional Services Section */
.additional-services {
    background: var(--white);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.additional-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.additional-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.additional-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.additional-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 30px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.package-features i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
    text-align: center;
}

.pricing-calculator {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.pricing-calculator h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.pricing-calculator p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Portfolio Section */
.portfolio {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    height: 200px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.portfolio-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-color);
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial-item.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-color);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

/* Compact Contact Info Styling */
.contact-info-compact {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-compact .contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.contact-info-compact .contact-item i {
    margin: 0 auto;
}

.contact-info-compact .contact-item div {
    text-align: center;
}

.contact-form-container {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--white);
    padding: 0 5px;
}

.contact-form button {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Website Package Details Section */
.website-package {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.website-package .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.website-package .section-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.website-package .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.package-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-category {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.package-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 600;
}

.category-features {
    list-style: none;
}

.category-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
}

.category-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 2px;
    font-size: 1rem;
    flex-shrink: 0;
}

.category-features li:last-child {
    margin-bottom: 0;
}

.package-summary {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.summary-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.summary-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-breakdown {
    position: relative;
    z-index: 1;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.value-item:last-of-type {
    border-bottom: none;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 15px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 15px;
    font-size: 1.2rem;
}

.value-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.3rem;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px -20px 0;
    padding: 20px;
    border-radius: 10px;
}

.offer-price {
    font-size: 1.5rem;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.savings-note {
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Website Package */
@media (max-width: 768px) {
    .website-package {
        padding: 60px 0;
    }
    
    .website-package .section-header h2 {
        font-size: 2rem;
    }
    
    .package-breakdown {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .package-category {
        padding: 25px;
    }
    
    .category-header i {
        font-size: 2rem;
        margin-right: 12px;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .summary-card {
        padding: 30px 25px;
        margin: 0 10px;
    }
    
    .summary-card h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .value-item,
    .value-total {
        font-size: 0.9rem;
    }
    
    .value-offer {
        font-size: 1.1rem;
        margin: 15px -15px 0;
        padding: 15px;
    }
    
    .offer-price {
        font-size: 1.3rem;
    }
    
    .savings-note {
        font-size: 1rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .package-breakdown {
        grid-template-columns: 1fr;
    }
    
    .package-category {
        padding: 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .category-header i {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* Features Breakdown Section */
.features-breakdown {
    padding: 80px 0;
    background: var(--white);
}

.features-breakdown .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-breakdown .section-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.features-breakdown .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-detail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-detail-card .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 25px;
}

.feature-detail-card .feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-detail-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-description {
    margin-bottom: 30px;
}

.feature-description > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-breakdown-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-breakdown-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-breakdown-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 2px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.basic-vs-advanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.basic-features,
.advanced-features {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.basic-features h4,
.advanced-features h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.basic-features ul,
.advanced-features ul {
    list-style: none;
}

.basic-features ul li,
.advanced-features ul li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.basic-features ul li:last-child,
.advanced-features ul li:last-child {
    border-bottom: none;
}

.reporting-frequency {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.monthly-reports,
.detailed-reviews,
.weekly-calls {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.monthly-reports h4,
.detailed-reviews h4,
.weekly-calls h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.monthly-reports p,
.detailed-reviews p,
.weekly-calls p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.support-levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.standard-support,
.priority-support {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.standard-support h4,
.priority-support h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.standard-support p,
.priority-support p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.standard-support small,
.priority-support small {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.packages-included {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.package-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-tag.starter {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    border: 1px solid #90caf9;
}

.package-tag.growth {
    background: linear-gradient(135deg, var(--primary-color), #00c9a7);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.package-tag.premium {
    background: linear-gradient(135deg, var(--secondary-color), #ffb300);
    color: var(--dark-color);
    border: 1px solid var(--secondary-color);
}

/* Responsive Design for Features Breakdown */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-breakdown {
        padding: 60px 0;
    }
    
    .features-breakdown .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-detail-card {
        padding: 30px 25px;
    }
    
    .feature-detail-card h3 {
        font-size: 1.5rem;
    }
    
    .basic-vs-advanced {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .reporting-frequency {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .support-levels {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .packages-included {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-detail-card {
        padding: 25px 20px;
    }
    
    .feature-detail-card .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-detail-card .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-detail-card h3 {
        font-size: 1.3rem;
    }
    
    .basic-vs-advanced,
    .reporting-frequency,
    .support-levels {
        padding: 15px;
    }
    
    .basic-features,
    .advanced-features,
    .monthly-reports,
    .detailed-reviews,
    .weekly-calls,
    .standard-support,
    .priority-support {
        padding: 15px;
    }
}
