/*
Theme Name: Solace Child
Theme URI: 
Description: Solace Child Theme for MyProjectReport
Author: Expert Developer
Author URI: 
Template: solace
Version: 1.0.0
*/

/* Basic CSS Overrides can go here in the future if needed */

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

:root {
  /* Premium Modern Color Palette */
  --pr-primary: #DA3236; /* Red */
  --pr-primary-hover: #C52828;
  --pr-secondary: #10B981; /* Emerald */
  --pr-accent: #F43F5E; /* Rose */
  
  --pr-surface: #FFFFFF;
  --pr-surface-glass: rgba(255, 255, 255, 0.85);
  --pr-background: #F8FAFC;
  
  --pr-text-main: #0F172A;
  --pr-text-muted: #64748B;
  --pr-border: #E2E8F0;

  /* Typography */
  --pr-font-heading: 'Outfit', sans-serif;
  --pr-font-body: 'Inter', sans-serif;

  /* Transitions */
  --pr-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --pr-shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --pr-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --pr-radius-md: 12px;
  --pr-radius-lg: 16px;
}

body {
    font-family: var(--pr-font-body);
    background-color: #fcfcfc;
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z" fill="%235a52e5" fill-opacity="0.02" fill-rule="evenodd"/></svg>');
    color: var(--pr-text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pr-font-heading);
  font-weight: 700;
  color: var(--pr-text-main);
  margin-top: 0;
}

/* Glassmorphism */
.glass-panel {
  background: var(--pr-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--pr-radius-lg);
  box-shadow: var(--pr-shadow-subtle);
}

/* Premium Button */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--pr-primary);
  color: #fff !important;
  font-family: var(--pr-font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--pr-radius-md);
  transition: var(--pr-transition-smooth);
  box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.39);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-premium:hover {
  background-color: var(--pr-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.23);
  color: #fff !important;
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: var(--pr-text-main) !important;
  border: 2px solid var(--pr-border);
  box-shadow: none;
}
.btn-secondary:hover {
  background-color: var(--pr-border);
  color: var(--pr-text-main) !important;
  box-shadow: none;
}

/* Animations */
.hover-lift {
  transition: var(--pr-transition-smooth);
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--pr-shadow-hover);
}

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

/* --- INNER PAGES CSS --- */
.service-page-intro {
    font-size: 1.2rem;
    color: var(--pr-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--pr-radius-md);
    border: 1px solid var(--pr-border);
    box-shadow: var(--pr-shadow-subtle);
}
.benefit-card h4 {
    color: var(--pr-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.document-list {
    background: var(--pr-background);
    padding: 30px;
    border-radius: var(--pr-radius-md);
    border-left: 4px solid var(--pr-secondary);
    margin-bottom: 40px;
}
.document-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.document-list li {
    position: relative;
    padding-left: 25px;
}
.document-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pr-secondary);
    font-weight: bold;
}
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.service-full-card {
    background: #fff;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--pr-shadow-subtle);
}
.service-full-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.service-full-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.franchise-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: var(--pr-radius-md);
    border: 1px solid var(--pr-border);
}
.step-number {
    background: var(--pr-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- HEADER STYLES --- */
.new-style-header {
    background: #fff;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

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

/* Logo */
.pr-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pr-logo-icon {
    background-color: #2563EB;
    color: white;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1E3A8A;
    letter-spacing: -0.5px;
}

/* Navigation */
.new-nav ul {
    display: flex;
    gap: 15px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}

.new-nav li {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.new-nav li::before, .new-nav li::after {
    display: none !important;
}

.new-nav a {
    color: #4B5563;
    font-weight: 500;
    text-decoration: none !important;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 20px;
    display: block;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.new-nav a:hover, .new-nav a.active {
    color: #2563EB;
    border-color: #E5E7EB;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.new-nav a.active {
    color: #2563EB;
    border-color: #E5E7EB;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Dropdown */
.has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 10px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    color: #4B5563 !important;
    text-decoration: none;
    font-weight: 500 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: #F8FAFC;
    color: #1F2937 !important;
}

/* Right Actions */
.pr-header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.pr-signin-link {
    color: #1F2937;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.pr-signin-link:hover {
    color: #2563EB;
}

.pr-create-account-btn {
    background-color: #1E3A8A; /* Dark blue from screenshot */
    color: white !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

.pr-create-account-btn:hover {
    background-color: #1E40AF;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .pr-header-inner {
        flex-wrap: wrap;
    }
    .new-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: flex;
        justify-content: center;
    }
    .pr-header-actions {
        order: 2;
    }
}

