/* ADW Mimarlık - Professional CSS (Next.js Tasarımının Birebir Kopyası) */

/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --adw-black: #000000;
  --adw-yellow: #FFB81C;
  --adw-yellow-hover: #e5a519;
  --adw-grey: #404040;
  --adw-light-grey: #f5f5f5;
  --adw-white: #ffffff;
  --text-gray-300: #d1d5db;
  --text-gray-400: #9ca3af;
  --text-gray-500: #6b7280;
  --text-gray-600: #4b5563;
  --border-gray-800: #1f2937;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--adw-white);
  color: var(--adw-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 120px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav {
  display: none;
}

.nav a {
  color: var(--adw-white);
  font-size: 0.875rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--adw-yellow);
}

.header-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--adw-white);
  font-size: 0.875rem;
}

.header-phone:hover {
  color: var(--adw-yellow);
}

.header-phone svg {
  width: 16px;
  height: 16px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--adw-yellow);
  color: var(--adw-black);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--adw-yellow-hover);
}

.btn-cta svg {
  width: 16px;
  height: 16px;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--adw-white);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem;
}

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

.mobile-menu a {
  display: block;
  color: var(--adw-white);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
}

.mobile-menu a:hover {
  color: var(--adw-yellow);
}

.mobile-menu .btn-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--adw-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--adw-yellow);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray-300);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--adw-yellow);
  color: var(--adw-black);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--adw-white);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  border: 2px solid var(--adw-white);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--adw-white);
  color: var(--adw-black);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--adw-black);
  color: var(--adw-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--adw-grey);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--adw-white);
  border-radius: 9999px;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-white {
  background: var(--adw-white);
}

.section-light {
  background: var(--adw-light-grey);
}

.section-dark {
  background: var(--adw-black);
}

.section-yellow {
  background: var(--adw-yellow);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--adw-black);
  margin-bottom: 1rem;
  text-align: center;
}

.section-title .highlight {
  color: var(--adw-yellow);
}

.section-subtitle {
  color: var(--text-gray-600);
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.about-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--adw-black);
  margin-bottom: 1rem;
}

.about-content h2 .highlight {
  color: var(--adw-yellow);
}

.about-content p {
  color: var(--text-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--adw-yellow);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-gray-400);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--adw-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 184, 28, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--adw-yellow);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--adw-yellow);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
  color: var(--adw-black);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--adw-black);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.project-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.project-info span {
  color: var(--adw-yellow);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-info h3 {
  color: var(--adw-white);
  font-weight: 600;
  margin-top: 0.25rem;
}

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

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--adw-black);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(0, 0, 0, 0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.cta-section .btn-secondary {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--adw-black);
  color: var(--adw-white);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand .logo img {
  width: 150px;
  height: 50px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-gray-400);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 28rem;
}

.footer-slogan {
  color: var(--adw-yellow);
  font-weight: 600;
  font-size: 1.125rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--adw-white);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-gray-400);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--adw-yellow);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--adw-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  color: var(--text-gray-400);
  font-size: 0.875rem;
}

.footer-contact-item a:hover {
  color: var(--adw-white);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.footer-social a:hover {
  color: var(--adw-yellow);
}

.footer-social svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  border-top: 1px solid var(--border-gray-800);
  padding: 1.5rem 0;
}

.footer-bottom p {
  text-align: center;
  color: var(--text-gray-500);
  font-size: 0.875rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--adw-black);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--adw-white);
  margin-bottom: 1rem;
}

.page-header h1 .highlight {
  color: var(--adw-yellow);
}

.page-header p {
  color: var(--text-gray-400);
  max-width: 42rem;
  margin: 0 auto;
}

/* About Page Sections */
.philosophy-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.philosophy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.philosophy-content h2 .highlight {
  color: var(--adw-yellow);
}

.philosophy-content p {
  color: var(--text-gray-600);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.philosophy-image {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.brand-card {
  background: var(--adw-white);
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-color: var(--adw-yellow);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.brand-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--adw-black);
  margin-bottom: 0.5rem;
}

.brand-card p {
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--adw-white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: var(--adw-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--adw-black);
}

.value-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--adw-black);
  margin-bottom: 0.25rem;
}

.value-content p {
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

/* Mission Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.mission-card,
.vision-card {
  padding: 2rem;
  border-radius: 0.5rem;
}

.mission-card {
  background: var(--adw-black);
}

.vision-card {
  background: var(--adw-yellow);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mission-card h3 {
  color: var(--adw-yellow);
}

.vision-card h3 {
  color: var(--adw-black);
}

.mission-card p {
  color: var(--text-gray-300);
}

.vision-card p {
  color: var(--adw-black);
}

/* Services Page */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-full-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--adw-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-full-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-full-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.service-full-content {
  padding: 1.5rem;
}

.service-full-content h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--adw-black);
  margin-bottom: 0.75rem;
}

.service-full-content h3 svg {
  color: var(--adw-yellow);
  width: 1.5rem;
  height: 1.5rem;
}

.service-full-content p {
  color: var(--text-gray-600);
  line-height: 1.75;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.process-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--adw-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--adw-black);
  flex-shrink: 0;
}

.process-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--adw-black);
  margin-bottom: 0.25rem;
}

.process-content p {
  font-size: 0.875rem;
  color: var(--text-gray-600);
}

/* Projects Page */
.projects-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 184, 28, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--adw-yellow);
}

.contact-item h4 {
  font-weight: 600;
  color: var(--adw-black);
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-gray-600);
}

.contact-item a:hover {
  color: var(--adw-yellow);
}

.contact-form {
  background: var(--adw-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--adw-black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--adw-yellow);
  box-shadow: 0 0 0 3px rgba(255, 184, 28, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--adw-yellow);
  color: var(--adw-black);
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--adw-yellow-hover);
}

/* Map */
.map-container {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 3rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Appointment Page */
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.appointment-info {
  background: var(--adw-black);
  padding: 2rem;
  border-radius: 0.5rem;
}

.appointment-info h3 {
  color: var(--adw-yellow);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.appointment-info p {
  color: var(--text-gray-300);
  margin-bottom: 1rem;
}

.appointment-info ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.appointment-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray-400);
  font-size: 0.875rem;
}

.appointment-info li svg {
  color: var(--adw-yellow);
  width: 1.25rem;
  height: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.mt-10 {
  margin-top: 2.5rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.75rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .projects-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .header-right {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stat-item h3 {
    font-size: 3rem;
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content h2 {
    font-size: 2.25rem;
  }
  
  .philosophy-section {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .philosophy-content h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .page-header h1 {
    font-size: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .cta-section h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .projects-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-full-card {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}