/*
Theme Name: Mardin Rose Sanal Ofis
Theme URI: https://mardinsanalofis.com
Author: Mardin Rose
Author URI: https://mardinsanalofis.com
Description: Mardin Rose Sanal Ofis Hizmetleri için profesyonel ve modern WordPress teması
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mardin-rose
Domain Path: /languages
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

a {
  color: #FF8C00;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E67E00;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.col {
  flex: 1;
  min-width: 250px;
  padding: 15px;
}

.col-1-2 {
  flex: 0 0 50%;
}

.col-1-3 {
  flex: 0 0 33.333%;
}

.col-1-4 {
  flex: 0 0 25%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
}

.logo img {
  height: 50px;
  margin-right: 15px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: #1A1A1A;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FF8C00;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,140,0,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FF8C00;
  color: #ffffff;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #FF8C00;
  font-size: 1rem;
}

.btn:hover {
  background-color: #E67E00;
  border-color: #E67E00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #FF8C00;
  border: 2px solid #FF8C00;
}

.btn-outline:hover {
  background-color: #FF8C00;
  color: #ffffff;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

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

.service-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: #FF8C00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #ffffff;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-us-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.why-us-text h2 {
  margin-bottom: 30px;
}

.why-us-list {
  list-style: none;
}

.why-us-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

.why-us-list li:last-child {
  border-bottom: none;
}

.why-us-list li::before {
  content: '✓';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #FF8C00;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 15px;
  font-weight: bold;
  flex-shrink: 0;
}

.why-us-image {
  flex: 1;
}

.why-us-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2d2d2d 100%);
  color: #ffffff;
}

.contact-content {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  color: #ffffff;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #FF8C00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-details p {
  color: #d0d0d0;
  margin-bottom: 0;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #333;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF8C00;
  box-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
}

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

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #1A1A1A;
  color: #d0d0d0;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 30px;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #d0d0d0;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FF8C00;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FF8C00;
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #E67E00;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #999;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .col-1-2,
  .col-1-3,
  .col-1-4 {
    flex: 0 0 100%;
  }

  .why-us-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 60px 0;
  }

  .services,
  .why-us,
  .contact {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 25px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  nav ul {
    gap: 10px;
  }
}




/* Final mobile and layout improvements */
.site-header{padding:0;background:#fff;}
.header-container{max-width:1280px;}
.header-inner{min-height:86px;gap:24px;position:relative;}
.logo{flex:0 0 auto;min-width:260px;}
.logo-link{display:flex;align-items:center;gap:12px;color:#1A1A1A;white-space:nowrap;}
.logo img{height:46px;margin:0;}
.logo span{font-family:'Montserrat',sans-serif;font-size:1.45rem;font-weight:800;letter-spacing:-.5px;}
.primary-nav{flex:1;display:flex;justify-content:flex-end;}
.nav-menu{display:flex;align-items:center;justify-content:flex-end;gap:8px;list-style:none;flex-wrap:wrap;}
.nav-menu li{margin:0;}
.nav-menu a{display:block;padding:10px 12px;border-radius:10px;font-size:1rem;font-weight:600;color:#1A1A1A;}
.nav-menu a:hover{background:#fff3e3;color:#FF8C00;}
.mobile-menu-toggle{display:none;background:#FF8C00;color:#fff;border:0;border-radius:10px;padding:9px 13px;font-size:1.35rem;cursor:pointer;line-height:1;}
.eyebrow{display:inline-block;color:#FFB04A;font-weight:700;margin-bottom:12px;letter-spacing:.08em;text-transform:uppercase;}
.hero{padding:92px 0;}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.btn-outline-light{background:transparent;color:#fff;border-color:#fff;}
.btn-outline-light:hover{background:#fff;color:#1A1A1A;border-color:#fff;}
.section-title p{color:#666;margin-top:-8px;}
.white-section{background:#fff;}
.service-grid,.pricing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.service-card,.price-card{background:#fff;border-radius:18px;padding:28px;box-shadow:0 8px 28px rgba(0,0,0,.08);height:100%;text-align:center;border:1px solid #f0f0f0;transition:.25s ease;}
.service-card:hover,.price-card:hover{transform:translateY(-5px);box-shadow:0 12px 34px rgba(0,0,0,.12);}
.image-card img,.price-card img{width:100%;max-width:190px;height:130px;object-fit:contain;margin:0 auto 18px;display:block;}
.price-card.featured{border:2px solid #FF8C00;position:relative;}
.price{font-size:2rem;font-weight:800;color:#FF8C00;margin:12px 0;font-family:'Montserrat',sans-serif;}
.price span{font-size:.95rem;color:#777;font-weight:600;}
.single-page-pricing{margin-top:10px;}
.contact-page-grid,.detail-page{display:grid;grid-template-columns:1.1fr .9fr;gap:32px;align-items:center;}
.contact-page-grid img,.detail-page img{width:100%;max-height:320px;object-fit:contain;}
.price-inline{display:inline-block;background:#fff3e3;color:#1A1A1A;font-weight:800;padding:12px 16px;border-radius:12px;border-left:5px solid #FF8C00;}
.page-hero{background:linear-gradient(135deg,#1A1A1A 0%,#2d2d2d 100%);padding:76px 0;text-align:center;}
.page-hero h1{color:#fff;margin:0;font-size:2.6rem;}
.page-content-section{padding:64px 0;background:#f7f7f7;}
.content-wrap{max-width:1120px;}
.content-card{background:#fff;padding:34px;border-radius:18px;box-shadow:0 8px 28px rgba(0,0,0,.08);}
footer .social-links a{font-size:.85rem;font-weight:800;}
@media (max-width: 1080px){.logo{min-width:auto}.logo span{font-size:1.25rem}.nav-menu a{padding:9px 8px;font-size:.95rem}.header-inner{gap:12px}}
@media (max-width: 860px){
  body{overflow-x:hidden}.container{padding:0 16px}.site-header{position:sticky;top:0;z-index:1000}.header-inner{min-height:72px}.logo span{font-size:1.05rem}.logo img{height:40px}.mobile-menu-toggle{display:block;margin-left:auto}.primary-nav{position:absolute;left:0;right:0;top:72px;display:block}.primary-nav .nav-menu{display:none;flex-direction:column;align-items:stretch;gap:6px;background:#fff;border:1px solid #eee;border-radius:0 0 18px 18px;padding:14px;box-shadow:0 16px 30px rgba(0,0,0,.14)}.primary-nav .nav-menu.active{display:flex}.primary-nav .nav-menu a{padding:13px 14px;font-size:1rem}.hero{padding:64px 0}.hero h1{font-size:2.15rem}.hero p{font-size:1.05rem}.service-grid,.pricing-grid{grid-template-columns:1fr}.why-us-content,.contact-page-grid,.detail-page{grid-template-columns:1fr;display:grid}.content-card{padding:24px}.page-hero{padding:54px 0}.page-hero h1{font-size:2rem}.page-content-section{padding:38px 0}.image-card img,.price-card img{height:110px}.footer-content{text-align:center}}
@media (max-width:480px){.logo span{font-size:.98rem;max-width:220px;white-space:normal;line-height:1.15}.logo img{height:36px}.hero h1{font-size:1.75rem}.hero p{font-size:.98rem}.btn{width:100%;text-align:center;padding:13px 20px}.price{font-size:1.65rem}.service-card,.price-card{padding:22px}.contact-item{align-items:flex-start}.page-hero h1{font-size:1.65rem}}
