/* Canadian Website - Premium Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary: #102A43;       /* Dark Blue */
  --primary-hover: #1F4E79; /* Brighter Blue */
  --accent: #C9A96E;        /* Muted Gold */
  --bg-main: #FFFFFF;       /* White */
  --bg-section: #F5F7FA;    /* Light Gray */
  --text-main: #222222;     /* Graphite */
  --text-muted: #6B7280;     /* Gray-Charcoal */
  --border-color: #E2E8F0;  /* Soft border */
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-header);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 19px;
  font-family: var(--font-header);
  border: 2px solid var(--accent);
  box-shadow: 0 4px 10px rgba(201, 169, 110, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  transition: transform 0.5s ease;
  transform: translateX(-100%);
}

.logo:hover .logo-icon {
  transform: rotate(360deg);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.logo:hover .logo-icon::after {
  transform: translateX(100%);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.logo-title {
  font-family: var(--font-header);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-title span {
  color: var(--accent);
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-top: 1px;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-main);
}

nav ul a:hover, nav ul a.active {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 42, 67, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* Hero Section */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-utp {
  display: flex;
  gap: 24px;
}

.utp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

.utp-item span {
  color: var(--accent);
  font-size: 18px;
}

.hero-image {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Section Common */
section {
  padding: 90px 0;
}

.section-light {
  background-color: var(--bg-main);
}

.section-gray {
  background-color: var(--bg-section);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
}

/* Founders Section */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.founders-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.founder-card {
  background: var(--bg-main);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  position: relative;
}

.founder-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent);
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.founder-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.founder-info {
  padding: 16px;
  text-align: center;
}

.founder-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.founder-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.founders-text blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
}

.founders-text p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-main);
  text-align: left;
}

.comparison-table th {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 20px;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 18px;
}

.comparison-table th:last-child {
  background-color: var(--primary-hover);
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.pricing-card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  margin-bottom: 24px;
  height: 40px;
}

.pricing-price {
  font-family: var(--font-header);
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-main);
}

.pricing-features li span {
  color: var(--accent);
  font-weight: bold;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* Map & Contact Block */
.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.map-card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info {
  margin-bottom: 24px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
}

.info-item span {
  color: var(--accent);
  font-size: 20px;
}

.google-partner-badge {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-top: 24px;
}

.google-partner-badge img {
  height: 50px;
}

/* Google Ads Features Grid */
.ads-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ads-feature-card {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  position: relative;
}

.ads-feature-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 4px;
  height: 40px;
  background-color: var(--accent);
}

.ads-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.ads-feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  padding-left: 14px;
}

.ads-feature-card p {
  font-size: 14px;
  padding-left: 14px;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 20px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.8;
}

/* Premium Web Browser Mockup Styles */
.browser-mockup {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.browser-header {
  background: #F1F5F9;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot.red { background: #FF5F56; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #27C93F; }

.browser-address {
  flex-grow: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-muted);
  padding: 1px 8px;
  text-align: center;
  font-family: monospace;
  max-width: 220px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-content {
  position: relative;
  overflow: hidden;
}

.browser-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3D Staggered Hero Showcase */
.hero-showcase {
  position: relative;
  height: 380px;
  width: 100%;
}

.hero-showcase .browser-mockup {
  position: absolute;
  width: 70%;
}

.hero-showcase .mockup-1 { /* Z-Tire (Front Center) */
  left: 15%;
  top: 40px;
  z-index: 3;
  box-shadow: 0 15px 40px rgba(16, 42, 67, 0.12);
}

.hero-showcase .mockup-2 { /* PAC Electric (Left Back) */
  left: 0;
  top: 90px;
  z-index: 2;
  transform: scale(0.9);
  opacity: 0.9;
}

.hero-showcase .mockup-3 { /* Nail Academy / Morkovka (Right Back) */
  right: 0;
  top: 10px;
  z-index: 1;
  transform: scale(0.85);
  opacity: 0.85;
}

.hero-showcase .browser-mockup:hover {
  z-index: 10;
  transform: scale(1.03) translateY(-5px);
  opacity: 1;
  box-shadow: 0 20px 45px rgba(201, 169, 110, 0.2);
  border-color: var(--accent);
}

/* Timeline & Zig-Zag Founders Layout */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.story-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-row.reverse {
  flex-direction: row-reverse;
}

.story-image {
  flex: 1;
  max-width: 480px;
}

.story-image img {
  width: 100%;
  height: auto;
  max-height: 360px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top; /* Prevent cutting heads */
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
  border: 1px solid var(--border-color);
  display: block;
}

.story-text {
  flex: 1.2;
}

.story-text h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
  font-family: var(--font-header);
  position: relative;
  padding-bottom: 10px;
}

.story-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
}

.story-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--text-main);
}

.story-text p strong {
  color: var(--primary);
}

/* Premium Google Partner Card */
.google-partner-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.02);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.google-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.google-partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(201, 169, 110, 0.12);
  border-color: var(--accent);
}

.google-partner-card h4 {
  font-size: 11px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
}

.google-partner-card p {
  font-size: 13px;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.google-partner-card img {
  height: 44px;
  transition: transform 0.3s ease;
}

.google-partner-card:hover img {
  transform: scale(1.04);
}

/* Styled Map Wrapper with Brand Indicator */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16, 42, 67, 0.95);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.1);
}

.map-badge span.dot {
  width: 6px;
  height: 6px;
  background: #27C93F;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #27C93F;
}

.map-iframe-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  /* Premium styled saturation filter (retains standard Google colors & branding) */
  filter: saturate(0.85) contrast(1.02);
}

/* Video Reviews Grid for Testimonials */
.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.video-review-card {
  background: var(--bg-main);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(16, 42, 67, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.video-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.08);
}

