/*
Theme Name: Company Web Theme
Theme URI: http://example.com/company-web-theme
Author: Your Name
Author URI: http://example.com
Description: A professional business theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: companyweb
*/

/* Performance optimizations */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize animations */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Scrolling performance */
body.scrolling {
    pointer-events: none;
}

body.scrolling * {
    pointer-events: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--white);
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: var(--white);
    position: relative;
    opacity: 0.9;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--white);
    opacity: 1;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    /* Mobile optimizations */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 31, 68, 0.85) 0%,
        rgba(45, 55, 72, 0.75) 50%,
        rgba(10, 31, 68, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Brands Preview */
.brands-preview {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--text);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.brand-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.brand-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.brand-card p {
    color: #666;
    margin-bottom: 20px;
}

.brand-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    border-bottom: 2px solid transparent;
}

.brand-link:hover {
    border-bottom: 2px solid var(--primary);
}

/* Services Highlight */
.services-highlight {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item p {
    color: #666;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background-color: #f0f0f0;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-section.bg-light {
    background-color: #f5f7fa;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-text h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Leadership */
.leadership {
    padding: 80px 0;
    background-color: #fff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.leader-card {
    text-align: center;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 5px;
}

.leader-title {
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.leader-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Values */
.values {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-icon {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #222;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Brands Page Styles */
.brands-detail {
    padding: 80px 0;
    background-color: #fff;
}

.brand-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.brand-detail-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.brand-detail-card.reverse {
    direction: rtl;
}

.brand-detail-card.reverse > * {
    direction: ltr;
}

.brand-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.brand-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.brand-detail-content h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-tagline {
    color: #0056b3;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.brand-detail-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.brand-services {
    margin-bottom: 30px;
}

.brand-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.brand-services li i {
    color: #0056b3;
}

.other-ventures {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.venture-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.venture-card h4 {
    font-size: 1.3rem;
    color: #0056b3;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.venture-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Services Page Styles */
.services-categories {
    padding: 80px 0;
    background-color: #fff;
}

.service-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-category-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-category-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 20px;
}

.service-category-card h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
}

.service-category-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-category-card ul {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-category-card ul li {
    margin-bottom: 8px;
    color: #555;
    list-style: disc;
}

.process {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

/* Portfolio Page Styles */
.portfolio-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h4 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
}

.portfolio-category {
    color: #0056b3;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* News Page Styles */
.featured-article {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.featured-article-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.featured-article-image {
    height: 300px;
    overflow: hidden;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article-content {
    padding: 40px;
}

.article-category {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-article-content h4 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
}

.article-meta {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.featured-article-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.articles-grid-section {
    padding: 80px 0;
    background-color: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.article-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-content h4 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 10px;
}

.article-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-link {
    color: #0056b3;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.article-link:hover {
    text-decoration: underline;
}

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    color: white;
    text-align: center;
}

.newsletter .section-title,
.newsletter .section-subtitle {
    color: white;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #0056b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.social-contact h4 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 15px;
}

.social-contact .social-links {
    display: flex;
    gap: 15px;
}

.social-contact .social-links a {
    width: 45px;
    height: 45px;
    background-color: #f0f0f0;
    color: #555;
    font-size: 1.3rem;
}

.social-contact .social-links a:hover {
    background-color: #0056b3;
    color: white;
}

.map-section {
    padding: 80px 0;
    background-color: #f5f7fa;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-overlay p {
    margin: 0;
    color: #222;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Enhanced Styles */
:root {
    --primary: #0a1f44;
    --primary-dark: #07152f;
    --secondary: #2d3748;
    --accent: #4f46e5;
    --light: #f8fafc;
    --dark: #1a202c;
    --text: #2d3748;
    --text-light: #718096;
    --white: #fff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced buttons */
.btn {
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Enhanced cards */
.brand-card,
.service-category-card,
.portfolio-card,
.article-card,
.leader-card,
.value-card,
.venture-card,
.faq-item {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-card:hover,
.service-category-card:hover,
.portfolio-card:hover,
.article-card:hover,
.leader-card:hover,
.value-card:hover,
.venture-card:hover,
.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 86, 179, 0.1);
}

/* Enhanced hero gradients */
.hero {
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.85) 0%, rgba(45, 55, 72, 0.85) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-30px, -30px) rotate(360deg); }
}

.hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Enhanced form inputs */
.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
    outline: none;
}

/* Enhanced section titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Enhanced brand icons */
.brand-detail-content h3 i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.brand-detail-card:hover .brand-detail-content h3 i {
    transform: scale(1.2) rotate(5deg);
}

/* Footer enhancement */
.footer {
    background-color: var(--dark);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

/* Newsletter form */
.newsletter-form input {
    border-radius: 50px;
    padding-left: 25px;
}

.newsletter-form button {
    border-radius: 50px;
    padding: 15px 35px;
}

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4,
.footer-col h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 20px;
}

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

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ccc;
}

.footer-bottom a:hover {
    color: white;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8fafc;
}

.why-choose-us.bg-light {
    background-color: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 25px;
}

.why-card h4 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design Refinements */
@media (max-width: 992px) {
    .hero {
        padding: 100px 0;
        transition: all 0.3s ease;
    }

    .hero-content .container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        transition: all 0.3s ease;
    }

    .hero-content {
        margin-bottom: 0;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        transition: all 0.3s ease;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
    }

    /* Adjust stats for tablet */
    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-grid {
        gap: 30px;
    }

    .about-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        transition: all 0.3s ease;
    }

    .hero-content {
        padding: 0 10px;
    }

    /* Enhanced mobile typography for better readability */
    body {
        font-size: 16px;
        line-height: 1.7;
    }

    h1, h2, h3, h4, h5, h6 {
        line-height: 1.4;
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Ensure minimum touch targets */
    .btn {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 1rem;
    }

    /* Improve mobile navigation */
    .nav-toggle {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
    }

    .nav-list a {
        padding: 12px 20px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 8px 0;
        width: 100%;
    }

    .nav-list a {
        padding: 14px 20px;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-radius: 6px;
        transition: all 0.2s ease;
        font-size: 1rem;
    }

    /* Accessibility improvements */
    .nav-toggle {
        background: none;
        border: 2px solid transparent;
        border-radius: 4px;
    }

    .nav-toggle:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

    /* Better focus states */
    .btn:focus,
    a:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

    /* Improve contrast */
    .nav-list a {
        color: #fff;
    }

    .nav-list a:hover,
    .nav-list a:focus {
        color: var(--primary);
    }

    .nav-list a.active::after {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero buttons on mobile */
    .hero-content .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .hero-content .btn-secondary {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--white);
        color: var(--white);
    }

    /* Hide overlay on mobile for better text visibility */
    .hero-overlay {
        display: none;
    }

    .hero {
        background: linear-gradient(135deg, rgba(10, 31, 68, 0.95) 0%, rgba(45, 55, 72, 0.95) 100%);
    }

    /* Ensure video is visible on mobile */
    .hero-video {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile performance optimizations */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Optimize scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Better mobile image handling */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
        transition: all 0.3s ease;
    }

    .hero-content {
        padding: 0 5px;
    }

    .hero-title {
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }

    .hero-subtitle {
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .stat-item {
        padding: 1rem 0.8rem;
        min-height: 80px;
    }

    .stat-number {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .btn {
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 6px;
    }

    /* Improve readability */
    body {
        font-size: 16px;
        line-height: 1.8;
    }

    h1, h2, h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    h4, h5, h6 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    p {
        font-size: 1rem;
        line-height: 1.8;
    }

    /* Better spacing */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .brands-preview,
    .services-highlight,
    .cta,
    .about-section {
        padding: 50px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }
}

/* Hero Responsive Styles */
@media (max-width: 992px) {
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 1;
        max-width: 150px;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.2vw, 1.3rem);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 90vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content .container {
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-actions .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem;
        max-width: 120px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 85vh;
        min-height: 450px;
    }

    .hero-content .container {
        gap: 25px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1.1rem);
        margin-bottom: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        max-width: none;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Performance Optimizations */
.hero-video {
    will-change: transform;
    transform: translateZ(0);
}

.hero-overlay {
    will-change: opacity;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .hero {
        background: linear-gradient(
            135deg,
            rgba(10, 31, 68, 0.95) 0%,
            rgba(45, 55, 72, 0.95) 100%
        );
    }

    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(10, 31, 68, 0.95) 0%,
            rgba(45, 55, 72, 0.95) 100%
        );
    }

    .hero-actions .btn {
        transition: none;
    }

    .hero-actions .btn-primary:hover {
        transform: none;
    }
}

/* Additional Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize font loading */
@font-face {
    font-display: swap;
}

/* About Page Enhancements */

/* Enhanced Leadership Cards */
.leadership .leader-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.leadership .leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.leadership .leader-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.leadership .leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership .leader-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.leadership .leader-title {
    font-size: 0.95rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leadership .leader-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.leader-expertise span {
    background: #f7fafc;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Enhanced Values Grid */
.values .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.values .value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.values .value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.values .value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.values .value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.values .value-card p {
    color: #718096;
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: #f8fafc;
}

.achievements .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.achievements .section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    color: #718096;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.achievement-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: #718096;
    line-height: 1.6;
}

/* Contact Page Styles */

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.page-hero .hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Horizontal Page Hero Layout */
.page-hero--horizontal .page-hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-hero__content {
    text-align: left;
}

.page-hero--horizontal .hero-title {
    text-align: left;
}

.page-hero--horizontal .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
}

.page-hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-info-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-info-section .section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #718096;
    opacity: 0.8;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
}

.hours-list {
    text-align: left;
    max-width: 200px;
    margin: 0 auto;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 500;
    color: #1a202c;
}

.hour-item span:last-child {
    color: #718096;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-form-text p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a202c;
    font-weight: 500;
}

.contact-benefits .benefit i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Form Messages */
.form-message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-message.success {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.form-message.error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.form-message i {
    font-size: 1.5rem;
    margin-top: 0.125rem;
}

.form-message h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-message ul {
    margin: 0;
    padding-left: 1.5rem;
}

.form-message li {
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.map-section .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #718096;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    color: #718096;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #718096;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .map-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-hero .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .page-hero--horizontal .page-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .page-hero__content {
        text-align: center;
    }

    .page-hero--horizontal .hero-title {
        text-align: center;
    }

    .page-hero--horizontal .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .page-hero__stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        align-items: center;
        text-align: center;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 80px 0 50px;
    }

    .contact-info-section .section-header h2 {
        font-size: 2rem;
    }

    .contact-form-text h2 {
        font-size: 2rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Enhanced Services Page Styles */

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a202c;
    font-weight: 500;
}

.service-highlights .highlight i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Enhanced Service Cards */
.services-categories .service-category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.services-categories .service-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-categories .service-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.services-categories .service-category-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.services-categories .service-category-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services-categories .service-category-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.services-categories .service-category-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.services-categories .service-category-card li i {
    color: #10b981;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Process Steps Enhancement */
.process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process .process-step {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.process .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #667eea;
}

.process .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.process .process-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.process .process-step p {
    color: #718096;
    line-height: 1.6;
}
