/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #2c2c2c;
    color: white !important;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.btn-secondary:hover {
    background-color: #2c2c2c;
    color: white;
    transform: translateY(-2px);
}

.btn-cta {
    background-color: white;
    color: #2c2c2c;
    font-size: 18px;
    padding: 16px 32px;
}

.btn-cta:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand h1 {
    font-size: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #666;
}

.nav-menu a.active {
    color: #2c2c2c;
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c2c2c;
}

/* Ensure header button text is visible */
.header .btn-primary {
    color: white !important;
    background-color: #2c2c2c !important;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.header .btn-primary:hover {
    background-color: #1a1a1a !important;
    color: white !important;
    transform: translateY(-2px);
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('media/assets/hero-property.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: white;
}

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

/* Services Page Specific Styles */
.services-hero {
    background-color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-title {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.services-grid-section {
    padding: 60px 0 100px;
    background-color: white;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-detailed {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.service-card-detailed .service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(44, 44, 44, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-card-detailed .service-icon i {
    font-size: 20px;
    color: white;
}

.service-card-detailed h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin: 20px 20px 15px;
    font-weight: 600;
}

.service-card-detailed h4 {
    font-size: 1.1rem;
    color: #666;
    margin: 0 20px 15px;
    font-weight: 500;
    font-style: italic;
}

.service-card-detailed p {
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-detailed ul {
    list-style: none;
    padding: 0;
    margin: 0 20px 20px;
}

.service-card-detailed ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card-detailed ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #2c2c2c;
    font-weight: bold;
}

.service-card-detailed .service-tagline {
    font-weight: 500;
    color: #2c2c2c;
    font-style: italic;
    margin-top: 15px;
}

.service-details {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c2c2c;
}

.service-details p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #2c2c2c;
}

.why-choose-card {
    margin-top: 20px;
    padding: 20px;
    background: #2c2c2c;
    border-radius: 8px;
    color: white;
}

.why-choose-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-card p {
    color: white;
    margin: 10px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-card-detailed .service-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 20px 25px;
    transition: color 0.3s ease;
}

.service-card-detailed .service-link:hover {
    color: #666;
}

/* For cards without images (Real Estate Consulting) */
.service-card-detailed:first-child .service-icon {
    position: static;
    margin: 30px 20px 20px;
    background-color: #2c2c2c;
}

.service-card-detailed:first-child h3 {
    margin-top: 0;
}

/* Portfolio Page Specific Styles */
.portfolio-hero {
    background-color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.portfolio-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-title {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 700;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.portfolio-grid-section {
    padding: 60px 0 100px;
    background-color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.portfolio-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.portfolio-content {
    padding: 25px;
}

.portfolio-category {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.portfolio-project-title {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.portfolio-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.portfolio-note {
    text-align: center;
    margin-top: 40px;
}

.portfolio-note p {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0 0 20px 0;
}

.portfolio-note .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.portfolio-note .btn-primary i {
    font-size: 0.9rem;
}

/* What's Included Section */
.whats-included {
    padding: 100px 0;
    background-color: white;
}

.included-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.included-icon {
    width: 24px;
    height: 24px;
    background-color: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.included-icon i {
    color: white;
    font-size: 12px;
}

.included-item p {
    color: #2c2c2c;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Service Metrics Section */
.service-metrics {
    padding: 100px 0;
    background-color: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.metric-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.metric-title {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
}

.metrics-disclaimer {
    text-align: center;
}

.metrics-disclaimer p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

/* Policy Pages Specific Styles */
.policy-hero {
    background-color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.policy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.policy-content-section {
    padding: 60px 0 100px;
    background-color: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #2c2c2c;
}

.policy-intro p {
    color: #2c2c2c;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.policy-section ul li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    font-size: 1rem;
}

.policy-section ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #2c2c2c;
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-section a {
    color: #2c2c2c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #666;
}

.policy-footer-note {
    margin-top: 50px;
    padding: 25px;
    background: #2c2c2c;
    border-radius: 12px;
    text-align: center;
}

.policy-footer-note p {
    color: white;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.policy-footer-note a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.policy-footer-note a:hover {
    opacity: 0.8;
}

/* Contact Page Specific Styles */
.contact-hero {
    background-color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.contact-main-section {
    padding: 60px 0 100px;
    background-color: white;
}

/* Simplified Contact Section */
.contact-simple {
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-simple-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-simple-button {
    margin-bottom: 50px;
}

.btn-contact-us {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.3);
    border: none;
    cursor: pointer;
}

.btn-contact-us:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 44, 44, 0.4);
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
}

.btn-contact-us i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-contact-us:hover i {
    transform: translateX(5px);
}

.contact-simple-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c2c2c;
    font-size: 1rem;
}

.contact-info-item i {
    color: #2c2c2c;
    font-size: 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Styles */
.contact-form-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-title {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    color: #2c2c2c;
    font-weight: 500;
    font-size: 0.9rem;
}

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

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

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

.contact-submit-btn {
    background-color: #2c2c2c;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-title {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background-color: #2c2c2c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    color: white;
    font-size: 20px;
}

.contact-card-content h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-card-content p {
    color: #2c2c2c;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-card-content span {
    color: #666;
    font-size: 0.9rem;
}

/* Quick Contact Styles */
.quick-contact h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-btn {
    background: white;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    padding: 12px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-btn:hover {
    background-color: #2c2c2c;
    color: white;
}

/* Business Hours Styles */
.business-hours h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.hours-item span:first-child {
    color: #2c2c2c;
    font-weight: 500;
}

.hours-item span:last-child {
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: -40px -30px 20px -30px;
    position: relative;
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #2c2c2c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

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

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

.service-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #666;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background-color: white;
}

.why-choose-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.formula-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.formula-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.formula-item i {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.formula-item h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin: 0;
    font-weight: 600;
}

.formula-operator {
    font-size: 2rem;
    color: #2c2c2c;
    font-weight: 700;
}

.formula-equals {
    font-size: 2rem;
    color: #2c2c2c;
    font-weight: 700;
}

.formula-result {
    text-align: center;
    padding: 30px 40px;
    background: #2c2c2c;
    border-radius: 12px;
    min-width: 250px;
}

.formula-result h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #2c2c2c;
    transform: translateY(-2px);
}

.feature-wide {
    grid-column: 1 / -1;
    justify-content: center;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: #2c2c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 14px;
}

.feature-item p {
    color: #2c2c2c;
    font-weight: 500;
    margin: 0;
}

/* Get Started Section */
.get-started {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.get-started-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.get-started-description {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #e9ecef;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-summary-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.service-summary-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    display: block;
}

.service-summary-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.service-summary-item p {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 500;
    margin: 0;
}

.btn-get-started {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    border: none;
    cursor: pointer;
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff5252 0%, #d63031 100%);
    color: white;
}

.btn-get-started i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta {
    background-color: #2c2c2c;
    padding: 100px 0;
    text-align: center;
    color: white;
}

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

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.footer-column p {
    color: #ccc;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    width: 20px;
    color: #ccc;
}

.contact-item span {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-title {
        font-size: 2.5rem;
    }
    
    
    .included-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .policy-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-wide {
        grid-column: 1;
    }
    
    .why-choose-formula {
        flex-direction: column;
        gap: 15px;
    }
    
    .formula-operator, .formula-equals {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .logo {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .logo {
        height: 40px;
    }
    
    /* Get Started Section Mobile */
    .get-started-title {
        font-size: 2rem;
    }
    
    .get-started-description {
        font-size: 1rem;
    }
    
    .services-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-summary-item {
        padding: 20px 15px;
    }
    
    .btn-get-started {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    /* Contact Simple Mobile */
    .contact-simple-title {
        font-size: 2rem;
    }
    
    .contact-simple-description {
        font-size: 1rem;
    }
    
    .contact-simple-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-contact-us {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

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

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid #2c2c2c;
    outline-offset: 2px;
}

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

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
