/* Base Styles and Variables */
:root {
    --primary: #ff6b6b; /* Coral */
    --primary-light: #ff8e8e;
    --primary-dark: #e64c4c;
    --secondary: #4ecdc4; /* Teal */
    --secondary-light: #6fded6;
    --secondary-dark: #3db7af;
    --text: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --background-alt: #f8f8f8;
    --background-dark: #222222;
    --border: #dddddd;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h1 .highlight {
    color: var(--primary);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.25rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.button.primary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.button.secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.button.secondary:hover {
    background: rgba(255, 107, 107, 0.1);
}

.button.large {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Header Styles */
header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.site-logo {
    height: auto;
}

.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 25px;
}

.hamburger {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle:checked + .menu-button .hamburger {
    background-color: transparent;
}

.menu-toggle:checked + .menu-button .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle:checked + .menu-button .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.nav-button {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-button::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background-color: var(--background-alt);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 107, 0.1), transparent 60%),
                radial-gradient(circle at bottom left, rgba(78, 205, 196, 0.1), transparent 60%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Features Section */
.features {
    background-color: white;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--background-alt);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
}

/* Showcase Section */
.showcase {
    background-color: var(--background-alt);
}

.showcase .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.showcase-content {
    flex: 1;
}

.showcase-visual {
    flex: 1;
}

.showcase-list {
    margin: 25px 0 30px;
}

.showcase-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.check-mark {
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

.testimonial {
    flex: 0 0 calc(50% - 15px);
    scroll-snap-align: start;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--background-alt);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.quote {
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.author {
    text-align: right;
    font-weight: 500;
    color: var(--primary);
}

/* CTA Section */
.cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta .button {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.cta .button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    background: var(--background-dark);
    color: white;
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 300px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    font-size: 0.9rem;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

.link-column h3 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.link-column h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gradient);
    bottom: 0;
    left: 0;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.link-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .showcase .container {
        flex-direction: column;
    }
    
    .showcase-content {
        text-align: center;
    }
    
    .showcase-list li {
        justify-content: center;
    }
    
    .testimonial {
        flex: 0 0 70%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .menu-button {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        visibility: hidden;
    }
    
    .menu-toggle:checked ~ .main-nav {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .main-nav ul li {
        margin: 10px 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .testimonial {
        flex: 0 0 85%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo {
        flex: 0 0 auto;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .link-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
}
