/* ==================== ROOT & VARIABLES ==================== */
:root {
    --primary-color: #059BD8;
    --secondary-color: #000000;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark-gray: #333333;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
}

/* ==================== TYPOGRAPHY ==================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

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

a:hover {
    color: #047ba3;
}
/* ==================== TOP HEADER BAR ==================== */
.top-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--secondary-color);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-header-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-info a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header-info a:hover {
    color: var(--secondary-color);
}

.social-icons-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.social-icons-top a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive top header */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-header-info {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .social-icons-top {
        width: 100%;
        justify-content: center;
    }
}
/* ==================== CONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.slide-text .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.slide-text .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

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

.btn-primary:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 155, 216, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.cta-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.cta-nav:hover {
    background-color: #047ba3 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 4px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ==================== DROPDOWN MENU ==================== */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--light-gray);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    min-width: 220px;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .nav-content {
        flex-wrap: wrap;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        background: var(--white);
        display: none;
        padding: 10px 0;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        background: var(--primary-color);
        padding-left: 0;
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    #navMenu li.dropdown ul {
        display: none;
    }

    #navMenu li.dropdown.open ul {
        display: block
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f4f8 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 10px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--white);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    height: 100%;
    gap: 0;
    align-items: stretch;
    padding: 0;
}

.slide-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideImageZoom 0.6s ease;
}

@keyframes slideImageZoom {
    from {
        transform: scale(1.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.slide-text {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-text h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: slideTextUp 0.6s ease;
    font-size: 50px;
}

.slide-text p {
    margin-bottom: 2rem;
    font-size: 25px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    animation: slideTextUp 0.6s ease 0.1s both;
}

@keyframes slideTextUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: #047ba3;
    box-shadow: 0 5px 15px rgba(5, 155, 216, 0.3);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    z-index: 5;
    display: none;
}

.hero-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== STATS SECTION ==================== */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    border-top: #f9f9f9 4px solid;
}

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

.stat-item {
    text-align: center;
    animation: slideUp 0.6s ease;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==================== GROWTH SECTION ==================== */
.growth-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.growth-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.growth-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* ==================== SERVICES GRID ==================== */
.services-grid {
    padding: 80px 0;
}

.services-grid h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 0 20px;
    color: var(--secondary-color);
}

.service-card p {
    padding: 0 20px;
    color: #666;
}

.service-card .link {
    display: inline-block;
    padding: 20px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-card .link:hover {
    color: #047ba3;
    transform: translateX(5px);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.why-choose-us h2 {
    margin-bottom: 1rem;
}

.why-choose-us>.container>p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #555;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefits-list li {
    display: block;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
}

.benefits-list span {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    font-weight: bold;
}

.benefits-list strong {
    color: var(--secondary-color);
}

/* ==================== HOW WE WORK ==================== */
.how-we-work {
    padding: 80px 0;
}

.how-we-work h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.how-we-work>.container>p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #555;
}

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

.process-step {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: slideUp 0.6s ease;
}

.process-step:hover {
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    line-height: 1.8;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(5, 155, 216, 0.2);
}

/* ==================== FAQ ==================== */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
    width: 100%;
}

.faq .container {
    width: 100%;
    max-width: 1200px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
}

