:root {
    --primary-color: #1e3d2f;
    --secondary-color: #d96a27;
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Adjust existing header spacing */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding-bottom: 40px;
    text-align: center;
}

.header-content {
    margin-top: 20px;
}

header img.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header .subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

header p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover {
    background-color: #b8541d;
}

/* TikTok Icon Under Phone Button */
.tiktok-link {
    display: inline-block;
    margin-top: 15px;
    margin-right: 10px;
    background: var(--secondary-color);
    padding: 12px 16px;
    border-radius: 50%;
    transition: 0.3s;
}

.tiktok-link i {
    font-size: 26px;
    color: var(--white);
}

.tiktok-link:hover {
    background: #b8541d;
}

.about-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.reviews-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.reviews-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.reviews-section p {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.review-links a {
    display: inline-block;
    margin: 10px 15px;
    padding: 12px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.review-links a:hover {
    background-color: #b8541d;
}

.services-section {
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

.gallery-section {
    padding: 60px 0;
    background-color: var(--white);
}

.gallery-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

footer {
    background-color: #11221a;
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid #224433;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-col p, .footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0.8;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #224433;
    font-size: 0.9rem;
    opacity: 0.6;
}

.star-rating {
    margin: 10px 0 20px 0;
}

.star-rating i {
    color: #f5c518; /* Gold */
    font-size: 28px;
    margin: 0 3px;
}

/* Top Navigation Bar */
.top-nav {
    background-color: #11221a; /* darker shade to match footer */
    padding: 12px 0;
    overflow-x: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation Links */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Call Button in Nav */
.nav-call {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.nav-call:hover {
    background-color: #b8541d;
}
