@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-color: #0f172a; /* Deep Navy Blue */
    --secondary-color: #1e293b;
    --accent-color: #d97706; /* Rich Gold */
    --accent-hover: #b45309;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --text-light: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }
.text-light { color: var(--text-light); }
.text-secondary { color: var(--text-secondary); }
.font-weight-bold { font-weight: 700; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}
.section-title.left-align::after {
    left: 0;
    transform: none;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}
.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Header & Navbar */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-contact a {
    color: var(--text-light);
    margin-right: 15px;
}
.top-bar-contact i {
    margin-right: 5px;
    color: var(--accent-color);
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}
.logo h1 span {
    color: var(--accent-color);
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../images/hero-bg.jpg') center/cover no-repeat;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
}
.hero h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}
.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}
.hero-btns {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}
.hero-btns .btn {
    margin: 0 10px;
}

/* Sections General */
.section-padding {
    padding: 80px 0;
}
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-color); color: var(--text-light); }

/* Features/Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-bottom-color: var(--accent-color);
}
.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}
.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* About Section */
.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-content {
    flex: 1;
}
.about-image {
    flex: 1;
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
}
.experience-badge h4 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.about-list {
    margin-top: 20px;
}
.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.about-list i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-member {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}
.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.team-info {
    padding: 20px;
    text-align: center;
}
.team-info h3 {
    margin-bottom: 5px;
}
.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    margin: 0 5px;
}
.team-social a:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.industry-card {
    background: var(--bg-white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}
.industry-card:hover {
    background: var(--primary-color);
    color: var(--text-light);
}
.industry-card:hover h3 {
    color: var(--text-light);
}
.industry-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    position: relative;
}
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(217, 119, 6, 0.1);
}
.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.client-info {
    display: flex;
    align-items: center;
}
.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.client-name h4 {
    margin: 0;
    font-size: 1rem;
}
.client-company {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.stars {
    color: #fbbf24;
    margin-bottom: 10px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}
.faq-question i {
    transition: var(--transition);
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
}
.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 500px; /* Arbitrary large number for transition */
}

/* Forms & Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}
.contact-info-content h4 {
    margin-bottom: 5px;
}
.contact-info-content p {
    color: var(--text-secondary);
}
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}
textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}
.footer-col p {
    color: #94a3b8;
    margin-bottom: 15px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #94a3b8;
}
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--text-light);
}
.social-links a:hover {
    background-color: var(--accent-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Inner Page Header */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 80px 0 40px;
    color: white;
    text-align: center;
}
.page-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.breadcrumb {
    color: #cbd5e1;
}
.breadcrumb a {
    color: var(--accent-color);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-flex {
        flex-direction: column;
    }
    .hero h1 { font-size: 2.8rem; }
    .blog-layout { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    .nav-links.show { display: flex; }
    .nav-links li {
        margin: 10px 0;
    }
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .hero-btns .btn { margin: 8px 5px; display: inline-block; }
    .contact-form { padding: 25px 20px; }
    .blog-post-body { flex-direction: column !important; }
    .blog-post-icon { width: 100% !important; min-height: 120px !important; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .btn { padding: 10px 18px; font-size: 0.9rem; }
    .service-card, .industry-card { padding: 25px 15px; }
}