.faq-item {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    margin: 0;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3:hover {
    background-color: #047ba3;
}

.faq-item p {
    padding: 20px;
    margin: 0;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active p {
    max-height: 500px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #047ba3 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--white);
    font-size: 2rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 20px;
    }

    .slide-image {
        height: 250px;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-lg {
        width: 100%;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

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

    .hero {
        padding: 50px 0;
        min-height: auto;
    }

    .slider-container {
        height: 400px;
    }

    .service-card img {
        height: 150px;
    }

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

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

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

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

    .stats .container {
        grid-template-columns: 1fr;
    }

    .slider-container {
        height: 300px;
    }

    .slide-content {
        padding: 20px;
        gap: 15px;
    }

    .slide-text h1 {
        font-size: 1.3rem;
    }

    .slider-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .hero-overlay h2 {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }

    .hero-overlay {
        display: block;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .growth-section h2 {
        font-size: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ==================== PAGE-SPECIFIC STYLES ==================== */

/* Hero Page Section */
.hero-page {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    overflow: hidden;
    border-radius: 10px;
    animation: slideInLeft 0.8s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-text {
    animation: slideInRight 0.8s ease;
}

.hero-text h1 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-section.alt-bg {
    background-color: var(--light-gray);
}

.content-section h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

blockquote {
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    padding-left: 30px;
    background-color: var(--light-gray);
    font-style: italic;
    color: #555;
    margin: 2rem 0;
    border-radius: 5px;
}

/* Design Stats Section */
.design-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
}

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

.design-stat {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
}

.design-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.design-stat p {
    color: #666;
    margin-bottom: 0;
}

/* Design Elements Section */
.design-elements {
    padding: 60px 0;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.element-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideUp 0.6s ease;
}

.element-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.element-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.element-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Design Process Section */
.design-process {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.process-steps-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.detailed-step {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideUp 0.6s ease;
}

.detailed-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.detailed-step h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.detailed-step p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Design Services Section */
.design-services {
    padding: 60px 0;
}

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

.service-type {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideUp 0.6s ease;
}
.service-type img {
    width: 300px;
    height: 150px;
    object-fit: cover;
}

.service-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.service-type h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-type p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Benefits Section */
.responsive-benefits {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.benefits-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.benefits-checklist li {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    animation: slideUp 0.6s ease;
}

.benefits-checklist strong {
    color: var(--secondary-color);
}

/* Why Choose Design */
.why-choose-design {
    padding: 60px 0;
}

.reasons-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.reasons-list li {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.reasons-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reasons-list strong {
    color: var(--secondary-color);
}

/* Final CTA Sections */
.final-cta,
.final-domain-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #047ba3 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.final-cta h2,
.final-domain-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p,
.final-domain-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-text {
    margin-top: 2rem;
    font-size: 1rem;
}

.cta-info {
    margin-top: 2rem;
}

.cta-info p {
    margin-bottom: 0.5rem;
}

/* Domain Specific Styles */
.domain-stats {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.domain-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
    animation: slideUp 0.6s ease;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: #666;
    margin-bottom: 0;
}

/* Domain Features */
.domain-features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.feature-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideUp 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}
.feature-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}


.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* Bundle Section */
.bundle-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.bundle-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bundle-section>.container>p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #666;
}

.bundle-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.bundle-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
    text-align: center;
    transition: var(--transition);
    animation: slideUp 0.6s ease;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(5, 155, 216, 0.2);
}

.bundle-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.bundle-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.bundle-card li {
    padding: 8px 0;
    color: #666;
}

.bundle-card .pricing {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Best Practices Section */
.best-practices {
    padding: 60px 0;
}

.practices-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.practice-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideUp 0.6s ease;
}

.practice-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.practice-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* Domain Why Choose */
.domain-why-choose {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.domain-reasons {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.domain-reasons li {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
    border-left: 4px solid var(--primary-color);
}

.domain-reasons strong {
    color: var(--secondary-color);
}

/* Feature Item Grid */
.feature-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.feature-item {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    animation: slideUp 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

/* ==================== ABOUT PAGE STYLES ==================== */

.hero-about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.expertise-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9f9f9 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
    animation: slideUp 0.6s ease;
}
.expertise-card img {
    width: 300px;
    height: 150px;
    object-fit: cover;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.expertise-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.benefits-list li {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    animation: slideUp 0.6s ease;
}

.benefits-list strong {
    color: var(--secondary-color);
}

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

.faq-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: var(--primary-color);
}

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

.center-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== CONTACT PAGE STYLES ==================== */

.hero-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #047ba3 100%);
    color: var(--white);
    text-align: center;
}

.hero-contact h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-contact p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

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

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 155, 216, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #047ba3;
}

.contact-info-wrapper {
    padding: 20px 0;
}

.contact-info-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-info-box {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    animation: slideUp 0.6s ease;
}

.contact-info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.why-contact {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.why-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    animation: slideUp 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 155, 216, 0.2);
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==================== RESPONSIVE PAGE STYLES ==================== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .elements-grid,
    .features-grid,
    .services-types-grid,
    .practices-list,
    .bundle-items,
    .stat-grid,
    .stats-grid,
    .process-steps-detailed {
        grid-template-columns: 1fr;
    }

    .benefits-checklist,
    .reasons-list,
    .domain-reasons {
        grid-template-columns: 1fr;
    }

    .final-cta h2,
    .final-domain-cta h2 {
        font-size: 1.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-contact h1 {
        font-size: 1.8rem;
    }

    .hero-contact p {
        font-size: 1rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px 0;
    }

    .contact-form-wrapper {
        background-color: transparent;
        box-shadow: none;
    }
}

/* ==================== FAQ ACCORDION STYLES ==================== */
.faq-item {
    background-color: var(--white);
    padding: 0;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    cursor: pointer;
    padding: 20px;
    margin: 0;
    background-color: var(--light-gray);
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-item h3:hover {
    background-color: #e8e8e8;
    color: var(--primary-color);
}

.faq-item h3::after {
    content: '▼';
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-item p {
    padding: 20px;
    margin: 0;
    color: #666;
    line-height: 1.8;
    display: none;
    background-color: var(--white);
}

.faq-item.active p {
    display: block;
}

.faq-item.active h3::after {
    transform: rotate(180deg);
}

/* ==================== FIXED FOOTER STYLES ==================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px 0 0 0;
    position: relative;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Body margin to account for content */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 90;
    transition: var(--transition);
}

.scroll-top-btn:hover {
    background-color: #047ba3;
    transform: translateY(-5px);
}

.scroll-top-btn.show {
    display: flex;
}