/* ===== Suncity-Digital Website Styles ===== */

/* CSS Variables */
:root {
  --color-primary: #ffffff;
  --color-secondary: #e0e0e0;
  --color-accent: #4a9eff;
  --color-bg-dark: #1a1a1a;
  --color-bg-darker: #111111;
  --color-bg-section: #1e1e1e;
  --color-bg-overlay: rgba(16, 17, 18, 0.35);
  --color-text: #ffffff;
  --color-text-muted: #b0b0b0;
  --color-text-dark: #333333;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-card-bg: #ffffff;
  --color-card-text: #333333;
  --color-card-muted: #666666;
  --font-primary: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-bg-darker);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-bottom: 1px solid var(--color-border);
}

.navbar.scrolled {
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo span {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-accent);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.98);
  z-index: 999;
  padding: 40px;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a.active {
  color: var(--color-accent);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h4 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-content .btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.hero-content .btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Hero Carousel Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots .dot.active {
  background-color: var(--color-primary);
}

/* ===== Cloud Computing Section ===== */
.cloud-section {
  padding: 100px 40px;
  background-color: var(--color-bg-section);
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.cloud-section .cloud-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.cloud-section .cloud-image img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.cloud-section .cloud-image:hover img {
  transform: scale(1.03);
}

.cloud-section .cloud-text {
  flex: 1;
}

.cloud-section .cloud-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cloud-section .cloud-text h4 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.cloud-section .cloud-text .btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
}

.cloud-section .cloud-text .btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-nav button {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition);
  opacity: 0.7;
}

.carousel-nav button:hover {
  opacity: 1;
}

.carousel-nav .dots {
  display: flex;
  gap: 8px;
}

.carousel-nav .dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-nav .dots .dot.active {
  background-color: var(--color-primary);
}

/* ===== Services Section ===== */
.services-section {
  padding: 100px 40px;
  background-color: var(--color-bg-dark);
  text-align: center;
}

.services-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-section h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  text-align: left;
  overflow: hidden;
}

.service-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
  transition: transform 0.5s ease;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-item .service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  transition: var(--transition);
}

.service-item .service-link:hover {
  opacity: 0.8;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 100px 40px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.testimonials-section h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--color-card-bg);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-card-text);
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-card-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .btn-card {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-card-text);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-card .btn-card:hover {
  background-color: #e0e0e0;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 100px 40px;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
}

.contact-section .contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.contact-section h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn-submit {
  display: inline-block;
  padding: 12px 32px;
  background-color: #e0e0e0;
  border: none;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.contact-form .btn-submit:hover {
  background-color: #ccc;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

.contact-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 10px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-item .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  flex-shrink: 0;
}

.contact-info-item .text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.contact-info-item .text a {
  color: var(--color-accent);
}

.contact-info-item .text a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--color-bg-darker);
  padding: 30px 40px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

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

/* ===== About Page ===== */
.about-hero {
  padding: 140px 40px 60px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.about-section {
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-section .about-item {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-border);
}

.about-section .about-item:last-child {
  border-bottom: none;
}

.about-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-section p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* About - Images section */
.about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 40px;
}

.about-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.about-images img:hover {
  transform: scale(1.05);
}

/* Team Section */
.team-section {
  padding: 100px 40px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.team-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.team-section h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background-color: var(--color-bg-dark);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card .team-info {
  padding: 24px;
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Accordion / FAQ */
.faq-section {
  padding: 100px 40px;
  background-color: var(--color-bg-dark);
  text-align: center;
}

.faq-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.faq-section h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== Services Page ===== */
.services-hero {
  padding: 140px 40px 60px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.services-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-hero h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.service-detail {
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail:nth-child(even) {
  flex-direction: row-reverse;
}

.service-detail img {
  flex: 1;
  width: 100%;
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
}

.service-detail .service-detail-text {
  flex: 1;
}

.service-detail h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-detail p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-detail .btn {
  display: inline-block;
  padding: 10px 28px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  color: var(--color-text);
}

.service-detail .btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 40px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-section h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--color-bg-dark);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid var(--color-border);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pricing-card.recommended {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.2);
}

.pricing-card .recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card img.plan-icon {
  width: 80px;
  height: 32px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-accent);
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-card .btn-select {
  display: inline-block;
  padding: 10px 28px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  color: var(--color-text);
  margin-bottom: 24px;
  width: 100%;
}

.pricing-card .btn-select:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.pricing-card ul {
  text-align: left;
}

.pricing-card ul li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card ul li::before {
  content: '•';
  margin-right: 8px;
  color: var(--color-accent);
}

/* ===== Portfolio Page ===== */
.portfolio-hero {
  padding: 140px 40px 60px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.portfolio-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.portfolio-hero h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-bg-section);
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-card .portfolio-info {
  padding: 24px;
}

.portfolio-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Case Studies Section */
.case-studies-section {
  padding: 100px 40px;
  background-color: var(--color-bg-dark);
  text-align: center;
}

.case-studies-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.case-studies-section h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-card {
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

.case-study-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.case-study-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 16px 0 10px;
}

.case-study-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.case-study-card .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-card .read-more:hover {
  opacity: 0.8;
}

/* Testimonials Page Section */
.page-testimonials {
  padding: 100px 40px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.page-testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-testimonials h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 60px;
}

.page-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-testimonial-card {
  background-color: var(--color-bg-dark);
  border-radius: 8px;
  padding: 30px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.page-testimonial-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-testimonial-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-page-hero {
  padding: 140px 40px 60px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.contact-page-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-page-hero h4 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section {
  padding: 80px 40px;
  background-color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-text p {
  color: var(--color-text-muted);
}

.newsletter-form {
  flex: 1;
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.newsletter-form .btn {
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form .btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.office-section {
  padding: 80px 40px;
  background-color: var(--color-bg-section);
  text-align: center;
}

.office-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.office-section h4 {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.office-info {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.office-info-item .icon {
  width: 20px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.office-info-item .text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.office-info-item .text a {
  color: var(--color-accent);
}

.office-info-item .text a:hover {
  text-decoration: underline;
}

/* ===== Cookie Policy Page ===== */
.cookie-page {
  padding: 140px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.cookie-page h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 12px;
}

.cookie-page p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cookie-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.cookie-page ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  list-style: disc;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: var(--color-bg-darker);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  z-index: 2000;
  box-shadow: var(--shadow);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

.cookie-banner h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-banner .btn-accept {
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-banner .btn-accept:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.cookie-banner .learn-more {
  font-size: 0.85rem;
  color: var(--color-accent);
}

/* ===== Animations ===== */
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid,
  .portfolio-grid,
  .case-studies-grid,
  .page-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cloud-section {
    flex-direction: column;
    padding: 60px 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .newsletter-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 120px 20px 60px;
  }
  
  .services-grid,
  .testimonials-grid,
  .portfolio-grid,
  .case-studies-grid,
  .page-testimonials-grid,
  .about-images {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .service-detail:nth-child(even) {
    flex-direction: column;
  }
  
  .cloud-section {
    padding: 40px 20px;
  }
  
  .contact-section,
  .services-section,
  .testimonials-section,
  .team-section,
  .faq-section,
  .pricing-section {
    padding: 60px 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .hero-content h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .nav-logo span {
    font-size: 1rem;
  }
}
