/* WiseAnts Business Solutions - Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@600;700&display=swap');

:root {
    --primary-orange: #F26419;
    --primary-dark-grey: #3E4750;
    --accent-dark: #1F2933;
    --light-bg: #F6F7F8;
    --white: #FFFFFF;
    --text-color: #333333;
    --text-muted: #666666;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --border-radius: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d95a16;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 100, 25, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Header & Navigation */
header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-dark-grey);
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

/* Modern Hero with Diagonal Shape */
.hero {
    background-color: var(--white);
    padding: 160px 0 200px;
    position: relative;
    text-align: left;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-color: var(--primary-orange);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-text h1 span {
    color: var(--primary-orange);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-image {
    position: relative;
    z-index: 5;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Diagonal Separator Utility */
.diagonal-section {
    position: relative;
    padding: 120px 0;
}

.diagonal-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Flexible Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Service Block for Master Page */
.service-feature-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.service-feature-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-feature-content {
    flex: 1;
}

.service-feature-visual {
    flex: 1;
    position: relative;
}

.service-feature-visual img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.service-feature-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.service-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(242, 100, 25, 0.1);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 50px;
}

.sub-service-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sub-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.sub-service-item i {
    color: var(--primary-orange);
    font-size: 12px;
}

/* Modern Header Overlays */
.overlay-header {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #2d3748 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.overlay-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.overlay-header p {
    color: #cbd5e0;
    max-width: 700px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-orange);
    opacity: 0;
    transition: var(--transition);
}

.card:hover::before {
    opacity: 1;
}

.card i {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: rgba(242, 100, 25, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

/* Team Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
}

.team-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card span {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
}

/* Pricing/Plan Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(242, 100, 25, 0.1);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Testimonials Dark */
.testimonials-dark {
    background-color: var(--accent-dark);
    color: var(--white);
    text-align: center;
}

.testimonials-dark .section-title {
    color: var(--white);
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* Footer */
footer {
    background-color: var(--accent-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-col p,
.footer-col ul li {
    font-size: 14px;
    color: #cbd5e0;
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #a0aec0;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 50px;
}