/* 
  Design System for Shakeel Contractor
  Niche: Interior & Finishing (Wood, Marble, Tile, Plumbing)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary: #121212;
  --accent: #C5A059; /* Elegant Brass/Gold */
  --accent-soft: rgba(197, 160, 89, 0.1);
  --text-main: #2D2D2D;
  --text-muted: #666666;
  --bg-white: #FFFFFF;
  --bg-cream: #F9F7F2;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { transform: scale(1.1); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 100px; }
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero.png');
  background-size: cover;
  background-position: center;
  animation: scaleIn 2s ease-out;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  font-style: italic;
  font-weight: 400;
}

.hero .underline {
  height: 4px;
  background: var(--accent);
  width: 100px;
  margin-bottom: 2rem;
  animation: drawLine 1s ease-out 1.2s both;
}

.hero p {
  font-size: 1.2rem;
  max-width: 500px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3rem;
}

/* Coming Soon Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(197, 160, 89, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Services Grid */
.services-section {
  padding: 100px 0;
  background: var(--bg-cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--accent);
}

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

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

/* Footer Section */
footer {
  padding: 60px 0;
  text-align: center;
  background: var(--primary);
  color: white;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info {
  margin-top: 2rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .container { padding: 0 1.5rem; }
}