.video-thumbnail-container {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #000000;
}

.video-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.video-review-card:hover .video-thumbnail-container img {
  transform: scale(1.04);
  opacity: 0.7;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.35);
  transition: all 0.3s ease;
  cursor: pointer;
}

.play-button-overlay::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #FFFFFF;
  margin-left: 3px;
}

.video-review-card:hover .play-button-overlay {
  background: var(--primary);
  box-shadow: 0 4px 15px rgba(16, 42, 67, 0.35);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-review-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-review-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: var(--font-header);
}

.video-review-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.video-review-transcript {
  background: var(--bg-section);
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
  font-style: italic;
  color: var(--text-main);
  border-left: 3px solid var(--accent);
  margin-top: auto;
  line-height: 1.5;
}


/* Interactive Project Switcher (Hero) */
.showcase-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.showcase-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 5px;
}

.showcase-tab {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.showcase-tab:hover {
  border-color: var(--accent);
  color: var(--primary);
  background: var(--bg-section);
}

.showcase-tab.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(16, 42, 67, 0.15);
}

.browser-mockup.interactive-mockup {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(16, 42, 67, 0.1);
  border-color: var(--border-color);
}

.interactive-mockup .browser-content {
  height: 320px;
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
}

.interactive-mockup .browser-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-utp {
    justify-content: center;
  }
  .founders-grid, .map-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Custom 3D Google Partner Badge */
.custom-partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #102A43 0%, #1F4E79 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 
              0 8px 20px rgba(16, 42, 67, 0.25),
              0 0 0 3px rgba(201, 169, 110, 0.15);
  border-radius: 8px;
  padding: 12px 24px;
  margin: 15px auto;
  max-width: 260px;
  transition: all 0.3s ease;
  position: relative;
}

.custom-partner-badge:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 
              0 12px 24px rgba(201, 169, 110, 0.25),
              0 0 0 4px rgba(201, 169, 110, 0.3);
  border-color: var(--accent);
}

.partner-g-logo {
  background: #FFFFFF;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.partner-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.partner-brand {
  font-family: var(--font-header);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1;
}

.partner-status {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-top: 3px;
}

/* Contact Form & Page Styles */
.contact-form-wrapper {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(16, 42, 67, 0.04);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-form-wrapper p {
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
}

.form-control {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-section);
  color: var(--text-main);
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent);
  background-color: var(--bg-main);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  padding: 14px 28px;
  font-family: var(--font-header);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(16, 42, 67, 0.15);
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 42, 67, 0.25);
  background: var(--accent);
  color: var(--primary);
}

.form-success {
  display: none;
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid #34A853;
  color: #1b5e20;
  padding: 16px;
  border-radius: 6px;
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

/* Premium Footer Layout (Two Columns aligned to bottom) */
.footer-content-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-contacts-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contacts-right h4 {
  color: #FFFFFF;
  font-family: var(--font-header);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-weight: 600;
}

.footer-contacts-right a {
  transition: color 0.3s ease;
}

.footer-contacts-right a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-content-new {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contacts-right {
    text-align: center;
  }
}

/* Responsive & Mobile Menu Drawer Styles */

/* 1. Header Layout adjustments */
.header-cta {
  display: block;
}

.mobile-nav-toggle {
  display: none;
}

.mobile-drawer-cta {
  display: none;
}

/* 2. Portfolio Preview Grid */
.portfolio-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  /* Header & Burger Drawer */
  .header-cta {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
    outline: none;
  }
  
  .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    transition: background-color 0.3s;
  }
  
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    left: 0;
    transition: transform 0.3s, top 0.3s, bottom 0.3s;
  }
  
  .hamburger::before {
    top: -7px;
  }
  
  .hamburger::after {
    bottom: -7px;
  }
  
  /* Open state hamburger */
  .mobile-nav-toggle.active .hamburger {
    background-color: transparent;
  }
  
  .mobile-nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background-color: #FFFFFF;
  }
  
  .mobile-nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
    background-color: #FFFFFF;
  }
  
  /* Sliding Menu Drawer */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(16, 42, 67, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    padding: 100px 30px 40px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  
  nav ul a {
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF !important;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  nav ul a:hover, nav ul a.active {
    color: var(--accent) !important;
    border-bottom-color: var(--accent);
  }
  
  .mobile-drawer-cta {
    display: block;
    margin-top: auto;
    width: 100%;
  }
  
  .mobile-drawer-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, #B8965A 100%);
    color: var(--primary) !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
    border-radius: 6px;
  }
  
  .mobile-drawer-cta .btn:hover {
    background: #FFFFFF;
    color: var(--primary) !important;
  }
  
  /* Stacking columns */
  .story-row, .story-row.reverse {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
  }
  
  .story-image {
    max-width: 100% !important;
    width: 100%;
  }
  
  .portfolio-preview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 32px !important;
  }
  
  /* Scale headings for smaller screens */
  h1 {
    font-size: 32px !important;
  }
  
  h2 {
    font-size: 26px !important;
  }
  
  .hero-content h1 {
    font-size: 32px !important;
  }
  
  .section-header h2 {
    font-size: 26px !important;
  }
  
  .section-header {
    margin-bottom: 35px !important;
  }
  
  section {
    padding: 50px 0 !important;
  }
  
  /* Horizontal scrolling showcase tabs */
  .showcase-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  
  .showcase-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  
  .showcase-tab {
    flex: 0 0 auto;
  }
  
  .hero-utp {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Logo adjustments */
  .logo-title {
    font-size: 15px !important;
  }
  
  .logo-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
  }
  
  .logo-subtitle {
    font-size: 7px !important;
    letter-spacing: 0.8px !important;
  }
  
  /* CTA buttons layout */
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

