:root {
    --primary-green: #059669;
    --light-green: #1b926a;
    --bg-main: #f0f4f2; 
    --bg-card: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-main);
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo {
    width: 80px;
    height: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 800;
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: white;
    padding: 100px 0;
    text-align: left;
    margin-bottom: 40px;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-white {
    background: white;
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* --- SECTIONS & CARDS --- */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}


.service-card, .contact-card, .social-card, .review-card, .about-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(16, 185, 129, 0.1); 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Hover effect to make things feel interactive */
.service-card:hover, .contact-card:hover, .social-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-green);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

/* Green top-bar accent for cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--light-green);
}

/* --- GRID LAYOUT --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* --- ORDER CTA SECTION --- */
.order-cta {
    background: var(--light-green);
    color: white;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

/* --- IMAGES & GALLERY --- */
.gallery-card img, .product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.05);
}

/* --- FOOTER --- */
.footer {
    background: #ffffff;
    color: rgb(3, 163, 46);
    padding: 60px 0;
    margin-top: 100px;
    clip-path: ellipse(150% 100% at 50% 100%);
    margin-top: 50px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.container {
    animation: fadeInUp 0.6s ease-out;
}

/* --- SOCIAL MEDIA LOGOS & CARDS --- */

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}


/* --- SOCIAL BRAND COLORS --- */

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px; /* Modern "App" shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.social-icon.fb {
  /* The Blue Box */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100px;              
  height: 100px;            
  background-color: #1877F2; 
  border-radius: 18%;        
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-icon.fb::after {
  
  content: "f";
  color: white;
  font-family: sans-serif;   
  font-weight: 700;
  font-size: 110px;          
  line-height: 1;
  position: absolute;
  bottom: -15px;             
  right: 15px;               
}

.social-icon.ig {
  /* The Gradient Background */
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-radius: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* The Main Camera Square (White Outline) */
.social-icon.ig::before {
  content: "";
  width: 60%;
  height: 60%;
  border: 5px solid white;
  border-radius: 20px;
  position: absolute;
}

/* The Lens (Circle) and The Flash Dot */
.social-icon.ig::after {
  content: "";
  width: 28%;
  height: 28%;
  border: 5px solid white;
  border-radius: 50%;
  position: absolute;
  /* Drawing the flash dot using a box-shadow to save on elements */
  box-shadow: 20px -18px 0 -12px white; 
}

/* Button Colors */
.btn-fb {
    background-color: #1877F2;
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


body {   
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #17fc45 0%, #8dffa8 50%, #5adf7e 100%); 
    background-attachment: fixed;
    background-color: #02b72c; 
}

.order-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #1a7f4b;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: 0.3s;
}

.order-btn:hover {
    background-color: #e6e6e6;
}

.order-btn {
    position: fixed;
    bottom: 20px;   
    right: 20px;    
    
    background-color: #e5e7eb;
    color: #0f8a3b;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;

    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000; 
    transition: 0.3s;
}

.order-btn:hover {
    background-color: #d1d5db;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #555;
    margin: 0 15px;
    font-size: 14px;
}

/* hidden line */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background-color: #16a34a; 
    
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* animate on hover */
.nav-links a:hover::after {
    transform: scaleX(1);
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}
