/* 
  SURTAŞ ŞÖMİNE - Premium Styling System
  Vanilla CSS with Dark/Gold Accents
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary: #d4af37; /* Luxury Gold */
  --primary-hover: #c5a059;
  --primary-dark: #aa8423;
  --primary-light: rgba(212, 175, 55, 0.15);
  
  --dark-bg: #111111;
  --dark-card: #1a1a1a;
  --dark-hover: #222222;
  
  --light-bg: #faf9f6; /* Warm White */
  --light-card: #ffffff;
  
  --text-dark: #222222;
  --text-light: #f5f5f5;
  --text-muted: #888888;
  --text-gold: #e5c158;
  
  --border-light: #eaeaea;
  --border-dark: #2a2a2a;
  --border-gold: #d4af37;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --container-width: 1200px;
  
  --header-height: 90px;
}

/* Base & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: #111111;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: #111111;
}

.btn-dark {
  background-color: #111111;
  color: var(--text-light);
  border-color: #111111;
}

.btn-dark:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #111111;
}

/* Header & Navigation */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--header-height);
  transition: var(--transition);
}

header.sticky {
  position: fixed;
  height: 80px;
  background-color: rgba(17, 17, 17, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary);
}

.logo-text {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--primary);
  display: block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  margin-top: -4px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

/* Contact Info & CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  color: var(--text-light);
  font-size: 0.85rem;
}

.header-phone .phone-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.header-phone .phone-num {
  font-weight: 700;
  font-size: 1.05rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  margin: 6px 0;
  transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 700px;
  padding: 0 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s 0.3s ease-out, opacity 0.8s 0.3s ease-out;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-subtitle {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.slide-desc {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: rgba(255,255,255,0.85);
}

.slide-btns {
  display: flex;
  gap: 15px;
}

/* Slider Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
  color: #111111;
  border-color: var(--primary);
}

.arrow-prev {
  left: 30px;
}

.arrow-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

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

.dot.active {
  background-color: var(--primary);
  width: 30px;
  border-radius: 6px;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.section-header.left .section-title::after {
  left: 0;
  transform: none;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--light-card);
  border: 1px solid var(--border-light);
  padding: 40px 30px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111111;
  z-index: -1;
  transform: translateY(102%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #111111;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  background-color: rgba(255,255,255,0.08);
}

.service-icon {
  width: 35px;
  height: 35px;
  fill: var(--primary);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  transition: var(--transition);
}

.service-card:hover .service-title {
  color: var(--text-light);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-desc {
  color: rgba(255,255,255,0.7);
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link span {
  transition: transform 0.3s;
}

.service-card:hover .service-link span {
  transform: translateX(5px);
}

/* Why Us Section */
.why-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.why-us-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-left: 4px solid var(--primary);
  border-top: 4px solid var(--primary);
  z-index: -1;
}

.why-us-list {
  display: grid;
  gap: 25px;
}

.why-us-item {
  display: flex;
  gap: 15px;
}

.why-us-check {
  width: 24px;
  height: 24px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.why-us-check svg {
  width: 12px;
  height: 12px;
  fill: var(--primary);
}

.why-us-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 5px;
}

.why-us-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: var(--transition);
  z-index: 2;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

.portfolio-title {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  background-color: #111111;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 45px;
  height: 45px;
  fill: var(--primary);
  margin: 0 auto 15px auto;
  opacity: 0.85;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Brands Section */
.brands-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brands-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-logo {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: #c0c0c0;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: default;
  transition: var(--transition);
}

.brand-logo:hover {
  color: var(--text-dark);
}

.brand-logo span {
  color: var(--primary);
}

/* Footer Section */
footer {
  background-color: #0c0c0c;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  border-top: 3px solid var(--primary);
}

.footer-top {
  padding: 80px 0 50px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col-about .footer-logo {
  margin-bottom: 25px;
}

.footer-col-about p {
  line-height: 1.7;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--text-light);
}

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

.social-link:hover svg {
  fill: #111111;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-list {
  display: grid;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* Floating Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  position: relative;
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2s infinite;
}

.btn-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #111111;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp:hover .btn-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

.btn-totop {
  background-color: var(--primary);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}

.btn-totop.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.btn-totop svg {
  width: 20px;
  height: 20px;
  fill: #111111;
}

.btn-totop:hover {
  background-color: var(--primary-hover);
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Page Header (Internal Pages) */
.page-header {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
  margin-top: 0;
  padding-top: 80px;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.7);
}

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

.breadcrumbs span {
  margin: 0 8px;
  color: rgba(255,255,255,0.4);
}

/* Internal Page Styles */
.about-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #111;
}

