* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

footer {
    height: auto;
    color: var(--darkaccent);
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(200, 213, 185, 0.1);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}



/* Typography Styles */
h1 {
    color: var(--text);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

h2 {
    color: var(--text);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem 0;
    letter-spacing: -0.5px;
}

h3 {
    color: var(--green);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

h4 {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
}
.link {
    color: var(--ashgrey);
    text-decoration: none;
    transition: all 0.3s ease;
}
a {
    text-decoration: none;
}
/* Logo */
.logo {
    border: none;
}

.logo img {
    margin: 0;
    height: 45px;
    width: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    width: 100%;
}
/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0 4rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 213, 185, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.hero h1 {
    background: linear-gradient(135deg, var(--green) 0%, var(--greenmuted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero p {
    color: var(--ashgrey);
    font-size: 1.2rem;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}
/* Recent Reviews Section */
.recent-reviews {
    border-top: 2px solid rgba(200, 213, 185, 0.2);
    padding-top: 3rem;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.review-item {
    background: linear-gradient(135deg, rgba(200, 213, 185, 0.08) 0%, rgba(143, 192, 169, 0.05) 100%);
    border: 2px solid rgba(200, 213, 185, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 213, 185, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-item:hover {
    border-color: var(--green);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(200, 213, 185, 0.15);
}

.review-item:hover::before {
    opacity: 1;
}

.review-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.review-item h4 {
    margin-bottom: 0.5rem;
}

.review-item p {
    color: var(--ashgrey);
    font-size: 0.95rem;
}


/* Social Links */
.social-wrapper {
    margin-left: auto;
    display: flex;
    gap: 1rem;
}

.social-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(200, 213, 185, 0.1);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-wrapper a:hover {
    background-color: rgba(200, 213, 185, 0.2);
    transform: translateY(-2px);
}
