
/* Base Styles */
:root {
  --primary: #FACC15;
  --primary-hover: #EAB308;
  --black: #000000;
  --white: #fafafa;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --border-radius: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}


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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  color: var(--gray-800);
  background-color: var(--white);
  margin: 0;
  padding: 0 50px;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--black);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-800);
}

.btn-outline:hover {
  background-color: var(--gray-100);
}

/* Header/Navbar */
.header {
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  background-color: var(--white);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.yellow-dot {
  color: var(--primary);
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  margin: 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.desktop-cta {
  display: none;
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.menu-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--gray-800);
}

.menu-icon:before,
.menu-icon:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--gray-800);
  transition: var(--transition);
}

.menu-icon:before {
  top: -8px;
}

.menu-icon:after {
  top: 8px;
}

.mobile-menu {
  display: none;
  padding: 1rem;
  background-color: var(--white);
  border-top: 1px solid var(--gray-100);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 1rem;
}

.mobile-menu .btn {
  margin-top: 1rem;
  width: 100%;
}

/* Hero Section */
/* Hero Section */
.hero {
  padding: 5rem 1rem;
  background-color: var(--white);
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero Image Layout */
.hero-image-group {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.image-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* More aesthetic rectangle shapes */
.profile-img {
  width: 160px;
  height: 200px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modern arch shape for main image */
.image-right .main-img {
  height: 400px;
  width: auto;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Doodle styling */
.doodle {
  position: absolute;
  width: 80px;
  pointer-events: none;
  z-index: -1;
}

.doodle-top {
  top: -30px;
  left: -30px;
  transform: rotate(-25deg);
}

.doodle-bottom {
  bottom: -25px;
  left: 120px;
  transform: rotate(-35deg);
}

.doodle-arc {
  top: 0px;
  left: 450px;
  transform: rotate(25deg);
}

/* Responsive layout for larger screens */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: space-between;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image-group {
    flex: 1;
    justify-content: flex-end;
  }

  .image-left {
    gap: 1.5rem;
  }
}


/* Solutions Sections */
.solutions {
  padding: 4rem 1rem;
  position: relative;
}

.gray-bg {
  background-color: var(--gray-50);
}

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

.section-header p {
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 20rem;
  margin: 0 auto;
}

.service-icon-container {
  margin-bottom: 2rem;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  padding: 0.25rem;
  width: 16rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  background-color: var(--gray-50);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon.icon-only i {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.service-list {
  color: var(--gray-700);
  font-size: 0.875rem;
}

/* Decorative Elements */
.decorative-element {
  position: absolute;
  z-index: 0;
}

.decorative-element.top-right {
  top: 0;
  right: 0;
}

.decorative-element.top-left {
  top: 0;
  left: 0;
}

.decorative-element.bottom-right {
  bottom: 0;
  right: 0;
}

.decorative-element.bottom-left {
  bottom: 0;
  left: 0;
}

.squares {
  display: flex;
  gap: 0.5rem;
}

.square {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary);
  transform: rotate(45deg);
  margin-top: -0.75rem;
}

.circle {
  width: 4rem;
  height: 4rem;
  border: 4px solid var(--primary);
  border-radius: 50%;
  transform: translateY(-2rem);
}

.rounded-rectangle {
  width: 6rem;
  height: 1rem;
  background-color: var(--primary);
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  transform: translateY(-2rem);
}

.rotated-square {
  width: 3rem;
  height: 3rem;
  border: 4px solid var(--primary);
  transform: rotate(45deg) translate(2.5rem, 2.5rem);
}

.vertical-lines {
  display: flex;
  gap: 0.25rem;
}

.vertical-lines .line {
  width: 0.5rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 1rem;
}

.horizontal-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.horizontal-lines .line {
  height: 0.25rem;
  background-color: var(--primary);
}

.horizontal-lines .line:nth-child(1) {
  width: 4rem;
}

.horizontal-lines .line:nth-child(2) {
  width: 3rem;
}

.horizontal-lines .line:nth-child(3) {
  width: 2rem;
}

.corner-border {
  width: 5rem;
  height: 5rem;
  border-left: 4px solid var(--primary);
  border-top: 4px solid var(--primary);
}

/* Marketing Plan Section */
.marketing-plan {
  padding: 4rem 1rem;
  position: relative;
}

.marketing-image {
  position: relative;
  margin-top: 3rem;
}

.marketing-grid {
  background-color: var(--gray-50);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.placeholder-image {
  height: 10rem;
  background-color: var(--gray-100);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.placeholder-text-long {
  height: 1rem;
  background-color: var(--gray-100);
  border-radius: 0.25rem;
  width: 75%;
  margin-bottom: 0.5rem;
}

.placeholder-text-medium {
  height: 1rem;
  background-color: var(--gray-100);
  border-radius: 0.25rem;
  width: 75%;
  margin-bottom: 0.5rem;
}

.placeholder-text-short {
  height: 0.75rem;
  background-color: var(--gray-100);
  border-radius: 0.25rem;
  width: 50%;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-card {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  height: 6rem;
}

.yellow-square {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.gray-square {
  width: 3rem;
  height: 3rem;
  background-color: var(--gray-200);
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.black-square {
  width: 3rem;
  height: 3rem;
  background-color: var(--black);
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.text-area {
  flex-grow: 1;
}

.yellow-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  z-index: -1;
}

/* Big Thinking Section */
.big-thinking {
  padding: 5rem 1rem;
  position: relative;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-column {
  margin-bottom: 2rem;
}

.text-column p {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.image-column {
  position: relative;
}

.image-container {
  background-color: var(--gray-100);
  border-radius: 0.5rem;
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Stats Section */
.stats {
  padding: 5rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-text {
  color: var(--gray-600);
}

/* You Can Do It Section */
.you-can-do-it {
  padding: 5rem 1rem;
  background-color: var(--black);
  color: var(--white);
  position: relative;
}

.yellow-text {
  color: var(--primary);
}

.you-can-do-it h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.you-can-do-it p {
  margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 1rem;
}

.testimonials h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials h2 span {
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.testimonial-text {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  padding: 5rem 1rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta h2 span {
  display: block;
}

.cta p {
  color: var(--gray-600);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.cta .btn-primary {
  padding: 1rem 2rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--black);
  background-image: url('assets/img/grafotics-footer.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 4rem 1rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.company-info p {
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--gray-400);
}

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

.social-icons i {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--gray-400);
}

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

.contact-info ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--gray-400);
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.slogan {
  background-color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

.slogan span {
  color: var(--black);
  font-weight: 600;
}

/* Media Queries for Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .marketing-grid {
    flex-direction: row;
  }
  
  .main-card {
    width: 50%;
  }
  
  .sidebar {
    width: 50%;
  }
  
  .two-column {
    flex-direction: row;
  }
  
  .text-column {
    width: 50%;
    padding-right: 2rem;
    margin-bottom: 0;
  }
  
  .image-column {
    width: 50%;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .footer-bottom p {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  
  .desktop-cta {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 2.5rem;
  }
  
  .hero-text {
    width: 50%;
    margin-bottom: 0;
  }
  
  .hero-image {
    width: 50%;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.contact-section {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(145deg, #facc15, #fff4e6);
  padding: 6rem 1rem;
  color: #333;
}

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

.contact-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
}

.contact-heading p {
  color: #666;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.contact-info i {
  color: #facc15;
  font-size: 1.2rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  background: #fefefe;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 3px rgba(242, 105, 36, 0.1);
}

.btn-contact {
  background-color: #facc15;
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background-color: #facc15;
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .contact-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-info,
  .contact-form {
    width: 48%;
  }
}
