/* styles.css - Global Styles */

:root {
  --primary-color: #2a7ae2;
  --background: #f9f9f9;
  --text: #222;
  --font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

@media (max-width: 600px) {
  .container {
    padding: 1rem;
  }
} 

/* === Announcement Bar === */
.announcement-bar {
  background: #ffd700;
  color: #181818;
  text-align: center;
  font-weight: 700;
  padding: 0.7rem 0;
  letter-spacing: 0.03em;
  font-size: 1.08rem;
}

/* === Clicky Ad Section === */
.clicky-ad {
  background: #ffb300;
  color: #181818;
  text-align: center;
  padding: 2.2rem 0 1.5rem 0;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.clicky-ad-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.clicky-ad-btn,
.hero-btn,
.header-cta,
.services-btn,
.portfolio-btn,
.advanced-btn {
  background: #181818;
  color: #ffd700;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 1rem 2.5rem;
  font-size: 1.3rem;
  cursor: pointer;
  margin: 0 0.7rem;
  min-width: 200px;
  display: inline-block;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.clicky-ad-btn:hover,
.hero-btn:hover,
.header-cta:hover,
.services-btn:hover,
.portfolio-btn:hover,
.advanced-btn:hover {
  background: #ffd700;
  color: #232323;
}

/* === Modal Styles === */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal {
  background: #181818;
  color: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 2.2rem 2rem 1.5rem 2rem;
  position: relative;
  text-align: center;
  z-index: 1001;
  animation: modalIn 0.3s cubic-bezier(.4,2,.6,1) 1;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-40px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.modal-desc {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #eee;
}
.modal-form input, .modal-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background: #232323;
  color: #fff;
}
.modal-form input::placeholder, .modal-form textarea::placeholder {
  color: #bbb;
}
.modal-form button {
  background: #ffb300;
  color: #181818;
  border: none;
  border-radius: 22px;
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0.5rem;
}
.modal-form button:hover {
  background: #ffd700;
}
.modal-note {
  font-size: 0.92rem;
  color: #aaa;
  margin-top: 0.5rem;
}

/* === Main Header === */
.main-header {
  background: #181818;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2.5vw;
  min-height: 70px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex: 1 1 auto;
  justify-content: center;
}
.header-nav a, .header-nav .dropdown-btn {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.2rem 0.5rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.header-nav a:hover, .header-nav .dropdown-btn:hover {
  color: #ffd700;
}
.header-nav .dropdown {
  position: relative;
  display: inline-block;
}
.header-nav .dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 2.2rem;
  background: #232323;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border-radius: 8px;
  z-index: 1002;
  padding: 0.5rem 0;
}
.header-nav .dropdown-content a {
  color: #fff;
  padding: 0.7rem 1.2rem;
  display: block;
  font-size: 1rem;
  border: none;
  background: none;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.header-nav .dropdown-content a:hover {
  background: #181818;
  color: #ffd700;
}
.header-nav .dropdown:hover .dropdown-content,
.header-nav .dropdown:focus-within .dropdown-content {
  display: block;
}
.header-cta {
  background: #ffb300;
  color: #181818;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 22px;
  padding: 0.7rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: inline-block;
}
.header-cta:hover {
  background: #ffd700;
  color: #181818;
}

/* === Hero Section === */
.hero {
  background: #232323;
  color: #fff;
  padding: 2.5rem 0 3.5rem 0;
  position: relative;
  text-align: center;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.hero-list {
  margin: 0 0 1.2rem 0;
  padding: 0;
  list-style: none;
}
.hero-list li {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}
.hero-list li:before {
  content: '• ';
  color: #ffd700;
}
.hero-btn {
  background: #ffb300;
  color: #181818;
  border: none;
  border-radius: 22px;
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-btn:hover {
  background: #ffd700;
  color: #232323;
}
.hero-img {
  max-width: 340px;
  margin-left: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* === Services Grid === */
.services-grid {
  background: #ffb300;
  color: #181818;
  text-align: center;
  padding: 2.5rem 0 2.5rem 0;
  font-weight: 700;
}
.services-card {
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 320px;
  background: #fff;
  color: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
}

/* === Portfolio Section === */
.portfolio-section {
  background: #232323;
  color: #fff;
  text-align: center;
  padding: 2.5rem 0 2.5rem 0;
}
.portfolio-card {
  background: #181818;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 1.2rem;
  width: 260px;
  margin-bottom: 1.5rem;
}

/* === Testimonials Section === */
.testimonials-section {
  background: #181818;
  color: #ffd700;
  text-align: center;
  padding: 2.5rem 0 2.5rem 0;
}
.testimonials-card {
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 1.5rem 1.2rem;
  width: 320px;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* === Main Content Layout === */
.main-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 0 1.5rem 2.5rem 1.5rem;
  gap: 2rem;
}
.sidebar {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.center-content {
  flex: 2 1 500px;
}
.card {
  background: #232323;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(42,122,226,0.06);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #ffd700;
}

/* === Enquiry Form === */
.enquiry-form input, .enquiry-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.7rem;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 1rem;
  background: #181818;
  color: #fff;
}
.enquiry-form button {
  background: #ffb300;
  color: #181818;
  border: none;
  border-radius: 18px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.enquiry-form button:hover {
  background: #ffd700;
}

/* === Blog Section === */
.blog-section {
  background: #232323;
  color: #fff;
  text-align: center;
  padding: 2.5rem 0 2.5rem 0;
}
.blog-card {
  background: #181818;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 1.2rem;
  width: 320px;
  margin-bottom: 1.5rem;
}

/* === Advanced Features Section === */
.advanced-section {
  background: #fff;
  color: #181818;
  text-align: center;
  padding: 2.5rem 0 2.5rem 0;
}
.advanced-card {
  flex: 1 1 320px;
  min-width: 320px;
  max-width: 420px;
  background: #f7f7f7;
  color: #181818;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 1.5rem 1.2rem;
  margin-bottom: 1.5rem;
}

/* === Responsive Styles === */
@media (max-width: 1000px) {
  .main-content { flex-direction: column; gap: 0; }
  .sidebar, .center-content { width: 100%; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-img { margin: 2rem 0 0 0; max-width: 90vw; }
}
@media (max-width: 900px) {
  .header-nav { gap: 1.1rem; }
  .header-cta { padding: 0.6rem 1.2rem; font-size: 0.98rem; }
}
@media (max-width: 600px) {
  .main-header { flex-direction: column; align-items: stretch; padding: 0.5rem 1vw; }
  .header-logo { justify-content: center; margin-bottom: 0.5rem; }
  .header-nav { flex-wrap: wrap; gap: 0.7rem; }
  .header-cta { margin: 0.7rem auto 0 auto; display: block; width: 100%; }
  .main-content, .container { padding: 0 0.5rem; }
  .hero-title { font-size: 1.3rem; }
  .card-title { font-size: 1rem; }
  .modal { padding: 1.2rem 0.5rem 1rem 0.5rem; }
} 

/* === Clicky Ad Section Additions === */
.clicky-ad-subtitle {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  color: #181818;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.clicky-ad-ready {
  margin-top: 1.2rem;
  font-size: 1.15rem;
}
.clicky-ad-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

/* === Call Me Modal Additions === */
.call-me-title {
  margin-top: 1rem;
}
.call-me-number {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.2rem 0;
  color: #ffd700;
}
.call-me-btn {
  background: #ffd700;
  color: #181818;
  font-weight: 700;
  border-radius: 22px;
  padding: 0.7rem 2.2rem;
  text-decoration: none;
  font-size: 1.15rem;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.call-me-btn:hover {
  background: #181818;
  color: #ffd700;
}

/* === Header Logo Additions === */
.header-logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.header-logo-text {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* === Hero Section Additions === */
.hero-highlight {
  color: #ffd700;
}
.hero-actions {
  margin-bottom: 2rem;
}
.hero-btn-outline {
  background: #181818;
  color: #ffd700;
  border: 2px solid #ffd700;
}
.hero-btn-accent {
  background: #ffd700;
  color: #181818;
}
.hero-muted {
  color: #bbb;
}

/* === Services Grid Additions === */
.services-grid-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}
.services-grid-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.services-card-icon {
  font-size: 2.2rem;
}
.services-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.services-card-desc {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.services-grid-footer {
  margin-top: 2.2rem;
  font-size: 1.2rem;
  color: #181818;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.services-grid-brand {
  background: #181818;
  color: #ffd700;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
}

/* === Portfolio Section Additions === */
.portfolio-section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
  color: #ffd700;
}
.portfolio-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
}
.portfolio-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.7rem;
}
.portfolio-card-title {
  font-weight: 700;
  color: #ffd700;
}
.portfolio-card-desc {
  font-size: 0.98rem;
  color: #fff;
}

/* === Testimonials Section Additions === */
.testimonials-section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
}
.testimonials-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.7rem;
  color: #ffd700;
}
.testimonials-author {
  font-weight: 700;
  color: #fff;
}

/* === Blog Section Additions === */
.blog-section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
  color: #ffd700;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
}
.blog-card-title {
  font-weight: 700;
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.blog-card-desc {
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 0.7rem;
}
.blog-card-link {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 700;
}
.blog-card-link:hover {
  color: #fff;
}

/* === Advanced Section Additions === */
.advanced-section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
  color: #232323;
}
.advanced-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
}
.advanced-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.advanced-card-desc {
  margin-bottom: 1rem;
}
.advanced-map {
  border: 0;
  border-radius: 8px;
}
.advanced-newsletter-form {
  margin-top: 1rem;
}
.advanced-newsletter-input {
  width: 80%;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #bbb;
  margin-bottom: 0.7rem;
} 

/* === Modal List for Website Build Modal === */
.modal-list {
  text-align: left;
  margin: 1.2rem 0 0.7rem 0;
  padding-left: 1.2rem;
  font-size: 1.05rem;
  color: #fff;
}
.modal-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.modal-list .modal-note {
  color: #ffd700;
  font-size: 0.98rem;
} 

/* === DeepThink SEO Portfolio Image Smaller === */
.portfolio-img[alt="DeepThink SEO"] {
  max-width: 180px;
  margin: 0 auto 1rem auto;
  display: block;
} 