/*
Theme Name: MTM Premium
Theme URI: https://mashriqmagribmarketing.com
Author: Mashriq To Magrib Digital Marketing Agency
Author URI: https://mashriqmagribmarketing.com
Description: Premium custom WordPress theme for Mashriq To Magrib Digital Marketing Agency.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.2
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mtm-premium
Tags: custom-theme, seo, responsive, ai, business
*/

/* ===========================================
   MTM PREMIUM DESIGN SYSTEM
=========================================== */

:root{

    /* Brand Colors
       These will be updated to match your
       existing website exactly.
    */

    --primary:#0A1F44;
    --secondary:#00B8D9;
    --accent:#F4B400;

    --dark:#07111F;
    --light:#FFFFFF;

    --gray100:#F8F9FA;
    --gray200:#ECEFF1;
    --gray300:#CFD8DC;
    --gray600:#546E7A;
    --gray900:#212121;

    --radius:16px;

    --shadow:
    0 20px 40px rgba(0,0,0,.12);

    --transition:
    all .3s ease;

    --container:
    1280px;
}

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:
Inter,
Segoe UI,
Arial,
sans-serif;

background:#fff;

color:var(--gray900);

line-height:1.7;

font-size:16px;

overflow-x:hidden;

}

/* CONTAINER */

.container{

max-width:var(--container);

margin:auto;

padding:0 24px;

}

/* HEADINGS */

h1,h2,h3,h4,h5,h6{

font-weight:700;

line-height:1.2;

color:var(--primary);

margin-bottom:20px;

}

h1{

font-size:56px;

}

h2{

font-size:42px;

}

h3{

font-size:32px;

}

p{

margin-bottom:18px;

}

/* BUTTONS */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 32px;

background:var(--primary);

color:#fff;

border-radius:999px;

text-decoration:none;

transition:var(--transition);

font-weight:600;

}

.btn:hover{

background:var(--secondary);

transform:translateY(-2px);

}

/* SECTION */

section{

padding:100px 0;

}

/* IMAGES */

img{

max-width:100%;

height:auto;

display:block;

}

/* RESPONSIVE */

@media(max-width:992px){

h1{

font-size:42px;

}

h2{

font-size:34px;

}

section{

padding:70px 0;

}

}

@media(max-width:768px){

.container{

padding:0 20px;

}

h1{

font-size:34px;

}

h2{

font-size:28px;

}

}

/* ===========================
   HEADER
=========================== */

.site-header{
position:sticky;
top:0;
z-index:999;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo img{
max-height:60px;
width:auto;
}

.primary-menu{
display:flex;
gap:32px;
list-style:none;
}

.primary-menu a{
text-decoration:none;
color:var(--primary);
font-weight:600;
transition:.3s;
}

.primary-menu a:hover{
color:var(--secondary);
}

.header-cta{
margin-left:20px;
}

@media(max-width:992px){

.primary-menu{

display:none;

}

.header-cta{

display:none;

}

}

/* ===========================
   FOOTER
=========================== */

.site-footer{
background:var(--dark);
color:#fff;
padding:80px 0 0;
margin-top:80px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:50px;
}

.footer-column h3,
.footer-column h4{
color:#fff;
margin-bottom:20px;
}

.footer-column ul{
list-style:none;
padding:0;
}

.footer-column li{
margin-bottom:12px;
}

.footer-column a{
color:#fff;
text-decoration:none;
opacity:.9;
}

.footer-column a:hover{
color:var(--secondary);
}

.footer-bottom{
margin-top:50px;
padding:25px 0;
border-top:1px solid rgba(255,255,255,.15);
text-align:center;
font-size:14px;
}

@media(max-width:768px){

.footer-grid{
grid-template-columns:1fr;
gap:35px;
}

}

/* ===============================
   HERO
================================ */

.hero{

padding:120px 0;

background:linear-gradient(
135deg,
var(--primary),
var(--dark)
);

color:#fff;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.hero h1{

color:#fff;

font-size:64px;

margin-bottom:25px;

}

.hero h1 span{

color:var(--accent);

}

.hero p{

font-size:20px;

opacity:.95;

margin-bottom:35px;

}

.hero-badge{

display:inline-block;

padding:8px 18px;

background:rgba(255,255,255,.15);

border-radius:30px;

margin-bottom:25px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.btn-outline{

background:transparent;

border:2px solid #fff;

}

.btn-outline:hover{

background:#fff;

color:var(--primary);

}

/* ===============================
   SERVICES
================================ */

.services{

background:#f8f9fa;

}

.service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.service-card{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.service-card:hover{

transform:translateY(-8px);

}

.service-card h3{

margin-bottom:18px;

}

/* ===============================
   CTA
================================ */

.cta{

background:var(--primary);

color:#fff;

text-align:center;

}

.cta h2{

color:#fff;

margin-bottom:20px;

}

.cta p{

max-width:700px;

margin:auto auto 35px;

}

@media(max-width:992px){

.hero-grid,
.service-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

text-align:center;

}

.hero-content{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

}

/* ==========================
   Global Layout
========================== */

*{
box-sizing:border-box;
}

body{
margin:0;
font-family:Inter,Arial,sans-serif;
background:#fff;
color:#111;
line-height:1.6;
}

.container{
width:min(1280px,92%);
margin:0 auto;
}