/*
Theme Name: Sovereign Group Clone
Theme URI: https://www.sovereigngroup.com
Description: A professional WordPress theme clone of Sovereign Group.
Author: Manus Engineer
Version: 1.0
Text Domain: sovereign-clone
*/

:root {
    --primary-red: #dc3931;
    --secondary-red: #da3832;
    --dark-bg: #221f20;
    --light-gray: #f2f3f4;
    --white: #ffffff;
    --black: #000000;
    --text-color: #333333;
    --font-main: "Open Sans", sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("assets/img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: left;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin-top: 20px;
}

.hero p {
    font-size: 1.5rem;
    max-width: 600px;
}

/* Services Section */
.services-search {
    background: var(--primary-red);
    padding: 60px 0;
    color: var(--white);
    text-align: center;
}

.btn-contact {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: var(--secondary-red);
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: var(--primary-red);
    margin-top: 0;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
}
