 :root {
     --primary-gold: #c5a059;
     --deep-maroon: #630000;
     --matte-black: #0a0a0a;
     --soft-white: #f8f9fa;
     --glass: rgba(255, 255, 255, 0.03);
 }

 body {
     background-color: var(--matte-black);
     color: var(--soft-white);
     font-family: 'Lato', sans-serif;
     overflow-x: hidden;
     line-height: 1.6;
 }

 /* Custom Scrollbar */
 ::-webkit-scrollbar {
     width: 6px;
 }

 ::-webkit-scrollbar-track {
     background: #050505;
 }

 ::-webkit-scrollbar-thumb {
     background: var(--deep-maroon);
     border-radius: 10px;
 }

 /* --- REVIEW PAGE STYLING --- */
 .reviews-hero {
     padding: 100px 0 60px;
     text-align: center;
 }

 .gold-title {
     font-family: 'Cinzel', serif;
     color: var(--primary-gold);
     letter-spacing: 4px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .review-card {
     background: var(--glass);
     border-left: 2px solid var(--deep-maroon);
     padding: 40px;
     margin-bottom: 30px;
     border-radius: 4px;
     transition: 0.4s;
     height: 100%;
 }

 .review-card:hover {
     border-left: 2px solid var(--primary-gold);
     background: rgba(255, 255, 255, 0.05);
 }

 .client-name {
     font-family: 'Cinzel', serif;
     color: var(--primary-gold);
     font-weight: 700;
     font-size: 1.1rem;
     margin-top: 15px;
     display: block;
 }

 .client-role {
     font-size: 0.7rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     opacity: 0.6;
 }

 /* --- SOCIAL MEDIA LINKS POSITIONING --- */
 .social-bar {
     padding: 60px 0 100px;
     /* Thoda gap badhaya hai footer se pehle */
     text-align: center;
     border-top: 1px solid rgba(197, 160, 89, 0.1);
     margin-top: 50px;
 }

 .social-icons {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 30px;
     /* Icons ke darmiyan barabar fasla */
     margin-top: 30px;
 }

 .social-icons a {
     color: var(--primary-gold);
     font-size: 1.5rem;
     /* Size thoda bada kiya hai readability ke liye */
     transition: 0.4s ease;
     opacity: 0.7;
     text-decoration: none;
 }

 .social-icons a:hover {
     color: white;
     opacity: 1;
     transform: translateY(-5px);
 }

 .italic-quote {
     font-family: 'Lato', sans-serif;
     font-weight: 300;
     font-style: italic;
     border-left: 3px solid var(--deep-maroon);
     padding-left: 20px;
 }