.about-content p {
  margin-bottom: 20px;
  color: #444;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.about-stat-box {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 25px;
  border-radius: 4px;
  text-align: center;
}

.about-stat-number {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.about-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Service Detail Layout */
.service-detail-container {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 50px;
}

.service-main-content h3 {
  font-size: 1.8rem;
  margin: 30px 0 20px 0;
  color: #111;
}

.service-main-content p {
  margin-bottom: 20px;
  color: #444;
}

.service-main-content img {
  border-radius: 4px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  width: 100%;
}

.service-detail-list {
  display: grid;
  gap: 15px;
  margin: 25px 0;
}

.service-detail-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.service-detail-icon {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: 4px;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.widget-links {
  display: grid;
  gap: 10px;
}

.widget-link {
  padding: 12px 15px;
  background-color: var(--light-bg);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-link:hover, .widget-link.active {
  background-color: var(--primary);
  color: #111;
}

.widget-cta-box {
  background-color: #111;
  color: var(--text-light);
  padding: 40px 30px;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.widget-cta-box h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.widget-cta-box p {
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.7);
}

/* Contact Page Layout */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 25px;
  border-radius: 4px;
  display: flex;
  gap: 15px;
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--primary);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form Styles */
.contact-form-panel {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #111;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
}

.form-control {
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

/* Form Success & Error Alerts */
.form-alert {
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  font-size: 0.9rem;
  display: none;
}

.form-alert.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-alert.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Map Mockup */
.map-container {
  margin-top: 50px;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.map-mockup {
  width: 100%;
  height: 100%;
  background-color: #e5e3df;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-overlay {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  text-align: center;
  border-top: 3px solid var(--primary);
  z-index: 5;
}

.map-overlay h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #111;
}

.map-overlay p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Photo Gallery & Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  color: #111;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-icon-zoom {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #111;
  margin-bottom: 10px;
  transform: scale(0.7);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-icon-zoom {
  transform: scale(1);
}

.gallery-icon-zoom svg {
  width: 18px;
  height: 18px;
}

.gallery-item-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 2px;
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--primary);
}

/* Products Catalog Layout */
.products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.product-img-box {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.product-card:hover .product-img-box img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: #111;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info {
  padding: 25px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.product-features {
  display: grid;
  gap: 8px;
  margin: 15px 0 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-feature-item svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
}

/* Responsive Grid Adjustments */

@media (max-width: 1199px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  header {
    height: 75px;
  }
  header.sticky {
    height: 70px;
  }
  .nav-menu {
    display: none; /* Hide for mobile drawer */
  }
  .header-right {
    gap: 15px;
  }
  .header-phone {
    display: none; /* Hide phone in header on tablet/mobile */
  }
  .mobile-menu-btn {
    display: block;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .service-detail-container {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .slide-title {
    font-size: 2.5rem;
  }
  .slide-desc {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .products-container {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .floating-widgets {
    bottom: 20px;
    right: 20px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .btn-whatsapp-tooltip {
    display: none; /* Hide tooltip on small mobile */
  }
  .page-title {
    font-size: 2.2rem;
  }
  .contact-form-panel {
    padding: 25px;
  }
}

/* Mobile Drawer Styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #111111;
  z-index: 10001;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 40px;
}

.mobile-drawer-close:hover {
  color: var(--primary);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer-link {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-drawer-link:hover, .mobile-drawer-link.active {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-drawer-contact {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.mobile-drawer-contact a:hover {
  color: var(--primary);
}
