@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --navy: #082650;
  --cyan: #05BAD5;
  --gold: #C68E33;
  --teal: #007490;
  --dark-gold: #8B5D19;
  --white: #FFFFFF;
  --light-bg: #f8fafc;
  --text-main: #334155;
  --text-muted: #64748b;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(8, 38, 80, 0.08);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(5, 186, 213, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 186, 213, 0.5);
  color: var(--white);
}

.cta-button.gold {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  box-shadow: 0 4px 15px rgba(198, 142, 51, 0.3);
}

.cta-button.gold:hover {
  box-shadow: 0 6px 20px rgba(198, 142, 51, 0.5);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(8, 38, 80, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.3s ease;
}

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

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.98);
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(8, 38, 80, 0.1);
  border-radius: 8px;
  z-index: 1001;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
  flex-direction: column;
}

.dropdown-content a {
  color: var(--navy);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: var(--light-bg);
  color: var(--cyan);
}

.dropdown:hover .dropdown-content {
  display: flex;
}


/* Page Spacing */
.page-content {
  padding-top: 120px;
  min-height: 70vh;
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  background: linear-gradient(rgba(8, 38, 80, 0.85), rgba(8, 38, 80, 0.7)), url('assets/interior_painting.jpg') center/cover;
  color: var(--white);
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Services Overview */
.services-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.service-card:hover {
  transform: translateY(-10px);
}

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

/* Content Pages */
.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.content-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
}

.form-group input, .form-group textarea, .form-group select {
  padding: 1rem;
  border: 1px solid rgba(8, 38, 80, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--cyan);
}

/* Footer */
.main-footer {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 0;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-col p, .footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--cyan);
}

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

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  
  .hamburger {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateY(0);
  }
}
